| GNOME-DB API reference |
|---|
struct GnomeDbWindowPrivate;GtkWidget * gnome_db_window_construct (GnomeDbWindow *window, constgchar *name, constgchar *app_prefix, constgchar *ui_xml_file,BonoboUIVerb *verbs,gpointer data);GtkWidget * gnome_db_window_new (constgchar *name, constgchar *app_prefix, constgchar *ui_xml_file,BonoboUIVerb *verbs,gpointer data); void gnome_db_window_close (GnomeDbWindow *window); void gnome_db_window_show (GnomeDbWindow *window);GtkWidget * gnome_db_window_get_contents (GnomeDbWindow *window); void gnome_db_window_set_contents (GnomeDbWindow *window,GtkWidget *contents); void gnome_db_window_set_status (GnomeDbWindow *window, constgchar *status);Bonobo_UIContainer gnome_db_window_get_ui_container (GnomeDbWindow *window);
GtkWidget * gnome_db_window_construct (GnomeDbWindow *window, constgchar *name, constgchar *app_prefix, constgchar *ui_xml_file,BonoboUIVerb *verbs,gpointer data);
| window : | |
| name : | |
| app_prefix : | |
| ui_xml_file : | |
| verbs : | |
| data : | |
| Returns : |
GtkWidget * gnome_db_window_new (constgchar *name, constgchar *app_prefix, constgchar *ui_xml_file,BonoboUIVerb *verbs,gpointer data);
Create a new GnomeDbWindow widget, which is a convenience widget which manages a typical application window, with its menus and toolbar. Apart from this, it implements a full-features Bonobo container, thus letting you easily add Bonobo support to your applications.
| name : | name of the window |
| app_prefix : | prefix used for the UI XML file (/usr/share, /usr/local/share...) |
| ui_xml_file : | XML file that describes the UI for this window |
| verbs : | UI verbs handlers |
| data : | data to be passed to callbacks |
| Returns : |
GtkWidget * gnome_db_window_get_contents (GnomeDbWindow *window);
| window : | |
| Returns : |
|
void gnome_db_window_set_contents (GnomeDbWindow *window,GtkWidget *contents);
| window : | |
| contents : |
|
void gnome_db_window_set_status (GnomeDbWindow *window, constgchar *status);
| window : | |
| status : |
|
Bonobo_UIContainer gnome_db_window_get_ui_container (GnomeDbWindow *window);
| window : | |
| Returns : |
|
| <<< GnomeDbMoniker |