var-type-dialog: Avoid string copy setting up currency treeview.
[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       gtk_list_store_append (list_store, &iter);
506       gtk_list_store_set (list_store, &iter,
507                           0, fmt_name (cc_fmts[i]),
508                           1, &cc_format[i],
509                           -1);
510     }
511
512   gtk_tree_view_set_model (GTK_TREE_VIEW (dialog->custom_treeview),
513                           GTK_TREE_MODEL (list_store));
514
515   g_object_unref (list_store);
516
517
518   g_signal_connect (dialog->custom_treeview,
519                    "cursor-changed",
520                    G_CALLBACK (set_format_type_from_treeview), dialog);
521
522
523   g_signal_connect (dialog->custom_treeview,
524                    "cursor-changed",
525                    G_CALLBACK (preview_custom), dialog);
526
527
528   g_signal_connect (dialog->entry_width,
529                    "changed",
530                    G_CALLBACK (preview_custom), dialog);
531
532
533   g_signal_connect (dialog->entry_decimals,
534                    "changed",
535                    G_CALLBACK (preview_custom), dialog);
536
537
538   /* Connect to the OK button */
539   g_signal_connect (dialog->ok, "clicked", G_CALLBACK (on_var_type_ok_clicked),
540                    dialog);
541
542
543   /* And the cancel button */
544   g_signal_connect (get_widget_assert (xml, "var_type_cancel") , "clicked",
545                     G_CALLBACK (hide_dialog),
546                     dialog);
547   }
548
549   g_object_unref (xml);
550
551   return dialog;
552 }
553
554
555 /* Set a particular button to be active */
556 void
557 var_type_dialog_set_active_button (struct var_type_dialog *dialog, gint b)
558 {
559   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dialog->radioButton[b]),
560                                TRUE);
561   dialog->active_button = b;
562 }
563
564
565
566 /* Set the TREEVIEW list cursor to the item described by FMT */
567 static void
568 select_treeview_from_format (GtkTreeView *treeview, const struct fmt_spec *fmt)
569 {
570   GtkTreePath *path ;
571
572   /*
573     We do this with a linear search through the model --- hardly
574     efficient, but the list is short ... */
575   GtkTreeIter iter;
576
577   GtkTreeModel * model  = gtk_tree_view_get_model (treeview);
578
579   gboolean success;
580   for (success = gtk_tree_model_get_iter_first (model, &iter);
581        success;
582        success = gtk_tree_model_iter_next (model, &iter))
583     {
584       const struct fmt_spec *spec;
585
586       GValue value = {0};
587
588       gtk_tree_model_get_value (model, &iter, 1, &value);
589
590       spec = g_value_get_pointer (&value);
591
592       if ( 0 == memcmp (spec, fmt, sizeof (struct fmt_spec)))
593         {
594           break;
595         }
596     }
597
598   path = gtk_tree_model_get_path (model, &iter);
599   if ( path )
600     {
601       gtk_tree_view_set_cursor (treeview, path, 0, 0);
602       gtk_tree_path_free (path);
603     }
604   else
605     {
606       char str[FMT_STRING_LEN_MAX + 1];
607       g_warning ("Unusual date format: %s\n", fmt_to_string (fmt, str));
608     }
609 }
610
611
612 /* Set the TREEVIEW list cursor to the item described by FMT_TYPE */
613 static void
614 select_treeview_from_format_type (GtkTreeView *treeview,
615                                  const int fmt_type)
616 {
617   GtkTreePath *path ;
618
619  /*
620     We do this with a linear search through the model --- hardly
621     efficient, but the list is short ... */
622   GtkTreeIter iter;
623
624   GtkTreeModel * model  = gtk_tree_view_get_model (treeview);
625
626   gboolean success;
627   for (success = gtk_tree_model_get_iter_first (model, &iter);
628        success;
629        success = gtk_tree_model_iter_next (model, &iter))
630     {
631       int spec ;
632
633       GValue value = {0};
634
635       gtk_tree_model_get_value (model, &iter, 1, &value);
636
637       spec = * ((int *) g_value_get_pointer (&value));
638
639       if ( spec == fmt_type)
640         break;
641     }
642
643   path = gtk_tree_model_get_path (model, &iter);
644   if ( path )
645     {
646       gtk_tree_view_set_cursor (treeview, path, 0, 0);
647       gtk_tree_path_free (path);
648     }
649   else
650     g_warning ("Unknown custom type  %d\n", fmt_type);
651
652 }
653
654 /* Set up the state of the dialog box to match the variable VAR */
655 static void
656 var_type_dialog_set_state (struct var_type_dialog *dialog)
657 {
658   const struct fmt_spec *format ;
659   GString *str = g_string_new ("");
660
661   g_assert (dialog);
662   g_assert (dialog->pv);
663
664   /* Populate width and decimals */
665   format = var_get_print_format (dialog->pv);
666
667   g_string_printf (str, "%d", format->d);
668
669   gtk_entry_set_text (GTK_ENTRY (dialog->entry_decimals),
670                      str->str);
671
672   g_string_printf (str, "%d", format->w);
673
674   gtk_entry_set_text (GTK_ENTRY (dialog->entry_width),
675                      str->str);
676
677   g_string_free (str, TRUE);
678
679   /* Populate the radio button states */
680   switch (format->type)
681     {
682     case FMT_F:
683       var_type_dialog_set_active_button (dialog, BUTTON_NUMERIC);
684       gtk_widget_show_all (dialog->width_decimals);
685       break;
686     case FMT_A:
687       var_type_dialog_set_active_button (dialog, BUTTON_STRING);
688       gtk_widget_hide (dialog->label_decimals);
689       gtk_widget_hide (dialog->entry_decimals);
690       break;
691     case FMT_COMMA:
692       var_type_dialog_set_active_button (dialog, BUTTON_COMMA);
693       gtk_widget_show_all (dialog->width_decimals);
694       break;
695     case FMT_DOT:
696       var_type_dialog_set_active_button (dialog, BUTTON_DOT);
697       gtk_widget_show_all (dialog->width_decimals);
698       break;
699     case FMT_DOLLAR:
700       var_type_dialog_set_active_button (dialog, BUTTON_DOLLAR);
701       gtk_widget_show_all (dialog->width_decimals);
702
703       select_treeview_from_format (dialog->dollar_treeview, format);
704       break;
705     case FMT_DATE:
706     case FMT_EDATE:
707     case FMT_SDATE:
708     case FMT_ADATE:
709     case FMT_JDATE:
710     case FMT_QYR:
711     case FMT_MOYR:
712     case FMT_WKYR:
713     case FMT_DATETIME:
714     case FMT_TIME:
715     case FMT_DTIME:
716     case FMT_WKDAY:
717     case FMT_MONTH:
718       var_type_dialog_set_active_button (dialog, BUTTON_DATE);
719       gtk_widget_hide (dialog->width_decimals);
720       gtk_widget_show (dialog->date_format_list);
721       select_treeview_from_format (dialog->date_format_treeview, format);
722       break;
723     case FMT_CCA:
724     case FMT_CCB:
725     case FMT_CCC:
726     case FMT_CCD:
727     case FMT_CCE:
728       var_type_dialog_set_active_button (dialog, BUTTON_CUSTOM);
729       select_treeview_from_format_type (dialog->custom_treeview,
730                                        format->type);
731       gtk_widget_show_all (dialog->width_decimals);
732       break;
733     default:
734       gtk_widget_show_all (dialog->width_decimals);
735       break;
736     }
737 }
738
739
740 /* Popup the dialog box */
741 void
742 var_type_dialog_show (struct var_type_dialog *dialog)
743 {
744   var_type_dialog_set_state (dialog);
745
746   gtk_widget_show (dialog->window);
747 }
748
749 /* Fills F with an output format specification with type TYPE, width
750    W, and D decimals. Iff it's a valid format, then return true.
751 */
752 static bool
753 make_output_format_try (struct fmt_spec *f, int type, int w, int d)
754 {
755   f->type = type;
756   f->w = w;
757   f->d = d;
758   return fmt_check_output (f);
759 }
760
761
762
763
764 /* Callbacks for the Variable Type Dialog Box */
765
766 /* Callback for when the var type dialog is closed using the OK button.
767    It sets the appropriate variable accordingly. */
768 static gint
769 on_var_type_ok_clicked (GtkWidget *w, gpointer data)
770 {
771   struct var_type_dialog *dialog = data;
772
773   g_assert (dialog);
774   g_assert (dialog->pv);
775
776   {
777     gint width = atoi (gtk_entry_get_text
778                       (GTK_ENTRY (dialog->entry_width)));
779
780     gint decimals = atoi (gtk_entry_get_text
781                          (GTK_ENTRY (dialog->entry_decimals)));
782
783     gint new_width = 0;
784     bool result = false;
785     struct fmt_spec spec;
786     switch (dialog->active_button)
787       {
788       case BUTTON_STRING:
789         new_width = width;
790         result = make_output_format_try (&spec, FMT_A, width, 0);
791         break;
792       case BUTTON_NUMERIC:
793         result = make_output_format_try (&spec, FMT_F, width, decimals);
794         break;
795       case BUTTON_COMMA:
796         result = make_output_format_try (&spec, FMT_COMMA, width, decimals);
797         break;
798       case BUTTON_DOT:
799         result = make_output_format_try (&spec, FMT_DOT, width, decimals);
800         break;
801       case BUTTON_SCIENTIFIC:
802         result = make_output_format_try (&spec, FMT_E, width, decimals);
803         break;
804       case BUTTON_DATE:
805       case BUTTON_CUSTOM:
806         if  (! fmt_check_output (&dialog->fmt_l))
807           g_critical ("Invalid variable format");
808         else
809           result = memcpy (&spec, &dialog->fmt_l, sizeof (struct fmt_spec));
810         break;
811       case BUTTON_DOLLAR:
812         result = make_output_format_try (&spec, FMT_DOLLAR, width, decimals);
813         break;
814       default:
815         g_critical ("Unknown variable type: %d", dialog->active_button) ;
816         result = false;
817         break;
818       }
819
820     if ( result == true )
821       {
822         var_set_width (dialog->pv, new_width);
823         var_set_both_formats (dialog->pv, &spec);
824       }
825
826   }
827   gtk_widget_hide (dialog->window);
828
829   return FALSE;
830 }
831
832
833
834 static gint
835 hide_dialog (GtkWidget *w,  gpointer data)
836 {
837   struct var_type_dialog *dialog = data;
838
839   gtk_widget_hide (dialog->window);
840
841   return FALSE;
842 }
843