aboutsummaryrefslogtreecommitdiffstats
path: root/smime/gui/ca-trust-dialog.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-05-01 05:04:15 +0800
committerChris Toshok <toshok@src.gnome.org>2004-05-01 05:04:15 +0800
commit343d0d815a4b59c13316e7125ef392be7ccdefcb (patch)
tree118be876a19402602d108772a0324c869a9efe56 /smime/gui/ca-trust-dialog.c
parent5135f65c83b0256b275a4166c3dbfbe4315509b7 (diff)
downloadgsoc2013-evolution-343d0d815a4b59c13316e7125ef392be7ccdefcb.tar
gsoc2013-evolution-343d0d815a4b59c13316e7125ef392be7ccdefcb.tar.gz
gsoc2013-evolution-343d0d815a4b59c13316e7125ef392be7ccdefcb.tar.bz2
gsoc2013-evolution-343d0d815a4b59c13316e7125ef392be7ccdefcb.tar.lz
gsoc2013-evolution-343d0d815a4b59c13316e7125ef392be7ccdefcb.tar.xz
gsoc2013-evolution-343d0d815a4b59c13316e7125ef392be7ccdefcb.tar.zst
gsoc2013-evolution-343d0d815a4b59c13316e7125ef392be7ccdefcb.zip
[ fixes bug #52724 ]
2004-04-30 Chris Toshok <toshok@ximian.com> [ fixes bug #52724 ] * gui/ca-trust-dialog.c (ca_trust_dialog_set_trust): new function, set the toggle buttons' states. * gui/ca-trust-dialog.h (ca_trust_dialog_set_trust): add prototype. * gui/certificate-manager.c (edit_ca): flesh out the rest of the editing here. set the existing trust levels and get them back from the dialog when OK is clicked (and store them to the cert db.) svn path=/trunk/; revision=25726
Diffstat (limited to 'smime/gui/ca-trust-dialog.c')
-rw-r--r--smime/gui/ca-trust-dialog.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/smime/gui/ca-trust-dialog.c b/smime/gui/ca-trust-dialog.c
index 2e97653601..b59e189b9e 100644
--- a/smime/gui/ca-trust-dialog.c
+++ b/smime/gui/ca-trust-dialog.c
@@ -99,6 +99,20 @@ ca_trust_dialog_show (ECert *cert, gboolean importing)
}
void
+ca_trust_dialog_set_trust (GtkWidget *widget, gboolean ssl, gboolean email, gboolean objsign)
+{
+ CATrustDialogData *ctd_data;
+
+ ctd_data = g_object_get_data (G_OBJECT (widget), "CATrustDialogData");
+ if (!ctd_data)
+ return;
+
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (ctd_data->ssl_checkbutton), ssl);
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (ctd_data->email_checkbutton), email);
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (ctd_data->objsign_checkbutton), objsign);
+}
+
+void
ca_trust_dialog_get_trust (GtkWidget *widget, gboolean *ssl, gboolean *email, gboolean *objsign)
{
CATrustDialogData *ctd_data;