source: trunk/third/bonobo/bonobo/bonobo-ui-config-widget.h @ 15579

Revision 15579, 1.4 KB checked in by ghudson, 24 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r15578, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2/**
3 * bonobo-ui-config-widget.h: Bonobo Component UIConfig
4 *
5 * Author:
6 *   Michael Meeks (michael@helixcode.com)
7 *
8 * Copyright  2000 Helix Code, Inc.
9 */
10#ifndef BONOBO_UI_CONFIG_WIDGET_H
11#define BONOBO_UI_CONFIG_WIDGET_H
12
13#include <gtk/gtk.h>
14#include <bonobo/bonobo-ui-engine.h>
15
16BEGIN_GNOME_DECLS
17
18#define BONOBO_UI_CONFIG_WIDGET(obj)            GTK_CHECK_CAST(obj,  bonobo_ui_config_widget_get_type (), BonoboUIConfigWidget)
19#define BONOBO_UI_CONFIG_WIDGET_CLASS(klass)    GTK_CHECK_CLASS_CAST (klass, bonobo_ui_config_widget_get_type (), BonoboUIConfigWidgetClass)
20#define BONOBO_IS_UI_CONFIG_WIDGET(obj)         GTK_CHECK_TYPE (obj, bonobo_ui_config_widget_get_type ())
21
22typedef struct _BonoboUIConfigWidgetPrivate BonoboUIConfigWidgetPrivate;
23
24typedef struct {
25        GtkVBox parent;
26
27        BonoboUIEngine *engine;
28
29        BonoboUIConfigWidgetPrivate *priv;
30} BonoboUIConfigWidget;
31
32typedef struct {
33        GtkVBoxClass parent_class;
34} BonoboUIConfigWidgetClass;
35
36GtkType    bonobo_ui_config_widget_get_type  (void);
37
38GtkWidget *bonobo_ui_config_widget_construct (BonoboUIConfigWidget *config,
39                                              BonoboUIEngine       *engine,
40                                              GtkAccelGroup        *accel_group);
41
42GtkWidget *bonobo_ui_config_widget_new       (BonoboUIEngine       *engine,
43                                              GtkAccelGroup        *accel_group);
44
45END_GNOME_DECLS
46
47#endif /* BONOBO_UI_CONFIG_WIDGET_H */
Note: See TracBrowser for help on using the repository browser.