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