aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-send-options.h
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchenthill@novell.com>2007-07-09 19:12:07 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2007-07-09 19:12:07 +0800
commitd951a60f705e5bf1fc5e2c683155579c2a662486 (patch)
tree695c333372a3b8b715bea183ccef999c055c5158 /plugins/exchange-operations/exchange-send-options.h
parent89b64f3d95b7d59b17a563e88ad18d08369ae064 (diff)
downloadgsoc2013-evolution-d951a60f705e5bf1fc5e2c683155579c2a662486.tar
gsoc2013-evolution-d951a60f705e5bf1fc5e2c683155579c2a662486.tar.gz
gsoc2013-evolution-d951a60f705e5bf1fc5e2c683155579c2a662486.tar.bz2
gsoc2013-evolution-d951a60f705e5bf1fc5e2c683155579c2a662486.tar.lz
gsoc2013-evolution-d951a60f705e5bf1fc5e2c683155579c2a662486.tar.xz
gsoc2013-evolution-d951a60f705e5bf1fc5e2c683155579c2a662486.tar.zst
gsoc2013-evolution-d951a60f705e5bf1fc5e2c683155579c2a662486.zip
reviewed by: Veerapuram Varadhan <vvaradhan@novell.com>
2007-07-09 Chenthill Palanisamy <pchenthill@novell.com> reviewed by: Veerapuram Varadhan <vvaradhan@novell.com> * exchange-delegates-user.c: (map_to_full_role_name), (em_utils_delegates_done), (exchange_delegates_user_edit): * exchange-delegates-user.h: * exchange-delegates.c: (add_button_clicked_cb), (edit_button_clicked_cb), (email_look_up), (table_click_cb): * exchange-delegates.glade: * exchange-delegates.h: * exchange-mail-send-options.c: (append_to_header): * exchange-send-options.c: (exchange_send_options_get_widgets_data), (get_widgets), (exchange_send_options_fill_widgets_with_data), (exchange_send_options_cb), (delegate_option_toggled), (addressbook_dialog_response), (addressbook_entry_changed), (address_button_clicked), (exchange_sendoptions_dialog_run), (exchange_sendoptions_dialog_init): * exchange-send-options.glade: * exchange-send-options.h: * org-gnome-exchange-operations.error.xml: Added the exchange delegation support. Committing on behalf of Bharath Acharya <abharath@novell.com> svn path=/trunk/; revision=33784
Diffstat (limited to 'plugins/exchange-operations/exchange-send-options.h')
-rw-r--r--plugins/exchange-operations/exchange-send-options.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/exchange-operations/exchange-send-options.h b/plugins/exchange-operations/exchange-send-options.h
index 8d4e2de55f..f09e189670 100644
--- a/plugins/exchange-operations/exchange-send-options.h
+++ b/plugins/exchange-operations/exchange-send-options.h
@@ -48,11 +48,18 @@ typedef enum {
E_SENSITIVITY_CONFIDENTIAL
} ExchangeSendOptionsSensitivity;
+/* We require the delegate_email and delegate_name to store the address of the delegator selected into
+ the destination store.
+*/
typedef struct {
ExchangeSendOptionsImp importance;
ExchangeSendOptionsSensitivity sensitivity;
+ gboolean send_as_del_enabled;
gboolean delivery_enabled;
gboolean read_enabled;
+ const char *delegate_name;
+ const char *delegate_email;
+ const char *delegate_address;
} ExchangeSendOptions ;
struct _ExchangeSendOptionsDialog {