aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-06-07 06:06:49 +0800
committerIain Holmes <iain@src.gnome.org>2001-06-07 06:06:49 +0800
commit66782a0fc5f174ab1f3abe0192f418a16dca2f54 (patch)
tree06c16acba80f3360936dd66194cb5b2abdbbe61e /shell
parentaa71323c61923d24a7cf9aed4e63984eaf199b73 (diff)
downloadgsoc2013-evolution-66782a0fc5f174ab1f3abe0192f418a16dca2f54.tar
gsoc2013-evolution-66782a0fc5f174ab1f3abe0192f418a16dca2f54.tar.gz
gsoc2013-evolution-66782a0fc5f174ab1f3abe0192f418a16dca2f54.tar.bz2
gsoc2013-evolution-66782a0fc5f174ab1f3abe0192f418a16dca2f54.tar.lz
gsoc2013-evolution-66782a0fc5f174ab1f3abe0192f418a16dca2f54.tar.xz
gsoc2013-evolution-66782a0fc5f174ab1f3abe0192f418a16dca2f54.tar.zst
gsoc2013-evolution-66782a0fc5f174ab1f3abe0192f418a16dca2f54.zip
Changed the dialog box and added a Don't Ask Me Again button. Oh yeah!
svn path=/trunk/; revision=10138
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog8
-rw-r--r--shell/importer/intelligent.c73
2 files changed, 73 insertions, 8 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 3994abdce3..547613bc1d 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,11 @@
+2001-06-06 Iain Holmes <iain@ximian.com>
+
+ * importers/intelligent.c (create_gui): Make a few boxes, and make
+ the whole dialog horizontal. Add better buttons, and a "Don't ask
+ again button" (And the world rejoices).
+ Fixed the notebook so it displayed the blank page on startup.
+ (intelligent_importer_init): Handle the "Don't ask me again" button.
+
2001-06-06 Jason Leach <jleach@ximian.com>
(Fix bug #3205: Component crash causes folder switch even when not
diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c
index 528b98159b..be9863e8d7 100644
--- a/shell/importer/intelligent.c
+++ b/shell/importer/intelligent.c
@@ -177,32 +177,57 @@ unselect_row_cb (GtkCList *clist,
static IntelligentImporterDialog *
create_gui (GList *importers)
{
- GtkWidget *dialog, *clist, *sw;
+ GtkWidget *dialog, *clist, *sw, *label;
+ GtkWidget *hbox, *vbox, *dummy;
IntelligentImporterDialog *d;
GList *l;
int running = 0;
d = g_new (IntelligentImporterDialog, 1);
- d->dialog = dialog = gnome_dialog_new (_("Importers"), "Import",
- GNOME_STOCK_BUTTON_CANCEL,
+ d->dialog = dialog = gnome_dialog_new (_("Importers"),
NULL);
+ gnome_dialog_append_button_with_pixmap (GNOME_DIALOG (dialog),
+ _("Import"),
+ GNOME_STOCK_PIXMAP_CONVERT);
+ gnome_dialog_append_button_with_pixmap (GNOME_DIALOG (dialog),
+ _("Don't import"),
+ GNOME_STOCK_BUTTON_NO);
+ gnome_dialog_append_button_with_pixmap (GNOME_DIALOG (dialog), _("Don't ask me again"),
+ GNOME_STOCK_BUTTON_CANCEL);
+
gnome_dialog_close_hides (GNOME_DIALOG (dialog), TRUE);
d->importers = NULL;
d->current = NULL;
d->clist = clist = gtk_clist_new (1);
gtk_clist_set_selection_mode (GTK_CLIST (d->clist), GTK_SELECTION_MULTIPLE);
+
+ label = gtk_label_new ("Evolution has found the following data sources:");
+ gtk_misc_set_alignment(GTK_MISC(label), 0, .5);
+ gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dialog)->vbox), label,
+ TRUE, TRUE, 0);
+
+ hbox = gtk_hbox_new (FALSE, 2);
+ gtk_container_set_border_width (GTK_CONTAINER (hbox), 2);
+
+ gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dialog)->vbox), hbox,
+ TRUE, TRUE, 0);
sw = gtk_scrolled_window_new (NULL, NULL);
+ gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(sw),
+ GTK_POLICY_AUTOMATIC,
+ GTK_POLICY_AUTOMATIC);
gtk_widget_set_usize (sw, 300, 150);
gtk_container_add (GTK_CONTAINER (sw), clist);
- gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dialog)->vbox), sw,
- TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (hbox), sw, TRUE, TRUE, 0);
+ vbox = gtk_vbox_new (FALSE, 0);
+ gtk_container_set_border_width (GTK_CONTAINER (vbox), 2);
+ gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0);
+
d->placeholder = gtk_notebook_new ();
gtk_notebook_set_show_tabs (GTK_NOTEBOOK (d->placeholder), FALSE);
- gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dialog)->vbox), d->placeholder,
- FALSE, FALSE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), d->placeholder, TRUE, TRUE, 0);
for (l = importers; l; l = l->next) {
IntelligentImporterData *data;
@@ -327,8 +352,10 @@ create_gui (GList *importers)
}
d->running = running;
+ dummy = gtk_drawing_area_new ();
+ gtk_widget_show (dummy);
gtk_notebook_append_page (GTK_NOTEBOOK (d->placeholder),
- gtk_label_new (""), NULL);
+ dummy, NULL);
/* Set the start to the blank page */
gtk_notebook_set_page (GTK_NOTEBOOK (d->placeholder), running);
@@ -346,6 +373,19 @@ intelligent_importer_init (void)
{
GList *importers, *l, *selected = NULL;
IntelligentImporterDialog *d;
+ char *prefix;
+ gboolean dontaskagain;
+
+ prefix = g_strdup_printf ("=%s/evolution/config/Shell=/intelligent-importers/", gnome_util_user_home ());
+ gnome_config_push_prefix (prefix);
+ g_free (prefix);
+
+ dontaskagain = gnome_config_get_bool ("Dontaskagain=False");
+ gnome_config_pop_prefix ();
+
+ if (dontaskagain) {
+ return;
+ }
importers = get_intelligent_importers ();
if (importers == NULL)
@@ -416,6 +456,23 @@ intelligent_importer_init (void)
break;
+ case 1: /* No button */
+ free_importer_dialog (d);
+ break;
+
+ case 2: /* Dont ask again */
+ prefix = g_strdup_printf ("=%s/evolution/config/Shell=/intelligent-importers/",
+ gnome_util_user_home ());
+ gnome_config_push_prefix (prefix);
+ g_free (prefix);
+
+ gnome_config_set_bool ("Dontaskagain", TRUE);
+ gnome_config_pop_prefix ();
+
+ g_print ("Not asking again");
+ free_importer_dialog (d);
+ break;
+
default:
free_importer_dialog (d);
break;