Unlimited the number of variables that the GUI can cope with.
[pspp-builds.git] / src / ui / gui / var-sheet.c
1 /* 
2    PSPPIRE --- A Graphical User Interface for PSPP
3    Copyright (C) 2004, 2005, 2006  Free Software Foundation
4    Written by John Darrington
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19    02110-1301, USA. */
20
21
22 /* This module creates the Variable Sheet used for inputing the
23    variables in the  dictonary */
24
25 #include <config.h>
26 #include <gettext.h>
27 #define _(msgid) gettext (msgid)
28 #define N_(msgid) msgid
29
30 #include <data/value-labels.h>
31
32 #include <glade/glade.h>
33 #include <gtk/gtk.h>
34
35 #include <stdlib.h>
36 #include <string.h>
37 #include <langinfo.h>
38
39 #include <data/value.h>
40
41 #include <gtksheet/gtksheet.h>
42 #include <gtksheet/gsheet-hetero-column.h>
43 #include <gtksheet/gsheet-uniform-row.h>
44
45 #include "psppire-var-store.h"
46 #include "helper.h"
47 #include "menu-actions.h"
48 #include "psppire-dict.h"
49 #include "psppire-variable.h"
50 #include "var-type-dialog.h"
51 #include "var-sheet.h"
52 #include "customentry.h"
53
54 #include "val-labs-dialog.h"
55 #include "missing-val-dialog.h"
56
57
58
59 static const gint n_initial_rows = 40;
60
61
62 extern GladeXML *xml;
63
64 struct column_parameters
65 {
66   gchar label[20];  
67   gint width ;
68 };
69
70 static const struct column_parameters column_def[] = {
71   { N_("Name"),    80},
72   { N_("Type"),    100},
73   { N_("Width"),   57}, 
74   { N_("Decimals"),91}, 
75   { N_("Label"),   95}, 
76   { N_("Values"),  103},
77   { N_("Missing"), 95}, 
78   { N_("Columns"), 80}, 
79   { N_("Align"),   69}, 
80   { N_("Measure"), 99}, 
81 };
82
83
84 static gboolean
85 click2row(GtkWidget *w, gint row, gpointer data)
86 {
87   gint current_row, current_column;
88   GtkWidget *data_sheet  = get_widget_assert(xml, "data_sheet");
89
90   select_sheet(PAGE_DATA_SHEET);
91
92   gtk_sheet_get_active_cell(GTK_SHEET(data_sheet), 
93                             &current_row, &current_column);
94
95   gtk_sheet_set_active_cell(GTK_SHEET(data_sheet), current_row, row);
96
97   return FALSE;
98 }
99
100
101
102 const gchar *alignments[n_ALIGNMENTS + 1]={
103   N_("Left"),
104   N_("Right"),
105   N_("Centre"),
106   0
107 };
108
109 const gchar *measures[n_MEASURES + 1]={
110   N_("Nominal"),
111   N_("Ordinal"),
112   N_("Scale"),
113   0
114 };
115
116 static GtkListStore *
117 create_label_list(const gchar **labels)
118 {
119   const gchar *s;
120   gint i = 0;
121   GtkTreeIter iter;
122
123   GtkListStore *list_store;
124   list_store = gtk_list_store_new (1, G_TYPE_STRING);
125
126
127   while ( (s = labels[i++]))
128     {
129       gtk_list_store_append (list_store, &iter);
130       gtk_list_store_set (list_store, &iter,
131                           0, gettext(s),
132                           -1);
133     }
134         
135   return list_store;
136 }
137
138 /* Callback for when the alignment combo box 
139    item is selected */
140 static void        
141 change_alignment(GtkComboBox *cb,
142     gpointer user_data)
143 {
144   struct PsppireVariable *pv = user_data;
145   gint active_item = gtk_combo_box_get_active(cb);
146
147   if ( active_item < 0 ) return ;
148
149   psppire_variable_set_alignment(pv, active_item);
150 }
151
152
153
154 /* Callback for when the measure combo box 
155    item is selected */
156 static void        
157 change_measure(GtkComboBox *cb,
158     gpointer user_data)
159 {
160   struct PsppireVariable *pv = user_data;
161   gint active_item = gtk_combo_box_get_active(cb);
162
163   if ( active_item < 0 ) return ;
164
165   psppire_variable_set_measure(pv, active_item);
166 }
167
168
169
170 static gboolean 
171 traverse_cell_callback (GtkSheet * sheet, 
172                         gint row, gint column, 
173                         gint *new_row, gint *new_column
174                         )
175 {
176   PsppireVarStore *var_store = PSPPIRE_VAR_STORE(gtk_sheet_get_model(sheet));
177
178   gint n_vars = psppire_var_store_get_var_cnt(var_store);
179
180   if ( row == n_vars && *new_row >= n_vars)
181     {
182       GtkEntry *entry = GTK_ENTRY(gtk_sheet_get_entry(sheet));
183
184       const gchar *name = gtk_entry_get_text(entry);
185
186       if (! psppire_dict_check_name(var_store->dict, name, TRUE))
187         return FALSE;
188       
189       psppire_dict_insert_variable(var_store->dict, row, name);
190
191       return TRUE;
192     }
193
194   /* If the destination cell is outside the current  variables, then
195      accept the destination only as the name column of the first blank row
196   */
197   if ( *new_row > n_vars) 
198     return FALSE;
199   
200   if ( *new_row >= n_vars && *new_column != COL_NAME) 
201     return FALSE;
202
203   return TRUE;
204 }
205
206
207 /* Callback whenever the cell on the var sheet is entered or left.
208    It sets the entry box type appropriately.
209 */
210 static gboolean 
211 var_sheet_cell_change_entry (GtkSheet * sheet, gint row, gint column, 
212                              gpointer leaving)
213 {
214   GtkSheetCellAttr attributes;
215   PsppireVarStore *var_store ;
216   struct PsppireVariable *pv ;
217
218   g_return_val_if_fail(sheet != NULL, FALSE);
219
220   var_store = PSPPIRE_VAR_STORE(gtk_sheet_get_model(sheet));
221
222   if ( row >= psppire_var_store_get_var_cnt(var_store))
223     return TRUE;
224
225   if ( leaving ) 
226     {
227       gtk_sheet_change_entry(sheet, GTK_TYPE_ENTRY);
228       return TRUE;
229     }
230
231
232   gtk_sheet_get_attributes(sheet, row, column, &attributes);
233
234   pv = psppire_var_store_get_variable(var_store, row);
235
236   switch (column)
237     {
238     case COL_ALIGN:
239       {
240         static GtkListStore *list_store = 0;
241         GtkComboBoxEntry *cbe;
242         gtk_sheet_change_entry(sheet, GTK_TYPE_COMBO_BOX_ENTRY);
243         cbe = 
244           GTK_COMBO_BOX_ENTRY(gtk_sheet_get_entry(sheet)->parent);
245
246
247         if ( ! list_store) list_store = create_label_list(alignments);
248
249         gtk_combo_box_set_model(GTK_COMBO_BOX(cbe), 
250                                 GTK_TREE_MODEL(list_store));
251
252         gtk_combo_box_entry_set_text_column (cbe, 0);
253
254
255         g_signal_connect(G_OBJECT(cbe),"changed", 
256                          G_CALLBACK(change_alignment), pv);
257       }
258       break;
259     case COL_MEASURE:
260       {
261         static GtkListStore *list_store = 0;
262         GtkComboBoxEntry *cbe;
263         gtk_sheet_change_entry(sheet, GTK_TYPE_COMBO_BOX_ENTRY);
264         cbe = 
265           GTK_COMBO_BOX_ENTRY(gtk_sheet_get_entry(sheet)->parent);
266
267
268         if ( ! list_store) list_store = create_label_list(measures);
269
270         gtk_combo_box_set_model(GTK_COMBO_BOX(cbe), 
271                                 GTK_TREE_MODEL(list_store));
272
273         gtk_combo_box_entry_set_text_column (cbe, 0);
274
275         g_signal_connect(G_OBJECT(cbe),"changed", 
276                          G_CALLBACK(change_measure), pv);
277       }
278       break;
279
280     case COL_VALUES:
281       {
282         static struct val_labs_dialog *val_labs_dialog = 0;
283
284         PsppireCustomEntry *customEntry;
285
286         gtk_sheet_change_entry(sheet, PSPPIRE_CUSTOM_ENTRY_TYPE);
287
288         customEntry = 
289           PSPPIRE_CUSTOM_ENTRY(gtk_sheet_get_entry(sheet));
290
291
292         if (!val_labs_dialog ) 
293             val_labs_dialog = val_labs_dialog_create(xml);
294
295         val_labs_dialog->pv = pv;
296
297         g_signal_connect_swapped(GTK_OBJECT(customEntry),
298                                  "clicked",
299                                  GTK_SIGNAL_FUNC(val_labs_dialog_show),
300                                  val_labs_dialog);
301       }
302       break;
303     case COL_MISSING:
304       {
305         static struct missing_val_dialog *missing_val_dialog = 0;
306         PsppireCustomEntry *customEntry;
307         
308         gtk_sheet_change_entry(sheet, PSPPIRE_CUSTOM_ENTRY_TYPE);
309
310         customEntry = 
311           PSPPIRE_CUSTOM_ENTRY(gtk_sheet_get_entry(sheet));
312
313         if (!missing_val_dialog ) 
314             missing_val_dialog = missing_val_dialog_create(xml);
315
316         missing_val_dialog->pv = psppire_var_store_get_variable(var_store, row);
317
318         g_signal_connect_swapped(GTK_OBJECT(customEntry),
319                                  "clicked",
320                                  GTK_SIGNAL_FUNC(missing_val_dialog_show),
321                                  missing_val_dialog);
322       }
323       break;
324
325     case COL_TYPE:
326       {
327         static struct var_type_dialog *var_type_dialog = 0;
328
329         PsppireCustomEntry *customEntry;
330
331         gtk_sheet_change_entry(sheet, PSPPIRE_CUSTOM_ENTRY_TYPE);
332
333         customEntry = 
334           PSPPIRE_CUSTOM_ENTRY(gtk_sheet_get_entry(sheet));
335
336
337         /* Popup the Variable Type dialog box */
338         if (!var_type_dialog ) 
339             var_type_dialog = var_type_dialog_create(xml);
340
341
342         var_type_dialog->pv = pv;
343
344         g_signal_connect_swapped(GTK_OBJECT(customEntry),
345                                  "clicked",
346                                  GTK_SIGNAL_FUNC(var_type_dialog_show),
347                                  var_type_dialog);
348       }
349       break;
350     case COL_WIDTH:
351     case COL_DECIMALS:
352     case COL_COLUMNS:
353       {
354         if ( attributes.is_editable) 
355           {
356             gint r_min, r_max;
357
358             const gchar *s = gtk_sheet_cell_get_text(sheet, row, column);
359
360             if (!s) 
361               return FALSE;
362
363             {
364               GtkSpinButton *spinButton ;
365               const gint current_value  = atoi(s);
366               GtkObject *adj ;
367
368               const struct fmt_spec *fmt = psppire_variable_get_write_spec(pv);
369               switch (column) 
370                 {
371                 case COL_WIDTH:
372                   r_min = fmt->d + 1;
373                   r_max = (psppire_variable_get_type(pv) == ALPHA) ? MAX_STRING : 40;
374                   break;
375                 case COL_DECIMALS:
376                   r_min = 0 ; 
377                   r_max = MIN(fmt->w - 1, 16);
378                   break;
379                 case COL_COLUMNS:
380                   r_min = 1;
381                   r_max = 255 ; /* Is this a sensible value ? */
382                   break;
383                 default:
384                   g_assert_not_reached();
385                 }
386
387               adj = gtk_adjustment_new(current_value,
388                                        r_min, r_max,
389                                        1.0, 1.0, 1.0 /* steps */
390                                        );
391
392               gtk_sheet_change_entry(sheet, GTK_TYPE_SPIN_BUTTON);
393
394               spinButton = 
395                 GTK_SPIN_BUTTON(gtk_sheet_get_entry(sheet));
396
397               gtk_spin_button_set_adjustment(spinButton, GTK_ADJUSTMENT(adj));
398               gtk_spin_button_set_digits(spinButton, 0);
399             }
400           }
401       }
402       break; 
403
404     default:
405       gtk_sheet_change_entry(sheet, GTK_TYPE_ENTRY);
406       break;
407     }
408
409   return TRUE;
410 }
411
412
413 extern PsppireVarStore *var_store;
414
415
416 /* Create the var sheet */
417 GtkWidget*
418 psppire_variable_sheet_create (gchar *widget_name, 
419                                gchar *string1, 
420                                gchar *string2,
421                                gint int1, gint int2)
422 {
423   gchar *codeset;
424   gint i;
425   GtkWidget *sheet;
426
427   GObject *geo = g_sheet_hetero_column_new(75, n_COLS);
428
429   sheet = gtk_sheet_new(G_SHEET_ROW(var_store),
430                         G_SHEET_COLUMN(geo), 
431                         "variable sheet", 0); 
432
433   g_signal_connect (GTK_OBJECT (sheet), "activate",
434                     GTK_SIGNAL_FUNC (var_sheet_cell_change_entry),
435                     0);
436
437   g_signal_connect (GTK_OBJECT (sheet), "deactivate",
438                     GTK_SIGNAL_FUNC (var_sheet_cell_change_entry),
439                     (void *) 1);
440
441   g_signal_connect (GTK_OBJECT (sheet), "traverse",
442                     GTK_SIGNAL_FUNC (traverse_cell_callback), 0);
443
444
445   g_signal_connect (GTK_OBJECT (sheet), "double-click-row",
446                     GTK_SIGNAL_FUNC (click2row),
447                     sheet);
448
449   /* Since this happens inside glade_xml_new, we must prevent strings from 
450    * being re-encoded twice */
451   codeset = bind_textdomain_codeset(PACKAGE, 0);
452   bind_textdomain_codeset(PACKAGE, nl_langinfo(CODESET));
453   for (i = 0 ; i < n_COLS ; ++i ) 
454     {
455       g_sheet_hetero_column_set_button_label(G_SHEET_HETERO_COLUMN(geo), i, 
456                         gettext(column_def[i].label));
457       
458       g_sheet_hetero_column_set_width(G_SHEET_HETERO_COLUMN(geo), i, 
459                                                column_def[i].width);
460     }
461   bind_textdomain_codeset(PACKAGE, codeset);
462
463   gtk_widget_show(sheet);
464
465   return sheet;
466 }
467
468