BEAST/BSE - Better Audio System and Sound Engine  0.8.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
bstbusview.hh
Go to the documentation of this file.
00001  // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
00002 #ifndef __BST_BUS_VIEW_H__
00003 #define __BST_BUS_VIEW_H__
00004 
00005 #include        "bstitemview.hh"
00006 
00007 G_BEGIN_DECLS
00008 
00009 /* --- type macros --- */
00010 #define BST_TYPE_BUS_VIEW              (bst_bus_view_get_type ())
00011 #define BST_BUS_VIEW(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), BST_TYPE_BUS_VIEW, BstBusView))
00012 #define BST_BUS_VIEW_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), BST_TYPE_BUS_VIEW, BstBusViewClass))
00013 #define BST_IS_BUS_VIEW(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), BST_TYPE_BUS_VIEW))
00014 #define BST_IS_BUS_VIEW_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), BST_TYPE_BUS_VIEW))
00015 #define BST_BUS_VIEW_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BST_TYPE_BUS_VIEW, BstBusViewClass))
00016 
00017 
00018 /* --- structures & typedefs --- */
00019 typedef struct  _BstBusView             BstBusView;
00020 typedef struct  _BstBusViewClass        BstBusViewClass;
00021 struct _BstBusView
00022 {
00023   BstItemView    parent_object;
00024 };
00025 struct _BstBusViewClass
00026 {
00027   BstItemViewClass parent_class;
00028 };
00029 
00030 
00031 /* --- prototypes --- */
00032 GType           bst_bus_view_get_type  (void);
00033 GtkWidget*      bst_bus_view_new       (SfiProxy song);
00034 
00035 G_END_DECLS
00036 
00037 #endif /* __BST_BUS_VIEW_H__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines