BEAST/BSE - Better Audio System and Sound Engine  0.8.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
bstsupershell.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_SUPER_SHELL_H__
00003 #define __BST_SUPER_SHELL_H__
00004 
00005 #include        "bstutils.hh"
00006 
00007 G_BEGIN_DECLS
00008 
00009 /* --- Gtk+ type macros --- */
00010 #define BST_TYPE_SUPER_SHELL            (bst_super_shell_get_type ())
00011 #define BST_SUPER_SHELL(object)         (GTK_CHECK_CAST ((object), BST_TYPE_SUPER_SHELL, BstSuperShell))
00012 #define BST_SUPER_SHELL_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), BST_TYPE_SUPER_SHELL, BstSuperShellClass))
00013 #define BST_IS_SUPER_SHELL(object)      (GTK_CHECK_TYPE ((object), BST_TYPE_SUPER_SHELL))
00014 #define BST_IS_SUPER_SHELL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), BST_TYPE_SUPER_SHELL))
00015 #define BST_SUPER_SHELL_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), BST_TYPE_SUPER_SHELL, BstSuperShellClass))
00016 
00017 
00018 /* --- structures & typedefs --- */
00019 typedef struct  _BstSuperShell          BstSuperShell;
00020 typedef struct  _BstSuperShellClass     BstSuperShellClass;
00021 struct _BstSuperShell
00022 {
00023   GtkVBox        parent_object;
00024   SfiProxy       super;
00025   guint          name_set_id;
00026 };
00027 struct _BstSuperShellClass
00028 {
00029   GtkVBoxClass  parent_class;
00030 };
00031 
00032 
00033 /* --- prototypes --- */
00034 GType           bst_super_shell_get_type        (void);
00035 void            bst_super_shell_set_super       (BstSuperShell  *super_shell,
00036                                                  SfiProxy        super);
00037 GtkWidget*      bst_super_shell_create_label    (BstSuperShell  *super_shell);
00038 
00039 G_END_DECLS
00040 
00041 #endif /* __BST_SUPER_SHELL_H__ */
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines