BEAST - Free Software Audio Synthesizer and Tracker  0.9.2
bstpartview.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_PART_VIEW_H__
3 #define __BST_PART_VIEW_H__
4 
5 #include "bstitemview.hh"
6 
7 G_BEGIN_DECLS
8 
9 /* --- type macros --- */
10 #define BST_TYPE_PART_VIEW (bst_part_view_get_type ())
11 #define BST_PART_VIEW(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), BST_TYPE_PART_VIEW, BstPartView))
12 #define BST_PART_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), BST_TYPE_PART_VIEW, BstPartViewClass))
13 #define BST_IS_PART_VIEW(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), BST_TYPE_PART_VIEW))
14 #define BST_IS_PART_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), BST_TYPE_PART_VIEW))
15 #define BST_PART_VIEW_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BST_TYPE_PART_VIEW, BstPartViewClass))
16 
17 
18 /* --- structures & typedefs --- */
19 typedef struct _BstPartView BstPartView;
20 typedef struct _BstPartViewClass BstPartViewClass;
22 {
23  BstItemView parent_object;
24 };
26 {
27  BstItemViewClass parent_class;
28 };
29 
30 
31 /* --- prototypes --- */
32 GType bst_part_view_get_type (void);
33 GtkWidget* bst_part_view_new (SfiProxy song);
34 
35 G_END_DECLS
36 
37 #endif /* __BST_PART_VIEW_H__ */
Definition: bstpartview.hh:21
Definition: bstpartview.hh:25