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