BEAST - Free Software Audio Synthesizer and Tracker  0.9.2
bstservermonitor.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_SERVER_MONITOR_H__
3 #define __BST_SERVER_MONITOR_H__
4 
5 #include "bstparamview.hh"
6 
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif /* __cplusplus */
11 
12 
13 /* --- Gtk+ type macros --- */
14 #define BST_TYPE_SERVER_MONITOR (bst_server_monitor_get_type ())
15 #define BST_SERVER_MONITOR(object) (GTK_CHECK_CAST ((object), BST_TYPE_SERVER_MONITOR, BstServerMonitor))
16 #define BST_SERVER_MONITOR_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), BST_TYPE_SERVER_MONITOR, BstServerMonitorClass))
17 #define BST_IS_SERVER_MONITOR(object) (GTK_CHECK_TYPE ((object), BST_TYPE_SERVER_MONITOR))
18 #define BST_IS_SERVER_MONITOR_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), BST_TYPE_SERVER_MONITOR))
19 #define BST_SERVER_MONITOR_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), BST_TYPE_SERVER_MONITOR, BstServerMonitorClass))
20 
21 
22 /* --- structures & typedefs --- */
23 typedef struct _BstServerMonitor BstServerMonitor;
24 typedef struct _BstServerMonitorClass BstServerMonitorClass;
26 {
27  GtkVBox parent_object;
28 
29  SfiProxy server;
30 
31  GtkWidget *param_view;
32 };
34 {
35  GtkVBoxClass parent_class;
36 };
37 
38 
39 /* --- prototypes --- */
40 GtkType bst_server_monitor_get_type (void);
41 void bst_server_monitor_update (BstServerMonitor *smon);
42 void bst_server_monitor_rebuild (BstServerMonitor *smon);
43 
44 
45 #ifdef __cplusplus
46 }
47 #endif /* __cplusplus */
48 
49 #endif /* __BST_SERVER_MONITOR_H__ */
Definition: bstservermonitor.hh:33
Definition: bstservermonitor.hh:25