21d49669de6cc6c858b1b5ddebef7848ee9944fb
[pspp] / src / ui / gui / var-type-dialog.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2     Copyright (C) 2005, 2006, 2010, 2011, 2012  Free Software Foundation
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17
18 /*  This module describes the behaviour of the Variable Type dialog box used
19     for inputing the variable type in the var sheet */
20
21 #include <config.h>
22
23 #include <gtk/gtk.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "data/data-out.h"
28 #include "data/settings.h"
29 #include "data/variable.h"
30 #include "libpspp/message.h"
31 #include "ui/gui/builder-wrapper.h"
32 #include "ui/gui/var-type-dialog.h"
33
34 struct format_opt {
35   gchar desc[21];
36   struct fmt_spec spec;
37 };
38
39
40 static const struct format_opt format_option[] =
41   {
42     { "dd-mmm-yyyy", {FMT_DATE,  11, 0} },
43     { "dd-mmm-yy",   {FMT_DATE,   9, 0} },
44     { "mm/dd/yyyy",  {FMT_ADATE, 10, 0} },
45     { "mm/dd/yy",    {FMT_ADATE, 8, 0} },
46     { "dd.mm.yyyy",  {FMT_EDATE, 10, 0} },
47     { "dd.mm.yy",    {FMT_EDATE, 8, 0} },
48     { "yyyy/mm/dd",  {FMT_SDATE, 10, 0} },
49     { "yy/mm/dd",    {FMT_SDATE, 8, 0} },
50     { "yyddd",       {FMT_JDATE, 5, 0} },
51     { "yyyyddd",     {FMT_JDATE, 7, 0} },
52     { "q Q yyyy",    {FMT_QYR, 8, 0} },
53     { "q Q yy",      {FMT_QYR, 6, 0} },
54     { "mmm yyyy",    {FMT_MOYR, 8, 0} },
55     { "mmm yy",      {FMT_MOYR, 6, 0} },
56     { "dd WK yyyy",  {FMT_WKYR, 10, 0} },
57     { "dd WK yy",    {FMT_WKYR, 8, 0} },
58     { "dd-mmm-yyyy HH:MM", {FMT_DATETIME, 17, 0}},
59     { "dd-mmm-yyyy HH:MM:SS", {FMT_DATETIME, 20, 0}}
60   };
61
62
63 static const struct fmt_spec dollar_format[] =
64   {
65     {FMT_DOLLAR, 2, 0},
66     {FMT_DOLLAR, 3, 0},
67     {FMT_DOLLAR, 4, 0},
68     {FMT_DOLLAR, 7, 2},
69     {FMT_DOLLAR, 6, 0},
70     {FMT_DOLLAR, 9, 2},
71     {FMT_DOLLAR, 8, 0},
72     {FMT_DOLLAR, 11, 2},
73     {FMT_DOLLAR, 12, 0},
74     {FMT_DOLLAR, 15, 2},
75     {FMT_DOLLAR, 16, 0},
76     {FMT_DOLLAR, 19, 2}
77   };
78
79 static const int cc_format[] =
80   {
81     FMT_CCA,
82     FMT_CCB,
83     FMT_CCC,
84     FMT_CCD,
85     FMT_CCE,
86   };
87
88
89 static void select_treeview_from_format
90  (GtkTreeView *treeview, const struct fmt_spec *fmt);
91
92 static void select_treeview_from_format_type (GtkTreeView *treeview,
93                                              const int fmt_type);
94
95
96 /* callback for when any of the radio buttons are toggled */
97 static void
98 on_toggle_1 (GtkToggleButton *togglebutton, gpointer dialog_)
99 {
100   GtkWidget *widget = GTK_WIDGET (togglebutton);
101   struct var_type_dialog *dialog = dialog_;
102   int i;
103
104   if ( gtk_toggle_button_get_active (togglebutton) == FALSE)
105     return ;
106
107   for (i = 0; i < num_BUTTONS; i++)
108     if (widget == dialog->radioButton[i])
109       {
110         dialog->active_button = i;
111         return;
112       }
113   g_return_if_reached ();
114 }
115
116 static void update_width_decimals (const struct var_type_dialog *dialog);
117
118 #define force_max(x, val) if (x > val) x = val
119
120 /*
121    Set the local format from the variable
122    and force them to have sensible values */
123 static void
124 set_local_width_decimals (struct var_type_dialog *dialog)
125 {
126   dialog->fmt_l = * var_get_print_format (dialog->pv);
127
128   switch (dialog->active_button)
129     {
130     case BUTTON_STRING:
131       force_max ( dialog->fmt_l.w, 255);
132       break;
133     default:
134       force_max ( dialog->fmt_l.w, 40);
135       force_max ( dialog->fmt_l.d, 16);
136       break;
137     }
138 }
139
140
141 /* callback for when any of the radio buttons are toggled */
142 static void
143 on_toggle_2 (GtkToggleButton *togglebutton, gpointer user_data)
144 {
145   struct var_type_dialog *dialog = user_data;
146   if ( gtk_toggle_button_get_active (togglebutton) == FALSE)
147     {
148       switch (dialog->active_button)
149         {
150         case BUTTON_DATE:
151           gtk_widget_hide (dialog->date_format_list);
152           break;
153         case BUTTON_CUSTOM:
154           gtk_widget_hide (dialog->custom_currency_hbox);
155           break;
156         case BUTTON_DOLLAR:
157           gtk_widget_hide (dialog->dollar_window);
158           break;
159         case BUTTON_STRING:
160           gtk_widget_show (dialog->label_decimals);
161           gtk_widget_show (dialog->entry_decimals);
162           break;
163         }
164       return ;
165     }
166
167   set_local_width_decimals (dialog);
168   update_width_decimals (dialog);
169
170   switch (dialog->active_button)
171     {
172     case BUTTON_STRING:
173       gtk_widget_show (dialog->entry_width);
174       gtk_widget_show (dialog->width_decimals);
175       gtk_widget_hide (dialog->label_decimals);
176       gtk_widget_hide (dialog->entry_decimals);
177       break;
178     case BUTTON_DATE:
179       select_treeview_from_format (dialog->date_format_treeview,
180                                   &format_option[0].spec);
181       gtk_widget_hide (dialog->width_decimals);
182       gtk_widget_show (dialog->date_format_list);
183       break;
184     case BUTTON_DOLLAR:
185       select_treeview_from_format (dialog->dollar_treeview,
186                                   &dollar_format[0]);
187       gtk_widget_show (dialog->dollar_window);
188       gtk_widget_show_all (dialog->width_decimals);
189       break;
190     case BUTTON_CUSTOM:
191       select_treeview_from_format_type (dialog->custom_treeview,
192                                   cc_format[0]);
193
194       gtk_widget_show (dialog->width_decimals);
195       gtk_widget_show (dialog->custom_currency_hbox);
196       break;
197     default:
198       gtk_widget_show_all (dialog->width_decimals);
199       break;
200     }
201 }
202
203
204
205 static gint on_var_type_ok_clicked (GtkWidget *w, gpointer data);
206 static gint hide_dialog (GtkWidget *w,  gpointer data);
207
208
209 static void
210 add_to_group (GtkWidget *w, gpointer data)
211 {
212   GtkSizeGroup *sg = data;
213
214   gtk_size_group_add_widget (sg, w);
215 }
216
217 /* Set the local width and decimals entry boxes to reflec the local format */
218 static void
219 update_width_decimals (const struct var_type_dialog *dialog)
220 {
221   gchar *text;
222   g_assert (dialog);
223
224   text = g_strdup_printf ("%d", dialog->fmt_l.w);
225   gtk_entry_set_text (GTK_ENTRY (dialog->entry_width), text);
226   g_free (text);
227
228   text = g_strdup_printf ("%d", dialog->fmt_l.d);
229   gtk_entry_set_text (GTK_ENTRY (dialog->entry_decimals), text);
230   g_free (text);
231 }
232
233 /* Callback for when the custom treeview row is changed.
234    It sets dialog box to reflect the selected format */
235 static void
236 preview_custom (GtkWidget *w, gpointer data)
237 {
238   const gchar *text ;
239
240   struct var_type_dialog *dialog = data;
241
242   if ( dialog->active_button != BUTTON_CUSTOM )
243     return;
244
245   text = gtk_entry_get_text (GTK_ENTRY (dialog->entry_decimals));
246   dialog->fmt_l.d = atoi (text);
247
248   text = gtk_entry_get_text (GTK_ENTRY (dialog->entry_width));
249   dialog->fmt_l.w = atoi (text);
250
251   msg_disable ();
252   if ( ! fmt_check_output (&dialog->fmt_l))
253     {
254       gtk_label_set_text (GTK_LABEL (dialog->label_psample), "---");
255       gtk_label_set_text (GTK_LABEL (dialog->label_nsample), "---");
256     }
257   else
258     {
259       gchar *sample_text;
260       union value v;
261       v.f = 1234.56;
262
263       sample_text = g_strchug (data_out (&v, NULL, &dialog->fmt_l));
264       gtk_label_set_text (GTK_LABEL (dialog->label_psample), sample_text);
265       g_free (sample_text);
266
267       v.f = -v.f;
268       sample_text = g_strchug (data_out (&v, NULL, &dialog->fmt_l));
269       gtk_label_set_text (GTK_LABEL (dialog->label_nsample), sample_text);
270       g_free (sample_text);
271     }
272   msg_enable ();
273 }
274
275 /* Callback for when a treeview row is changed.
276    It sets the fmt_l_spec to reflect the selected format */
277 static void
278 set_format_from_treeview (GtkTreeView *treeview, gpointer data)
279 {
280   struct var_type_dialog *dialog = data;
281   GtkTreeIter iter ;
282   GValue the_value = {0};
283
284   GtkTreeSelection* sel =  gtk_tree_view_get_selection (treeview);
285
286   GtkTreeModel * model  = gtk_tree_view_get_model (treeview);
287
288   gtk_tree_selection_get_selected (sel, &model, &iter);
289
290   gtk_tree_model_get_value (model, &iter, 1, &the_value);
291
292   dialog->fmt_l = *(struct fmt_spec *) g_value_get_pointer (&the_value);
293 }
294
295
296 /* Callback for when a treeview row is changed.
297    It sets the type of the fmt_l to reflect the selected type */
298 static void
299 set_format_type_from_treeview (GtkTreeView *treeview, gpointer data)
300 {
301   static struct fmt_spec custom_format = {0,0,0};
302   struct var_type_dialog *dialog = data;
303   GtkTreeIter iter ;
304   GValue the_value = {0};
305
306   GtkTreeSelection* sel =  gtk_tree_view_get_selection (treeview);
307
308   GtkTreeModel * model  = gtk_tree_view_get_model (treeview);
309
310   gtk_tree_selection_get_selected (sel, &model, &iter);
311
312   gtk_tree_model_get_value (model, &iter, 1, &the_value);
313
314   dialog->fmt_l = custom_format;
315   dialog->fmt_l.type = *(int*) g_value_get_pointer (&the_value);
316 }
317
318
319 /* Create the structure */
320 struct var_type_dialog *
321 var_type_dialog_create (GtkWindow *toplevel)
322 {
323   gint i;
324   struct var_type_dialog *dialog = g_malloc (sizeof (struct var_type_dialog));
325
326   GtkBuilder *xml = builder_new ("var-type-dialog.ui");
327
328   dialog->window = get_widget_assert (xml,"var_type_dialog");
329   dialog->active_button = -1;
330
331
332   g_signal_connect (dialog->window, "delete-event",
333                     G_CALLBACK (gtk_widget_hide_on_delete), NULL);
334
335   gtk_window_set_transient_for (GTK_WINDOW (dialog->window),
336                                 toplevel);
337
338   dialog->radioButton[BUTTON_NUMERIC] =
339     get_widget_assert (xml,"radiobutton1");
340   dialog->radioButton[BUTTON_COMMA] =
341     get_widget_assert (xml,"radiobutton2");
342   dialog->radioButton[BUTTON_DOT] =
343     get_widget_assert (xml,"radiobutton3");
344   dialog->radioButton[BUTTON_SCIENTIFIC] =
345     get_widget_assert (xml,"radiobutton4");
346   dialog->radioButton[BUTTON_DATE] =
347     get_widget_assert (xml,"radiobutton5");
348   dialog->radioButton[BUTTON_DOLLAR] =
349     get_widget_assert (xml,"radiobutton6");
350   dialog->radioButton[BUTTON_CUSTOM] =
351     get_widget_assert (xml,"radiobutton7");
352   dialog->radioButton[BUTTON_STRING] =
353     get_widget_assert (xml,"radiobutton8");
354
355
356   dialog->date_format_list = get_widget_assert (xml, "scrolledwindow4");
357   dialog->width_decimals = get_widget_assert (xml, "width_decimals");
358   dialog->label_decimals = get_widget_assert (xml, "decimals_label");
359   dialog->entry_decimals = get_widget_assert (xml, "decimals_entry");
360
361   dialog->label_psample = get_widget_assert (xml, "psample_label");
362   dialog->label_nsample = get_widget_assert (xml, "nsample_label");
363
364
365   dialog->entry_width = get_widget_assert (xml,"width_entry");
366
367   dialog->custom_currency_hbox = get_widget_assert (xml,
368                                                    "custom_currency_hbox");
369
370   dialog->dollar_window = get_widget_assert (xml, "dollar_window");
371   dialog->dollar_treeview =
372     GTK_TREE_VIEW (get_widget_assert (xml, "dollar_treeview"));
373
374   dialog->custom_treeview =
375     GTK_TREE_VIEW (get_widget_assert (xml, "custom_treeview"));
376
377
378   dialog->ok = get_widget_assert (xml,"var_type_ok");
379
380
381   {
382   GtkTreeIter iter;
383   GtkListStore *list_store ;
384
385   GtkTreeViewColumn *column;
386   GtkCellRenderer *renderer ;
387
388   /* The "middle_box" is a vbox with serveral children.
389      However only one child is ever shown at a time.
390      We need to make sure that they all have the same width, to avoid
391      upleasant resizing effects */
392   GtkSizeGroup *sizeGroup = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
393
394   gtk_container_foreach (GTK_CONTAINER (get_widget_assert (xml, "middle_box")),
395                         add_to_group, sizeGroup);
396
397
398   for (i = 0 ; i < num_BUTTONS; ++i )
399     {
400       g_signal_connect (dialog->radioButton[i], "toggled",
401                        G_CALLBACK (on_toggle_1), dialog);
402
403       g_signal_connect (dialog->radioButton[i], "toggled",
404                        G_CALLBACK (on_toggle_2), dialog);
405     }
406
407   /* Populate the date format tree view */
408   dialog->date_format_treeview = GTK_TREE_VIEW (get_widget_assert (xml,
409                                               "date_format_list_view"));
410
411   renderer = gtk_cell_renderer_text_new ();
412
413   column = gtk_tree_view_column_new_with_attributes ("Title",
414                                                      renderer,
415                                                      "text",
416                                                      0,
417                                                      NULL);
418
419   gtk_tree_view_append_column (GTK_TREE_VIEW (dialog->date_format_treeview),
420                                column);
421
422
423   list_store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_POINTER);
424
425   for ( i = 0 ; i < sizeof (format_option) / sizeof (format_option[0]) ; ++i )
426     {
427       gtk_list_store_append (list_store, &iter);
428       gtk_list_store_set (list_store, &iter,
429                           0, format_option[i].desc,
430                           1, &format_option[i].spec,
431                           -1);
432     }
433
434   gtk_tree_view_set_model (GTK_TREE_VIEW (dialog->date_format_treeview),
435                           GTK_TREE_MODEL (list_store));
436
437   g_object_unref (list_store);
438
439   g_signal_connect (dialog->date_format_treeview, "cursor-changed",
440                    G_CALLBACK (set_format_from_treeview), dialog);
441
442
443   /* populate the dollar treeview */
444
445   renderer = gtk_cell_renderer_text_new ();
446
447   column = gtk_tree_view_column_new_with_attributes ("Title",
448                                                      renderer,
449                                                      "text",
450                                                      0,
451                                                      NULL);
452
453   gtk_tree_view_append_column (GTK_TREE_VIEW (dialog->dollar_treeview),
454                                column);
455
456
457   list_store = gtk_list_store_new (2, G_TYPE_STRING,
458                                                  G_TYPE_POINTER);
459
460   for ( i = 0 ; i < sizeof (dollar_format)/sizeof (dollar_format[0]) ; ++i )
461     {
462       char *template = settings_dollar_template (&dollar_format[i]);
463       gtk_list_store_append (list_store, &iter);
464       gtk_list_store_set (list_store, &iter,
465                           0, template,
466                           1, &dollar_format[i],
467                           -1);
468       free (template);
469     }
470
471   gtk_tree_view_set_model (GTK_TREE_VIEW (dialog->dollar_treeview),
472                           GTK_TREE_MODEL (list_store));
473
474   g_object_unref (list_store);
475
476   g_signal_connect (dialog->dollar_treeview,
477                    "cursor-changed",
478                    G_CALLBACK (set_format_from_treeview), dialog);
479
480   g_signal_connect_swapped (dialog->dollar_treeview,
481                    "cursor-changed",
482                    G_CALLBACK (update_width_decimals), dialog);
483
484
485   /* populate the custom treeview */
486
487   renderer = gtk_cell_renderer_text_new ();
488
489   column = gtk_tree_view_column_new_with_attributes ("Title",
490                                                      renderer,
491                                                      "text",
492                                                      0,
493                                                      NULL);
494
495   gtk_tree_view_append_column (GTK_TREE_VIEW (dialog->custom_treeview),
496                                column);
497
498
499   list_store = gtk_list_store_new (2, G_TYPE_STRING,
500                                                  G_TYPE_POINTER);
501
502   for ( i = 0 ; i < 5 ; ++i )
503     {
504       enum fmt_type cc_fmts[5] = {FMT_CCA, FMT_CCB, FMT_CCC, FMT_CCD, FMT_CCE};
505       gchar text[4];
506       g_snprintf (text, 4, "%s", fmt_name (cc_fmts[i]));
507       gtk_list_store_append (list_store, &iter);
508       gtk_list_store_set (list_store, &iter,
509                           0, text,
510                           1, &cc_format[i],
511                           -1);
512     }
513
514   gtk_tree_view_set_model (GTK_TREE_VIEW (dialog->custom_treeview),
515                           GTK_TREE_MODEL (list_store));
516
517   g_object_unref (list_store);
518
519
520   g_signal_connect (dialog->custom_treeview,
521                    "cursor-changed",
522                    G_CALLBACK (set_format_type_from_treeview), dialog);
523
524
525   g_signal_connect (dialog->custom_treeview,
526                    "cursor-changed",
527                    G_CALLBACK (preview_custom), dialog);
528
529
530   g_signal_connect (dialog->entry_width,
531                    "changed",
532                    G_CALLBACK (preview_custom), dialog);
533
534
535   g_signal_connect (dialog->entry_decimals,
536                    "changed",
537                    G_CALLBACK (preview_custom), dialog);
538
539
540   /* Connect to the OK button */
541   g_signal_connect (dialog->ok, "clicked", G_CALLBACK (on_var_type_ok_clicked),
542                    dialog);
543
544
545   /* And the cancel button */
546   g_signal_connect (get_widget_assert (xml, "var_type_cancel") , "clicked",
547                     G_CALLBACK (hide_dialog),
548                     dialog);
549   }
550
551   g_object_unref (xml);
552
553   return dialog;
554 }
555
556
557 /* Set a particular button to be active */
558 void
559 var_type_dialog_set_active_button (struct var_type_dialog *dialog, gint b)
560 {
561   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dialog->radioButton[b]),
562                                TRUE);
563   dialog->active_button = b;
564 }
565
566
567
568 /* Set the TREEVIEW list cursor to the item described by FMT */
569 static void
570 select_treeview_from_format (GtkTreeView *treeview, const struct fmt_spec *fmt)
571 {
572   GtkTreePath *path ;
573
574   /*
575     We do this with a linear search through the model --- hardly
576     efficient, but the list is short ... */
577   GtkTreeIter iter;
578
579   GtkTreeModel * model  = gtk_tree_view_get_model (treeview);
580
581   gboolean success;
582   for (success = gtk_tree_model_get_iter_first (model, &iter);
583        success;
584        success = gtk_tree_model_iter_next (model, &iter))
585     {
586       const struct fmt_spec *spec;
587
588       GValue value = {0};
589
590       gtk_tree_model_get_value (model, &iter, 1, &value);
591
592       spec = g_value_get_pointer (&value);
593
594       if ( 0 == memcmp (spec, fmt, sizeof (struct fmt_spec)))
595         {
596           break;
597         }
598     }
599
600   path = gtk_tree_model_get_path (model, &iter);
601   if ( path )
602     {
603       gtk_tree_view_set_cursor (treeview, path, 0, 0);
604       gtk_tree_path_free (path);
605     }
606   else
607     {
608       char str[FMT_STRING_LEN_MAX + 1];
609       g_warning ("Unusual date format: %s\n", fmt_to_string (fmt, str));
610     }
611 }
612
613
614 /* Set the TREEVIEW list cursor to the item described by FMT_TYPE */
615 static void
616 select_treeview_from_format_type (GtkTreeView *treeview,
617                                  const int fmt_type)
618 {
619   GtkTreePath *path ;
620
621  /*
622     We do this with a linear search through the model --- hardly
623     efficient, but the list is short ... */
624   GtkTreeIter iter;
625
626   GtkTreeModel * model  = gtk_tree_view_get_model (treeview);
627
628   gboolean success;
629   for (success = gtk_tree_model_get_iter_first (model, &iter);
630        success;
631        success = gtk_tree_model_iter_next (model, &iter))
632     {
633       int spec ;
634
635       GValue value = {0};
636
637       gtk_tree_model_get_value (model, &iter, 1, &value);
638
639       spec = * ((int *) g_value_get_pointer (&value));
640
641       if ( spec == fmt_type)
642         break;
643     }
644
645   path = gtk_tree_model_get_path (model, &iter);
646   if ( path )
647     {
648       gtk_tree_view_set_cursor (treeview, path, 0, 0);
649       gtk_tree_path_free (path);
650     }
651   else
652     g_warning ("Unknown custom type  %d\n", fmt_type);
653
654 }
655
656 /* Set up the state of the dialog box to match the variable VAR */
657 static void
658 var_type_dialog_set_state (struct var_type_dialog *dialog)
659 {
660   const struct fmt_spec *format ;
661   GString *str = g_string_new ("");
662
663   g_assert (dialog);
664   g_assert (dialog->pv);
665
666   /* Populate width and decimals */
667   format = var_get_print_format (dialog->pv);
668
669   g_string_printf (str, "%d", format->d);
670
671   gtk_entry_set_text (GTK_ENTRY (dialog->entry_decimals),
672                      str->str);
673
674   g_string_printf (str, "%d", format->w);
675
676   gtk_entry_set_text (GTK_ENTRY (dialog->entry_width),
677                      str->str);
678
679   g_string_free (str, TRUE);
680
681   /* Populate the radio button states */
682   switch (format->type)
683     {
684     case FMT_F:
685       var_type_dialog_set_active_button (dialog, BUTTON_NUMERIC);
686       gtk_widget_show_all (dialog->width_decimals);
687       break;
688     case FMT_A:
689       var_type_dialog_set_active_button (dialog, BUTTON_STRING);
690       gtk_widget_hide (dialog->label_decimals);
691       gtk_widget_hide (dialog->entry_decimals);
692       break;
693     case FMT_COMMA:
694       var_type_dialog_set_active_button (dialog, BUTTON_COMMA);
695       gtk_widget_show_all (dialog->width_decimals);
696       break;
697     case FMT_DOT:
698       var_type_dialog_set_active_button (dialog, BUTTON_DOT);
699       gtk_widget_show_all (dialog->width_decimals);
700       break;
701     case FMT_DOLLAR:
702       var_type_dialog_set_active_button (dialog, BUTTON_DOLLAR);
703       gtk_widget_show_all (dialog->width_decimals);
704
705       select_treeview_from_format (dialog->dollar_treeview, format);
706       break;
707     case FMT_DATE:
708     case FMT_EDATE:
709     case FMT_SDATE:
710     case FMT_ADATE:
711     case FMT_JDATE:
712     case FMT_QYR:
713     case FMT_MOYR:
714     case FMT_WKYR:
715     case FMT_DATETIME:
716     case FMT_TIME:
717     case FMT_DTIME:
718     case FMT_WKDAY:
719     case FMT_MONTH:
720       var_type_dialog_set_active_button (dialog, BUTTON_DATE);
721       gtk_widget_hide (dialog->width_decimals);
722       gtk_widget_show (dialog->date_format_list);
723       select_treeview_from_format (dialog->date_format_treeview, format);
724       break;
725     case FMT_CCA:
726     case FMT_CCB:
727     case FMT_CCC:
728     case FMT_CCD:
729     case FMT_CCE:
730       var_type_dialog_set_active_button (dialog, BUTTON_CUSTOM);
731       select_treeview_from_format_type (dialog->custom_treeview,
732                                        format->type);
733       gtk_widget_show_all (dialog->width_decimals);
734       break;
735     default:
736       gtk_widget_show_all (dialog->width_decimals);
737       break;
738     }
739 }
740
741
742 /* Popup the dialog box */
743 void
744 var_type_dialog_show (struct var_type_dialog *dialog)
745 {
746   var_type_dialog_set_state (dialog);
747
748   gtk_widget_show (dialog->window);
749 }
750
751 /* Fills F with an output format specification with type TYPE, width
752    W, and D decimals. Iff it's a valid format, then return true.
753 */
754 static bool
755 make_output_format_try (struct fmt_spec *f, int type, int w, int d)
756 {
757   f->type = type;
758   f->w = w;
759   f->d = d;
760   return fmt_check_output (f);
761 }
762
763
764
765
766 /* Callbacks for the Variable Type Dialog Box */
767
768 /* Callback for when the var type dialog is closed using the OK button.
769    It sets the appropriate variable accordingly. */
770 static gint
771 on_var_type_ok_clicked (GtkWidget *w, gpointer data)
772 {
773   struct var_type_dialog *dialog = data;
774
775   g_assert (dialog);
776   g_assert (dialog->pv);
777
778   {
779     gint width = atoi (gtk_entry_get_text
780                       (GTK_ENTRY (dialog->entry_width)));
781
782     gint decimals = atoi (gtk_entry_get_text
783                          (GTK_ENTRY (dialog->entry_decimals)));
784
785     gint new_width = 0;
786     bool result = false;
787     struct fmt_spec spec;
788     switch (dialog->active_button)
789       {
790       case BUTTON_STRING:
791         new_width = width;
792         result = make_output_format_try (&spec, FMT_A, width, 0);
793         break;
794       case BUTTON_NUMERIC:
795         result = make_output_format_try (&spec, FMT_F, width, decimals);
796         break;
797       case BUTTON_COMMA:
798         result = make_output_format_try (&spec, FMT_COMMA, width, decimals);
799         break;
800       case BUTTON_DOT:
801         result = make_output_format_try (&spec, FMT_DOT, width, decimals);
802         break;
803       case BUTTON_SCIENTIFIC:
804         result = make_output_format_try (&spec, FMT_E, width, decimals);
805         break;
806       case BUTTON_DATE:
807       case BUTTON_CUSTOM:
808         if  (! fmt_check_output (&dialog->fmt_l))
809           g_critical ("Invalid variable format");
810         else
811           result = memcpy (&spec, &dialog->fmt_l, sizeof (struct fmt_spec));
812         break;
813       case BUTTON_DOLLAR:
814         result = make_output_format_try (&spec, FMT_DOLLAR, width, decimals);
815         break;
816       default:
817         g_critical ("Unknown variable type: %d", dialog->active_button) ;
818         result = false;
819         break;
820       }
821
822     if ( result == true )
823       {
824         var_set_width (dialog->pv, new_width);
825         var_set_both_formats (dialog->pv, &spec);
826       }
827
828   }
829   gtk_widget_hide (dialog->window);
830
831   return FALSE;
832 }
833
834
835
836 static gint
837 hide_dialog (GtkWidget *w,  gpointer data)
838 {
839   struct var_type_dialog *dialog = data;
840
841   gtk_widget_hide (dialog->window);
842
843   return FALSE;
844 }
845