aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-account-gui.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-10-31 12:56:46 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-10-31 12:56:46 +0800
commitbb9da6fb0c1f5bdab633b2526094864250845b0c (patch)
tree489fe0d4fc9a8b75265fad2cf14171b51a6fe7ad /mail/mail-account-gui.h
parent19a21a87e4819013f6499c8ee724475a2184a24e (diff)
downloadgsoc2013-evolution-bb9da6fb0c1f5bdab633b2526094864250845b0c.tar
gsoc2013-evolution-bb9da6fb0c1f5bdab633b2526094864250845b0c.tar.gz
gsoc2013-evolution-bb9da6fb0c1f5bdab633b2526094864250845b0c.tar.bz2
gsoc2013-evolution-bb9da6fb0c1f5bdab633b2526094864250845b0c.tar.lz
gsoc2013-evolution-bb9da6fb0c1f5bdab633b2526094864250845b0c.tar.xz
gsoc2013-evolution-bb9da6fb0c1f5bdab633b2526094864250845b0c.tar.zst
gsoc2013-evolution-bb9da6fb0c1f5bdab633b2526094864250845b0c.zip
Rearranged smime config slightly, and added encrypt key preference.
2003-10-31 Not Zed <NotZed@Ximian.com> * mail-config.glade: Rearranged smime config slightly, and added encrypt key preference. * mail-account-gui.c (mail_account_gui_save, mail_account_gui_new): enable smime always if have_nss. Added new options in glade file and handle changed names. (smime_changed, smime_sign_key_select, smime_sign_key_clear) (smime_encrypt_key_select, smime_encrypt_key_clear): Add a bunch of mostly dummy UI behaviour management stuff. svn path=/trunk/; revision=23145
Diffstat (limited to 'mail/mail-account-gui.h')
-rw-r--r--mail/mail-account-gui.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/mail/mail-account-gui.h b/mail/mail-account-gui.h
index b2fd033491..3574eddf28 100644
--- a/mail/mail-account-gui.h
+++ b/mail/mail-account-gui.h
@@ -108,9 +108,17 @@ typedef struct {
GtkToggleButton *pgp_always_sign;
GtkToggleButton *pgp_no_imip_sign;
GtkToggleButton *pgp_always_trust;
- GtkEntry *smime_key;
+
+ GtkToggleButton *smime_sign_default;
+ GtkEntry *smime_sign_key;
+ GtkButton *smime_sign_key_select;
+ GtkButton *smime_sign_key_clear;
+ GtkButton *smime_sign_select;
+ GtkToggleButton *smime_encrypt_default;
GtkToggleButton *smime_encrypt_to_self;
- GtkToggleButton *smime_always_sign;
+ GtkEntry *smime_encrypt_key;
+ GtkButton *smime_encrypt_key_select;
+ GtkButton *smime_encrypt_key_clear;
} MailAccountGui;