diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-15 02:19:13 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-15 02:19:13 +0800 |
commit | 79efc40b19f513570d800d2b3fa6293ea794a28d (patch) | |
tree | 23a9b14de06c78c6bf815591c91c697561edc2f1 /calendar/gui/dialogs/comp-editor.h | |
parent | b5e2c8cb04ca6b58723a9afe6c8c1e395ced2bbb (diff) | |
download | gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.gz gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.zst gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.zip |
UI changes for the event editor.
svn path=/trunk/; revision=30613
Diffstat (limited to 'calendar/gui/dialogs/comp-editor.h')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/calendar/gui/dialogs/comp-editor.h b/calendar/gui/dialogs/comp-editor.h index 31f977e3ff..3affcb22b6 100644 --- a/calendar/gui/dialogs/comp-editor.h +++ b/calendar/gui/dialogs/comp-editor.h @@ -22,6 +22,9 @@ #define COMP_EDITOR_H #include <gtk/gtk.h> +#include <bonobo/bonobo-window.h> +#include <bonobo/bonobo-ui-util.h> +#include <bonobo/bonobo-widget.h> #include <libecal/e-cal.h> #include "../itip-utils.h" #include "comp-editor-page.h" @@ -39,14 +42,15 @@ G_BEGIN_DECLS typedef struct _CompEditorPrivate CompEditorPrivate; typedef struct { - GtkDialog object; + BonoboWindow object; /* Private data */ CompEditorPrivate *priv; + BonoboUIComponent *uic; } CompEditor; typedef struct { - GtkDialogClass parent_class; + BonoboWindowClass parent_class; /* Virtual functions */ void (* set_e_cal) (CompEditor *page, ECal *client); @@ -80,7 +84,8 @@ void comp_editor_set_group_item (CompEditor *editor, gboolean comp_editor_get_group_item (CompEditor *editor); void comp_editor_append_page (CompEditor *editor, CompEditorPage *page, - const char *label); + const char *label, + gboolean add); void comp_editor_remove_page (CompEditor *editor, CompEditorPage *page); void comp_editor_show_page (CompEditor *editor, |