aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-01-25 07:51:54 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-01-25 07:51:54 +0800
commit5bf4f88ae222d598431c5e5b7d54e2d67d742ab5 (patch)
treeb7b0abfa208db4c397720385fad53db0e08dd05f /composer
parent57b9260528a389936dce1d9b5b3afc259c71c2e1 (diff)
downloadgsoc2013-evolution-5bf4f88ae222d598431c5e5b7d54e2d67d742ab5.tar
gsoc2013-evolution-5bf4f88ae222d598431c5e5b7d54e2d67d742ab5.tar.gz
gsoc2013-evolution-5bf4f88ae222d598431c5e5b7d54e2d67d742ab5.tar.bz2
gsoc2013-evolution-5bf4f88ae222d598431c5e5b7d54e2d67d742ab5.tar.lz
gsoc2013-evolution-5bf4f88ae222d598431c5e5b7d54e2d67d742ab5.tar.xz
gsoc2013-evolution-5bf4f88ae222d598431c5e5b7d54e2d67d742ab5.tar.zst
gsoc2013-evolution-5bf4f88ae222d598431c5e5b7d54e2d67d742ab5.zip
New callback. (menu_security_pgp_sign_cb): Another new callback.
2001-01-24 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (menu_security_pgp_encrypt_cb): New callback. (menu_security_pgp_sign_cb): Another new callback. (setup_ui): Added initialization for the PGP sign and encrypt bonobo menu items. (e_msg_composer_set_pgp_encrypt): Change the Bonobo UI name to SecurityPGPEncrypt. (e_msg_composer_set_pgp_sign): Change the Bonobo UI name to SecurityPGPSign. svn path=/trunk/; revision=7793
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog11
-rw-r--r--composer/e-msg-composer.c80
2 files changed, 83 insertions, 8 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index f03609fc1c..10365cc362 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,14 @@
+2001-01-24 Jeffrey Stedfast <fejj@ximian.com>
+
+ * e-msg-composer.c (menu_security_pgp_encrypt_cb): New callback.
+ (menu_security_pgp_sign_cb): Another new callback.
+ (setup_ui): Added initialization for the PGP sign and encrypt
+ bonobo menu items.
+ (e_msg_composer_set_pgp_encrypt): Change the Bonobo UI name to
+ SecurityPGPEncrypt.
+ (e_msg_composer_set_pgp_sign): Change the Bonobo UI name to
+ SecurityPGPSign.
+
2001-01-21 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer.c (build_message): Fixed some memory leaks
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index c2a0c1e00d..85ba03651b 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -1143,6 +1143,56 @@ menu_format_html_cb (BonoboUIComponent *component,
e_msg_composer_set_send_html (composer, new_state);
}
+static void
+menu_security_pgp_sign_cb (BonoboUIComponent *component,
+ const char *path,
+ Bonobo_UIComponent_EventType type,
+ const char *state,
+ gpointer user_data)
+
+{
+ EMsgComposer *composer;
+ gboolean new_state;
+
+ if (type != Bonobo_UIComponent_STATE_CHANGED)
+ return;
+
+ composer = E_MSG_COMPOSER (user_data);
+
+ new_state = atoi (state);
+
+ if ((new_state && composer->pgp_sign) ||
+ (!new_state && ! composer->pgp_sign))
+ return;
+
+ e_msg_composer_set_pgp_sign (composer, new_state);
+}
+
+static void
+menu_security_pgp_encrypt_cb (BonoboUIComponent *component,
+ const char *path,
+ Bonobo_UIComponent_EventType type,
+ const char *state,
+ gpointer user_data)
+
+{
+ EMsgComposer *composer;
+ gboolean new_state;
+
+ if (type != Bonobo_UIComponent_STATE_CHANGED)
+ return;
+
+ composer = E_MSG_COMPOSER (user_data);
+
+ new_state = atoi (state);
+
+ if ((new_state && composer->pgp_encrypt) ||
+ (!new_state && ! composer->pgp_encrypt))
+ return;
+
+ e_msg_composer_set_pgp_encrypt (composer, new_state);
+}
+
static BonoboUIVerb verbs [] = {
@@ -1180,16 +1230,30 @@ setup_ui (EMsgComposer *composer)
"evolution-message-composer.xml",
"evolution-message-composer");
+ /* Format -> HTML */
bonobo_ui_component_set_prop (composer->uic, "/commands/FormatHtml",
"state", composer->send_html ? "1" : "0", NULL);
- bonobo_ui_component_add_listener (
- composer->uic, "FormatHtml",
- menu_format_html_cb, composer);
+ bonobo_ui_component_add_listener (composer->uic, "FormatHtml",
+ menu_format_html_cb, composer);
+
+ /* Security -> PGP Sign */
+ bonobo_ui_component_set_prop (composer->uic, "/commands/SecurityPGPSign",
+ "state", composer->pgp_sign ? "1" : "0", NULL);
+
+ bonobo_ui_component_add_listener (composer->uic, "SecurityPGPSign",
+ menu_security_pgp_sign_cb, composer);
+
+ /* Security -> PGP Encrypt */
+ bonobo_ui_component_set_prop (composer->uic, "/commands/SecurityPGPEncrypt",
+ "state", composer->pgp_encrypt ? "1" : "0", NULL);
+
+ bonobo_ui_component_add_listener (composer->uic, "SecurityPGPEncrypt",
+ menu_security_pgp_encrypt_cb, composer);
- bonobo_ui_component_add_listener (
- composer->uic, "ViewAttach",
- menu_view_attachments_activate_cb, composer);
+ /* View -> Attachments */
+ bonobo_ui_component_add_listener (composer->uic, "ViewAttach",
+ menu_view_attachments_activate_cb, composer);
}
@@ -2184,7 +2248,7 @@ e_msg_composer_set_pgp_sign (EMsgComposer *composer, gboolean pgp_sign)
composer->pgp_sign = pgp_sign;
- bonobo_ui_component_set_prop (composer->uic, "/commands/SecuritySign",
+ bonobo_ui_component_set_prop (composer->uic, "/commands/SecurityPGPSign",
"state", composer->pgp_sign ? "1" : "0", NULL);
}
@@ -2227,7 +2291,7 @@ e_msg_composer_set_pgp_encrypt (EMsgComposer *composer, gboolean pgp_encrypt)
composer->pgp_encrypt = pgp_encrypt;
- bonobo_ui_component_set_prop (composer->uic, "/commands/SecurityEncrypt",
+ bonobo_ui_component_set_prop (composer->uic, "/commands/SecurityPGPEncrypt",
"state", composer->pgp_encrypt ? "1" : "0", NULL);
}