diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-24 00:23:34 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-24 00:23:34 +0800 |
commit | b3029f0665371922680519b561e03b54014dc146 (patch) | |
tree | cef9bd69557cf7451b79e8ade2c01ab6b0d3908c | |
parent | 0529ab498fa006171c672226e9e3217d030884a3 (diff) | |
download | gsoc2013-evolution-b3029f0665371922680519b561e03b54014dc146.tar gsoc2013-evolution-b3029f0665371922680519b561e03b54014dc146.tar.gz gsoc2013-evolution-b3029f0665371922680519b561e03b54014dc146.tar.bz2 gsoc2013-evolution-b3029f0665371922680519b561e03b54014dc146.tar.lz gsoc2013-evolution-b3029f0665371922680519b561e03b54014dc146.tar.xz gsoc2013-evolution-b3029f0665371922680519b561e03b54014dc146.tar.zst gsoc2013-evolution-b3029f0665371922680519b561e03b54014dc146.zip |
Add a toggle to avoid displaying the dialog again. Don't display the
* main.c (show_development_warning): Add a toggle to avoid
displaying the dialog again. Don't display the dialog at all if
the /Shell/skip_warning_dialog_1_1 bonobo-conf key is set to
FALSE.
(warning_dialog_clicked_callback): Set
/Shell/skip_warning_dialog_1_1 according to the state of the check
button.
svn path=/trunk/; revision=16986
-rw-r--r-- | shell/ChangeLog | 10 | ||||
-rw-r--r-- | shell/main.c | 38 |
2 files changed, 43 insertions, 5 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 4172e453ab..05c313ee72 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,13 @@ +2002-05-23 Ettore Perazzoli <ettore@ximian.com> + + * main.c (show_development_warning): Add a toggle to avoid + displaying the dialog again. Don't display the dialog at all if + the /Shell/skip_warning_dialog_1_1 bonobo-conf key is set to + FALSE. + (warning_dialog_clicked_callback): Set + /Shell/skip_warning_dialog_1_1 according to the state of the check + button. + 2002-05-22 Ettore Perazzoli <ettore@ximian.com> * e-shell.c (impl_Shell_selectUserFolder): No more @default_type diff --git a/shell/main.c b/shell/main.c index 3c9802c4e5..b9deb26194 100644 --- a/shell/main.c +++ b/shell/main.c @@ -25,6 +25,7 @@ #include <glib.h> #include <stdio.h> +#include <gtk/gtkalignment.h> #include <gtk/gtkframe.h> #include <gtk/gtklabel.h> #include <gtk/gtkmain.h> @@ -186,14 +187,32 @@ warning_dialog_clicked_callback (GnomeDialog *dialog, int button_number, void *data) { + GtkCheckButton *dont_bother_me_again_checkbox; + Bonobo_ConfigDatabase config_db; + + dont_bother_me_again_checkbox = GTK_CHECK_BUTTON (data); + config_db = e_shell_get_config_db (shell); + + bonobo_config_set_boolean (config_db, "/Shell/skip_warning_dialog_1_1", + gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dont_bother_me_again_checkbox)), + NULL); + gtk_widget_destroy (GTK_WIDGET (dialog)); } static void show_development_warning (GtkWindow *parent) { - GtkWidget *label, *warning_dialog; + GtkWidget *label; + GtkWidget *warning_dialog; + GtkWidget *dont_bother_me_again_checkbox; + GtkWidget *alignment; + Bonobo_ConfigDatabase config_db; + config_db = e_shell_get_config_db (shell); + if (bonobo_config_get_boolean_with_default (config_db, "/Shell/skip_warning_dialog_1_1", FALSE, NULL)) + return; + warning_dialog = gnome_dialog_new ("Ximian Evolution " VERSION, GNOME_STOCK_BUTTON_OK, NULL); gtk_window_set_transient_for (GTK_WINDOW (warning_dialog), parent); @@ -216,7 +235,6 @@ show_development_warning (GtkWindow *parent) "eagerly await your contributions!\n" )); gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT); - gtk_widget_show (label); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), label, TRUE, TRUE, 4); @@ -228,14 +246,24 @@ show_development_warning (GtkWindow *parent) )); gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_RIGHT); gtk_misc_set_alignment(GTK_MISC(label), 1, .5); - gtk_widget_show (label); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), label, TRUE, TRUE, 0); - gtk_widget_show (warning_dialog); + dont_bother_me_again_checkbox = gtk_check_button_new_with_label (_("Don't tell me again")); + + /* GTK sucks. (Just so you know.) */ + alignment = gtk_alignment_new (0.0, 0.0, 0.0, 0.0); + + gtk_container_add (GTK_CONTAINER (alignment), dont_bother_me_again_checkbox); + gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), + alignment, FALSE, FALSE, 0); + + gtk_widget_show_all (warning_dialog); + gtk_signal_connect (GTK_OBJECT (warning_dialog), "clicked", - GTK_SIGNAL_FUNC (warning_dialog_clicked_callback), NULL); + GTK_SIGNAL_FUNC (warning_dialog_clicked_callback), + dont_bother_me_again_checkbox); } /* The following signal handlers are used to display the development warning as |