BEAST - Free Software Audio Synthesizer and Tracker  0.10.0
bstbusview.hh
Go to the documentation of this file.
1  // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
2 #ifndef __BST_BUS_VIEW_H__
3 #define __BST_BUS_VIEW_H__
4 
5 #include "bstitemview.hh"
6 
7 G_BEGIN_DECLS
8 
9 /* --- type macros --- */
10 #define BST_TYPE_BUS_VIEW (bst_bus_view_get_type ())
11 #define BST_BUS_VIEW(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), BST_TYPE_BUS_VIEW, BstBusView))
12 #define BST_BUS_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), BST_TYPE_BUS_VIEW, BstBusViewClass))
13 #define BST_IS_BUS_VIEW(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), BST_TYPE_BUS_VIEW))
14 #define BST_IS_BUS_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), BST_TYPE_BUS_VIEW))
15 #define BST_BUS_VIEW_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BST_TYPE_BUS_VIEW, BstBusViewClass))
16 
17 
18 /* --- structures & typedefs --- */
19 typedef struct _BstBusView BstBusView;
20 typedef struct _BstBusViewClass BstBusViewClass;
22 {
23  BstItemView parent_object;
24 };
26 {
27  BstItemViewClass parent_class;
28 };
29 
30 
31 /* --- prototypes --- */
32 GType bst_bus_view_get_type (void);
33 GtkWidget* bst_bus_view_new (SfiProxy song);
34 
35 G_END_DECLS
36 
37 #endif /* __BST_BUS_VIEW_H__ */
Definition: bstbusview.hh:21
Definition: bstbusview.hh:25