aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor-page.h
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2005-06-07 05:05:18 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-06-07 05:05:18 +0800
commit9f5a04beb4ce18da2609e93adbb625a51c640e56 (patch)
tree8bf8e8184fcbfa11a5ae8f5eb7ca70c851b20ecf /calendar/gui/dialogs/comp-editor-page.h
parentf05ae97ea17e835b4f9b198e4ebeb892f33aabd9 (diff)
downloadgsoc2013-evolution-9f5a04beb4ce18da2609e93adbb625a51c640e56.tar
gsoc2013-evolution-9f5a04beb4ce18da2609e93adbb625a51c640e56.tar.gz
gsoc2013-evolution-9f5a04beb4ce18da2609e93adbb625a51c640e56.tar.bz2
gsoc2013-evolution-9f5a04beb4ce18da2609e93adbb625a51c640e56.tar.lz
gsoc2013-evolution-9f5a04beb4ce18da2609e93adbb625a51c640e56.tar.xz
gsoc2013-evolution-9f5a04beb4ce18da2609e93adbb625a51c640e56.tar.zst
gsoc2013-evolution-9f5a04beb4ce18da2609e93adbb625a51c640e56.zip
Added support for groupwise meeting delegation.
svn path=/trunk/; revision=29463
Diffstat (limited to 'calendar/gui/dialogs/comp-editor-page.h')
-rw-r--r--calendar/gui/dialogs/comp-editor-page.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/calendar/gui/dialogs/comp-editor-page.h b/calendar/gui/dialogs/comp-editor-page.h
index 2b3c6c60ab..72a8f057a2 100644
--- a/calendar/gui/dialogs/comp-editor-page.h
+++ b/calendar/gui/dialogs/comp-editor-page.h
@@ -43,6 +43,13 @@ typedef struct {
struct icaltimetype *complete;
} CompEditorPageDates;
+typedef enum {
+ COMP_EDITOR_PAGE_NEW_ITEM = 1<<0,
+ COMP_EDITOR_PAGE_MEETING = 1<<1,
+ COMP_EDITOR_PAGE_DELEGATE = 1<<2,
+ COMP_EDITOR_PAGE_USER_ORG = 1<<3,
+} CompEditorPageFlags;
+
typedef struct {
GtkObject object;
@@ -55,6 +62,9 @@ typedef struct {
normally, but we create our pages individually so have to do it
ourselves. */
GtkAccelGroup *accel_group;
+
+ CompEditorPageFlags flags;
+
} CompEditorPage;
typedef struct {
@@ -82,7 +92,6 @@ typedef struct {
void (* set_dates) (CompEditorPage *page, CompEditorPageDates *dates);
} CompEditorPageClass;
-
GtkType comp_editor_page_get_type (void);
GtkWidget *comp_editor_page_get_widget (CompEditorPage *page);
void comp_editor_page_focus_main_widget (CompEditorPage *page);