BEAST/BSE - Better Audio System and Sound Engine  0.8.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
bstpartview.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_PART_VIEW_H__
00003 #define __BST_PART_VIEW_H__
00004 
00005 #include        "bstitemview.hh"
00006 
00007 G_BEGIN_DECLS
00008 
00009 /* --- type macros --- */
00010 #define BST_TYPE_PART_VIEW              (bst_part_view_get_type ())
00011 #define BST_PART_VIEW(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), BST_TYPE_PART_VIEW, BstPartView))
00012 #define BST_PART_VIEW_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), BST_TYPE_PART_VIEW, BstPartViewClass))
00013 #define BST_IS_PART_VIEW(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), BST_TYPE_PART_VIEW))
00014 #define BST_IS_PART_VIEW_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), BST_TYPE_PART_VIEW))
00015 #define BST_PART_VIEW_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), BST_TYPE_PART_VIEW, BstPartViewClass))
00016 
00017 
00018 /* --- structures & typedefs --- */
00019 typedef struct  _BstPartView            BstPartView;
00020 typedef struct  _BstPartViewClass       BstPartViewClass;
00021 struct _BstPartView
00022 {
00023   BstItemView    parent_object;
00024 };
00025 struct _BstPartViewClass
00026 {
00027   BstItemViewClass parent_class;
00028 };
00029 
00030 
00031 /* --- prototypes --- */
00032 GType           bst_part_view_get_type  (void);
00033 GtkWidget*      bst_part_view_new       (SfiProxy song);
00034 
00035 G_END_DECLS
00036 
00037 #endif /* __BST_PART_VIEW_H__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines