Fixed bug reporting the significance of paired value t-test.
[pspp-builds.git] / src / ui / gui / psppire-var-sheet.c
1
2 /* PSPPIRE - a graphical user interface for PSPP.
3    Copyright (C) 2008 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>. */
17
18 #include <config.h>
19 #include "psppire-var-sheet.h"
20
21 #include <glade/glade.h>
22 #include "helper.h"
23 #include <gtksheet/gsheet-hetero-column.h>
24 #include "customentry.h"
25 #include <data/variable.h>
26 #include "psppire-var-store.h"
27
28 #include <gettext.h>
29 #define _(msgid) gettext (msgid)
30 #define N_(msgid) msgid
31
32
33 static void psppire_var_sheet_class_init  (PsppireVarSheetClass *klass);
34 static void psppire_var_sheet_init        (PsppireVarSheet      *vs);
35
36 enum 
37   {
38     PSPPIRE_VAR_SHEET_MAY_CREATE_VARS = 1
39   };
40
41 GType
42 psppire_var_sheet_get_type (void)
43 {
44   static GType vs_type = 0;
45
46   if (!vs_type)
47     {
48       static const GTypeInfo vs_info =
49       {
50         sizeof (PsppireVarSheetClass),
51         NULL, /* base_init */
52         NULL, /* base_finalize */
53         (GClassInitFunc) psppire_var_sheet_class_init,
54         NULL, /* class_finalize */
55         NULL, /* class_data */
56         sizeof (PsppireVarSheet),
57         0,
58         (GInstanceInitFunc) psppire_var_sheet_init,
59       };
60
61       vs_type = g_type_register_static (GTK_TYPE_SHEET, "PsppireVarSheet",
62                                         &vs_info, 0);
63     }
64
65   return vs_type;
66 }
67
68 static GObjectClass * parent_class = NULL;
69
70 static void
71 psppire_var_sheet_dispose (GObject *obj)
72 {
73   PsppireVarSheet *vs = (PsppireVarSheet *)obj;
74
75   if (vs->dispose_has_run)
76     return;
77
78   /* Make sure dispose does not run twice. */
79   vs->dispose_has_run = TRUE;
80
81   /* Chain up to the parent class */
82   G_OBJECT_CLASS (parent_class)->dispose (obj);
83 }
84
85 static void
86 psppire_var_sheet_finalize (GObject *obj)
87 {
88    /* Chain up to the parent class */
89    G_OBJECT_CLASS (parent_class)->finalize (obj);
90 }
91
92
93 struct column_parameters
94 {
95   gchar label[20];
96   gint width ;
97 };
98
99 static const struct column_parameters column_def[] = {
100   { N_("Name"),    80},
101   { N_("Type"),    100},
102   { N_("Width"),   57},
103   { N_("Decimals"),91},
104   { N_("Label"),   95},
105   { N_("Values"),  103},
106   { N_("Missing"), 95},
107   { N_("Columns"), 80},
108   { N_("Align"),   69},
109   { N_("Measure"), 99},
110 };
111
112
113 #define n_ALIGNMENTS 3
114
115 const gchar *const alignments[n_ALIGNMENTS + 1]={
116   N_("Left"),
117   N_("Right"),
118   N_("Center"),
119   0
120 };
121
122 const gchar *const measures[n_MEASURES + 1]={
123   N_("Nominal"),
124   N_("Ordinal"),
125   N_("Scale"),
126   0
127 };
128
129
130
131 /* Create a list store from an array of strings */
132 static GtkListStore *
133 create_label_list (const gchar *const *labels)
134 {
135   const gchar *s;
136   gint i = 0;
137   GtkTreeIter iter;
138
139   GtkListStore *list_store;
140   list_store = gtk_list_store_new (1, G_TYPE_STRING);
141
142
143   while ( (s = labels[i++]))
144     {
145       gtk_list_store_append (list_store, &iter);
146       gtk_list_store_set (list_store, &iter,
147                           0, gettext (s),
148                           -1);
149     }
150
151   return list_store;
152 }
153
154
155 static void
156 psppire_var_sheet_set_property (GObject      *object,
157                                 guint         property_id,
158                                 const GValue *value,
159                                 GParamSpec   *pspec)
160 {
161   PsppireVarSheet *self = (PsppireVarSheet *) object;
162
163   switch (property_id)
164     {
165     case PSPPIRE_VAR_SHEET_MAY_CREATE_VARS:
166       self->may_create_vars = g_value_get_boolean (value);
167       break;
168
169     default:
170       G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
171       break;
172     }
173 }
174
175 static void
176 psppire_var_sheet_get_property (GObject      *object,
177                                 guint         property_id,
178                                 GValue       *value,
179                                 GParamSpec   *pspec)
180 {
181   PsppireVarSheet *self = (PsppireVarSheet *) object;
182
183   switch (property_id)
184     {
185     case PSPPIRE_VAR_SHEET_MAY_CREATE_VARS:
186       g_value_set_boolean (value, self->may_create_vars);
187       break;
188
189     default:
190       G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
191       break;
192     }
193 }
194
195
196
197 static void
198 psppire_var_sheet_class_init (PsppireVarSheetClass *klass)
199 {
200   GObjectClass *object_class = G_OBJECT_CLASS (klass);
201   GParamSpec *pspec;
202
203   parent_class = g_type_class_peek_parent (klass);
204
205   object_class->dispose = psppire_var_sheet_dispose;
206   object_class->finalize = psppire_var_sheet_finalize;
207   object_class->set_property = psppire_var_sheet_set_property;
208   object_class->get_property = psppire_var_sheet_get_property;
209
210   pspec = g_param_spec_boolean ("may-create-vars",
211                                 "May create variables",
212                                 "Whether the user may create more variables",
213                                 TRUE,
214                                 G_PARAM_READWRITE);
215   g_object_class_install_property (object_class,
216                                    PSPPIRE_VAR_SHEET_MAY_CREATE_VARS,
217                                    pspec);
218
219   klass->measure_list = create_label_list (measures);
220   klass->alignment_list = create_label_list (alignments);
221 }
222
223
224
225 /* Callback for when the alignment combo box
226    item is selected */
227 static void
228 change_alignment (GtkComboBox *cb,
229                   struct variable *var)
230 {
231   gint active_item = gtk_combo_box_get_active (cb);
232
233   if ( active_item < 0 ) return ;
234
235   var_set_alignment (var, active_item);
236 }
237
238
239
240 /* Callback for when the measure combo box
241    item is selected */
242 static void
243 change_measure (GtkComboBox *cb,
244                 struct variable *var)
245 {
246   gint active_item = gtk_combo_box_get_active (cb);
247
248   if ( active_item < 0 ) return ;
249
250   var_set_measure (var, active_item);
251 }
252
253
254
255 static gboolean
256 traverse_cell_callback (GtkSheet *sheet,
257                         gint row, gint column,
258                         gint *new_row, gint *new_column
259                         )
260 {
261   PsppireVarSheet *var_sheet = PSPPIRE_VAR_SHEET (sheet);
262   PsppireVarStore *var_store = PSPPIRE_VAR_STORE (gtk_sheet_get_model (sheet));
263
264   gint n_vars = psppire_var_store_get_var_cnt (var_store);
265
266   if (*new_row >= n_vars && !var_sheet->may_create_vars)
267     return FALSE;
268
269   if ( row == n_vars && *new_row >= n_vars)
270     {
271       GtkEntry *entry = GTK_ENTRY (gtk_sheet_get_entry (sheet));
272
273       const gchar *name = gtk_entry_get_text (entry);
274
275       if (! psppire_dict_check_name (var_store->dict, name, TRUE))
276         return FALSE;
277
278       psppire_dict_insert_variable (var_store->dict, row, name);
279
280       return TRUE;
281     }
282
283   /* If the destination cell is outside the current  variables, then
284      automatically create variables for the new rows.
285   */
286   if ( ((*new_row > n_vars) ||
287         (*new_row == n_vars && *new_column != PSPPIRE_VAR_STORE_COL_NAME)) )
288     {
289       gint i;
290       for ( i = n_vars ; i <= *new_row; ++i )
291         psppire_dict_insert_variable (var_store->dict, i, NULL);
292     }
293
294   return TRUE;
295 }
296
297
298
299
300 /*
301    Callback whenever the pointer leaves a cell on the var sheet.
302 */
303 static gboolean
304 var_sheet_cell_entry_leave (GtkSheet * sheet, gint row, gint column,
305                             gpointer data)
306 {
307   gtk_sheet_change_entry (sheet, GTK_TYPE_ENTRY);
308   return TRUE;
309 }
310
311
312 /*
313    Callback whenever the pointer enters a cell on the var sheet.
314 */
315 static gboolean
316 var_sheet_cell_entry_enter (PsppireVarSheet *vs, gint row, gint column,
317                             gpointer data)
318 {
319   GtkSheetCellAttr attributes;
320   PsppireVarStore *var_store ;
321   PsppireVarSheetClass *vs_class =
322     PSPPIRE_VAR_SHEET_CLASS(G_OBJECT_GET_CLASS (vs));
323
324   struct variable *var ;
325   GtkSheet *sheet = GTK_SHEET (vs);
326
327   g_return_val_if_fail (sheet != NULL, FALSE);
328
329   var_store = PSPPIRE_VAR_STORE (gtk_sheet_get_model (sheet));
330
331   g_assert (var_store);
332
333   if ( row >= psppire_var_store_get_var_cnt (var_store))
334     return TRUE;
335
336   gtk_sheet_get_attributes (sheet, row, column, &attributes);
337
338
339   var = psppire_var_store_get_var (var_store, row);
340
341   switch (column)
342     {
343     case PSPPIRE_VAR_STORE_COL_ALIGN:
344       {
345         static GtkListStore *list_store = NULL;
346         GtkComboBoxEntry *cbe;
347         gtk_sheet_change_entry (sheet, GTK_TYPE_COMBO_BOX_ENTRY);
348         cbe =
349           GTK_COMBO_BOX_ENTRY (gtk_sheet_get_entry (sheet)->parent);
350
351
352         if ( ! list_store) list_store = create_label_list (alignments);
353
354         gtk_combo_box_set_model (GTK_COMBO_BOX (cbe),
355                                 GTK_TREE_MODEL (vs_class->alignment_list));
356
357         gtk_combo_box_entry_set_text_column (cbe, 0);
358
359         g_signal_connect (G_OBJECT (cbe),"changed",
360                          G_CALLBACK (change_alignment), var);
361       }
362       break;
363
364     case PSPPIRE_VAR_STORE_COL_MEASURE:
365       {
366         GtkComboBoxEntry *cbe;
367         gtk_sheet_change_entry (sheet, GTK_TYPE_COMBO_BOX_ENTRY);
368         cbe =
369           GTK_COMBO_BOX_ENTRY (gtk_sheet_get_entry (sheet)->parent);
370
371
372
373         gtk_combo_box_set_model (GTK_COMBO_BOX (cbe),
374                                 GTK_TREE_MODEL (vs_class->measure_list));
375
376         gtk_combo_box_entry_set_text_column (cbe, 0);
377
378         g_signal_connect (G_OBJECT (cbe),"changed",
379                           G_CALLBACK (change_measure), var);
380       }
381       break;
382
383     case PSPPIRE_VAR_STORE_COL_VALUES:
384       {
385         PsppireCustomEntry *customEntry;
386
387         gtk_sheet_change_entry (sheet, PSPPIRE_CUSTOM_ENTRY_TYPE);
388
389         customEntry =
390           PSPPIRE_CUSTOM_ENTRY (gtk_sheet_get_entry (sheet));
391
392         if ( var_is_long_string (var))
393           g_object_set (customEntry,
394                         "editable", FALSE,
395                         NULL);
396
397         val_labs_dialog_set_target_variable (vs->val_labs_dialog, var);
398
399         g_signal_connect_swapped (customEntry,
400                                   "clicked",
401                                   G_CALLBACK (val_labs_dialog_show),
402                                   vs->val_labs_dialog);
403       }
404       break;
405
406     case PSPPIRE_VAR_STORE_COL_MISSING:
407       {
408         PsppireCustomEntry *customEntry;
409
410         gtk_sheet_change_entry (sheet, PSPPIRE_CUSTOM_ENTRY_TYPE);
411
412         customEntry =
413           PSPPIRE_CUSTOM_ENTRY (gtk_sheet_get_entry (sheet));
414
415         if ( var_is_long_string (var))
416           g_object_set (customEntry,
417                         "editable", FALSE,
418                         NULL);
419
420
421         vs->missing_val_dialog->pv =
422           psppire_var_store_get_var (var_store, row);
423
424         g_signal_connect_swapped (customEntry,
425                                   "clicked",
426                                   G_CALLBACK (missing_val_dialog_show),
427                                   vs->missing_val_dialog);
428       }
429       break;
430
431     case PSPPIRE_VAR_STORE_COL_TYPE:
432       {
433         PsppireCustomEntry *customEntry;
434
435         gtk_sheet_change_entry (sheet, PSPPIRE_CUSTOM_ENTRY_TYPE);
436
437         customEntry =
438           PSPPIRE_CUSTOM_ENTRY (gtk_sheet_get_entry (sheet));
439
440
441         /* Popup the Variable Type dialog box */
442         vs->var_type_dialog->pv = var;
443
444         g_signal_connect_swapped (customEntry,
445                                  "clicked",
446                                  G_CALLBACK (var_type_dialog_show),
447                                   vs->var_type_dialog);
448       }
449       break;
450
451     case PSPPIRE_VAR_STORE_COL_WIDTH:
452     case PSPPIRE_VAR_STORE_COL_DECIMALS:
453     case PSPPIRE_VAR_STORE_COL_COLUMNS:
454       {
455         if ( attributes.is_editable)
456           {
457             gint r_min, r_max;
458
459             const gchar *s = gtk_sheet_cell_get_text (sheet, row, column);
460
461             if (s)
462               {
463                 GtkSpinButton *spinButton ;
464                 const gint current_value  = g_strtod (s, NULL);
465                 GtkObject *adj ;
466
467                 const struct fmt_spec *fmt = var_get_write_format (var);
468                 switch (column)
469                   {
470                   case PSPPIRE_VAR_STORE_COL_WIDTH:
471                     r_min = MAX (fmt->d + 1, fmt_min_output_width (fmt->type));
472                     r_max = fmt_max_output_width (fmt->type);
473                     break;
474                   case PSPPIRE_VAR_STORE_COL_DECIMALS:
475                     r_min = 0 ;
476                     r_max = fmt_max_output_decimals (fmt->type, fmt->w);
477                     break;
478                   case PSPPIRE_VAR_STORE_COL_COLUMNS:
479                     r_min = 1;
480                     r_max = 255 ; /* Is this a sensible value ? */
481                     break;
482                   default:
483                     g_assert_not_reached ();
484                   }
485
486                 adj = gtk_adjustment_new (current_value,
487                                          r_min, r_max,
488                                          1.0, 1.0, 1.0 /* steps */
489                                          );
490
491                 gtk_sheet_change_entry (sheet, GTK_TYPE_SPIN_BUTTON);
492
493                 spinButton =
494                   GTK_SPIN_BUTTON (gtk_sheet_get_entry (sheet));
495
496                 gtk_spin_button_set_adjustment (spinButton, GTK_ADJUSTMENT (adj));
497                 gtk_spin_button_set_digits (spinButton, 0);
498               }
499           }
500       }
501       break;
502
503     default:
504       gtk_sheet_change_entry (sheet, GTK_TYPE_ENTRY);
505       break;
506     }
507
508
509   return TRUE;
510 }
511
512
513
514
515 static void
516 psppire_var_sheet_init (PsppireVarSheet *vs)
517 {
518   gint i;
519   GObject *geo = g_sheet_hetero_column_new (75, PSPPIRE_VAR_STORE_n_COLS);
520   GladeXML *xml = XML_NEW ("data-editor.glade");
521
522   vs->val_labs_dialog = val_labs_dialog_create (xml);
523   vs->missing_val_dialog = missing_val_dialog_create (xml);
524   vs->var_type_dialog = var_type_dialog_create (xml);
525
526   g_object_unref (xml);
527
528   vs->dispose_has_run = FALSE;
529   vs->may_create_vars = TRUE;
530
531   for (i = 0 ; i < PSPPIRE_VAR_STORE_n_COLS ; ++i )
532     {
533       g_sheet_hetero_column_set_button_label (G_SHEET_HETERO_COLUMN (geo), i,
534                                               gettext (column_def[i].label));
535
536       g_sheet_hetero_column_set_width (G_SHEET_HETERO_COLUMN (geo), i,
537                                        column_def[i].width);
538     }
539
540   g_object_set (vs, "column-geometry", geo, NULL);
541
542
543   g_signal_connect (vs, "activate",
544                     G_CALLBACK (var_sheet_cell_entry_enter),
545                     NULL);
546
547   g_signal_connect (vs, "deactivate",
548                     G_CALLBACK (var_sheet_cell_entry_leave),
549                     NULL);
550
551   g_signal_connect (vs, "traverse",
552                     G_CALLBACK (traverse_cell_callback), NULL);
553 }
554
555
556 GtkWidget*
557 psppire_var_sheet_new (void)
558 {
559   return GTK_WIDGET (g_object_new (psppire_var_sheet_get_type (), NULL));
560 }