diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2005-01-10 20:55:16 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-01-10 20:55:16 +0800 |
commit | 2f7ee7ef2ed7e862649f279465875595cc9497ad (patch) | |
tree | f3dd6c1a77fe2db7016662fda2a41e1877804c03 /widgets/misc/e-send-options.h | |
parent | 618a3d8c635eea38929ca8f123ac6e76ade9973e (diff) | |
download | gsoc2013-evolution-2f7ee7ef2ed7e862649f279465875595cc9497ad.tar.gz gsoc2013-evolution-2f7ee7ef2ed7e862649f279465875595cc9497ad.tar.zst gsoc2013-evolution-2f7ee7ef2ed7e862649f279465875595cc9497ad.zip |
Added code to support global options. Filled the finalize and dispose
2005-01-10 Chenthill Palanisamy <pchenthill@novell.com>
* e-send-options.c: (e_send_options_get_widgets_data),
(e_send_options_fill_widgets_with_data), (page_changed_cb),
(init_widgets), (get_widgets), (setup_widgets),
(e_sendoptions_set_global), (e_sendoptions_dialog_run),
(e_sendoptions_dialog_finalize), (e_sendoptions_dialog_dispose),
(e_sendoptions_dialog_init), (e_sendoptions_dialog_class_init),
(e_sendoptions_dialog_get_type): Added code to support global options.
Filled the finalize and dispose functions.
* e-send-options.glade: Changed a label id.
* e-send-options.h: Added the set_global function.
svn path=/trunk/; revision=28315
Diffstat (limited to 'widgets/misc/e-send-options.h')
-rw-r--r-- | widgets/misc/e-send-options.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/widgets/misc/e-send-options.h b/widgets/misc/e-send-options.h index 180325c034..ba48734e5a 100644 --- a/widgets/misc/e-send-options.h +++ b/widgets/misc/e-send-options.h @@ -37,6 +37,7 @@ typedef struct _ESendOptionsDialogClass ESendOptionsDialogClass; typedef struct _ESendOptionsDialogPrivate ESendOptionsDialogPrivate; typedef enum { + E_ITEM_NONE, E_ITEM_MAIL, E_ITEM_CALENDAR, E_ITEM_TASK @@ -62,6 +63,7 @@ typedef enum { typedef struct { ESendOptionsPriority priority; + gint classify; gboolean reply_enabled; gboolean reply_convenient; gint reply_within; @@ -86,6 +88,9 @@ typedef struct { ESendOptionsGeneral *gopts; ESendOptionsStatusTracking *sopts; + ESendOptionsStatusTracking *mopts; + ESendOptionsStatusTracking *copts; + ESendOptionsStatusTracking *topts; } ESendOptionsData; @@ -106,5 +111,5 @@ ESendOptionsDialog *e_sendoptions_dialog_new (void); void e_sendoptions_set_need_general_options (ESendOptionsDialog *sod, gboolean needed); gboolean e_sendoptions_get_need_general_options (ESendOptionsDialog *sod); gboolean e_sendoptions_dialog_run (ESendOptionsDialog *sod, GtkWidget *parent, Item_type type); - +gboolean e_sendoptions_set_global (ESendOptionsDialog *sod, gboolean set); #endif |