diff options
author | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2007-01-23 02:58:03 +0800 |
---|---|---|
committer | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2007-01-23 02:58:03 +0800 |
commit | d6323f8303add9ec85e1f51d0ad8c5e804f2f50d (patch) | |
tree | ab67352723d079186d28a618ff52a4d2fe108016 /plugins | |
parent | 7f17eb8d4d9baa2c942e9dd64f319c6c6107b5a8 (diff) | |
download | gsoc2013-evolution-d6323f8303add9ec85e1f51d0ad8c5e804f2f50d.tar.gz gsoc2013-evolution-d6323f8303add9ec85e1f51d0ad8c5e804f2f50d.tar.zst gsoc2013-evolution-d6323f8303add9ec85e1f51d0ad8c5e804f2f50d.zip |
Glade file for exchange send options . Added a hook for implementing send
* exchange-send-options.glade :Glade file for
exchange send options .
* org-gnome-exchange-operations.eplug.xml :Added a
hook for implementing send options .
* exchange-mail-send-options.c :Contains code for invoking
the dialog and processing the data received and destroying
the dialog .
* exchange-send-options.[c,h] :Contains the GType for exchange
send options dialog .
svn path=/trunk/; revision=33137
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 12 | ||||
-rw-r--r-- | plugins/exchange-operations/Makefile.am | 8 | ||||
-rw-r--r-- | plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml | 10 |
3 files changed, 27 insertions, 3 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 879a25462d..f4d81e1f9d 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,15 @@ +2006-01-18 Raghavendran R <raghavguru7@gmail.com> + + * exchange-send-options.glade :Glade file for + exchange send options . + * org-gnome-exchange-operations.eplug.xml :Added a + hook for implementing send options . + * exchange-mail-send-options.c :Contains code for invoking + the dialog and processing the data received and destroying + the dialog . + * exchange-send-options.[c,h] :Contains the GType for exchange + send options dialog . + 2006-12-18 Veerapuram Varadhan <vvaradhan@novell.com> Fixes bnc #208395 diff --git a/plugins/exchange-operations/Makefile.am b/plugins/exchange-operations/Makefile.am index 9fc60d4f50..9208ec6655 100644 --- a/plugins/exchange-operations/Makefile.am +++ b/plugins/exchange-operations/Makefile.am @@ -41,7 +41,10 @@ liborg_gnome_exchange_operations_la_SOURCES = \ exchange-folder-permission.c \ exchange-folder-subscription.c \ exchange-folder-subscription.h \ - exchange-folder.c + exchange-folder.c \ + exchange-mail-send-options.c \ + exchange-send-options.c \ + exchange-send-options.h liborg_gnome_exchange_operations_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ @@ -60,7 +63,8 @@ glade_DATA = \ exchange-permissions-dialog.glade \ e-foreign-folder-dialog.glade \ exchange-passwd-expiry.glade \ - exchange-oof.glade + exchange-oof.glade \ + exchange-send-options.glade error_DATA = org-gnome-exchange-operations.error errordir = $(privdatadir)/errors diff --git a/plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml b/plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml index 2c43856ca2..eddf713e12 100644 --- a/plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml +++ b/plugins/exchange-operations/org-gnome-exchange-operations.eplug.xml @@ -9,6 +9,7 @@ <author name="Sushma Rai" email="rsushma@novell.com"/> <author name="Praveen Kumar" email="kpraveen@novell.com"/> <author name="Shakti Sen" email="shprasad@novell.com"/> + <author name="Raghavendran R" email="raghavguru7@gmail.com"/> <_description>A plugin that handles a collection of Exchange account specific operations and features.</_description> <hook class="org.gnome.evolution.mail.config:1.0"> @@ -213,6 +214,13 @@ factory="org_gnome_exchange_show_folder_size_factory"/> </group> </hook> - + <hook class="org.gnome.evolution.mail.events:1.0"> + <event + id="composer.selectsendoption" + handle="org_gnome_exchange_send_options" + target="composer" + enable="sendoption" + /> + </hook> </e-plugin> </e-plugin-list> |