Remove unused property from var-sheet
[pspp-builds.git] / src / ui / gui / psppire-var-store.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 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 #include <config.h>
18 #include <string.h>
19 #include <stdlib.h>
20 #include <gettext.h>
21 #define _(msgid) gettext (msgid)
22 #define N_(msgid) msgid
23
24
25
26 #include <gobject/gvaluecollector.h>
27
28 #include <gtksheet/gsheetmodel.h>
29
30 #include "psppire-var-store.h"
31 #include "helper.h"
32
33 #include <data/dictionary.h>
34 #include <data/variable.h>
35 #include <data/format.h>
36 #include <data/missing-values.h>
37
38 #include "val-labs-dialog.h"
39 #include "missing-val-dialog.h"
40 #include <data/value-labels.h>
41
42 #include "var-display.h"
43
44 enum
45   {
46     PROP_0,
47     PSPPIRE_VAR_STORE_FORMAT_TYPE
48   };
49
50 static void         psppire_var_store_init            (PsppireVarStore      *var_store);
51 static void         psppire_var_store_class_init      (PsppireVarStoreClass *class);
52 static void         psppire_var_store_sheet_model_init (GSheetModelIface *iface);
53 static void         psppire_var_store_finalize        (GObject           *object);
54
55
56 gchar * missing_values_to_string (const struct variable *pv, GError **err);
57
58
59 static gchar *psppire_var_store_get_string (const GSheetModel *sheet_model, glong row, glong column);
60
61 static gboolean  psppire_var_store_clear (GSheetModel *model,  glong row, glong col);
62
63
64 static gboolean psppire_var_store_set_string (GSheetModel *model,
65                                           const gchar *text, glong row, glong column);
66
67 static glong psppire_var_store_get_row_count (const GSheetModel * model);
68 static glong psppire_var_store_get_column_count (const GSheetModel * model);
69
70 static gchar *text_for_column (const struct variable *pv, gint c, GError **err);
71
72
73 static GObjectClass *parent_class = NULL;
74
75 GType
76 psppire_var_store_format_type_get_type (void)
77 {
78   static GType etype = 0;
79   if (etype == 0)
80     {
81       static const GEnumValue values[] =
82         {
83           { PSPPIRE_VAR_STORE_INPUT_FORMATS,
84             "PSPPIRE_VAR_STORE_INPUT_FORMATS",
85             "input" },
86           { PSPPIRE_VAR_STORE_OUTPUT_FORMATS,
87             "PSPPIRE_VAR_STORE_OUTPUT_FORMATS",
88             "output" },
89           { 0, NULL, NULL }
90         };
91
92       etype = g_enum_register_static
93         (g_intern_static_string ("PsppireVarStoreFormatType"), values);
94
95     }
96   return etype;
97 }
98
99 GType
100 psppire_var_store_get_type (void)
101 {
102   static GType var_store_type = 0;
103
104   if (!var_store_type)
105     {
106       static const GTypeInfo var_store_info =
107       {
108         sizeof (PsppireVarStoreClass),
109         NULL,           /* base_init */
110         NULL,           /* base_finalize */
111         (GClassInitFunc) psppire_var_store_class_init,
112         NULL,           /* class_finalize */
113         NULL,           /* class_data */
114         sizeof (PsppireVarStore),
115         0,
116         (GInstanceInitFunc) psppire_var_store_init,
117       };
118
119       static const GInterfaceInfo sheet_model_info =
120       {
121         (GInterfaceInitFunc) psppire_var_store_sheet_model_init,
122         NULL,
123         NULL
124       };
125
126       var_store_type = g_type_register_static (G_TYPE_OBJECT, "PsppireVarStore", &var_store_info, 0);
127
128       g_type_add_interface_static (var_store_type,
129                                    G_TYPE_SHEET_MODEL,
130                                    &sheet_model_info);
131     }
132
133   return var_store_type;
134 }
135
136 static void
137 psppire_var_store_set_property (GObject      *object,
138                                 guint         property_id,
139                                 const GValue *value,
140                                 GParamSpec   *pspec)
141 {
142   PsppireVarStore *self = (PsppireVarStore *) object;
143
144   switch (property_id)
145     {
146     case PSPPIRE_VAR_STORE_FORMAT_TYPE:
147       self->format_type = g_value_get_enum (value);
148       break;
149
150     default:
151       G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
152       break;
153     }
154 }
155
156 static void
157 psppire_var_store_get_property (GObject      *object,
158                         guint         property_id,
159                         GValue       *value,
160                         GParamSpec   *pspec)
161 {
162   PsppireVarStore *self = (PsppireVarStore *) object;
163
164   switch (property_id)
165     {
166     case PSPPIRE_VAR_STORE_FORMAT_TYPE:
167       g_value_set_enum (value, self->format_type);
168       break;
169
170     default:
171       G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
172       break;
173     }
174 }
175
176
177 static void
178 psppire_var_store_class_init (PsppireVarStoreClass *class)
179 {
180   GObjectClass *object_class;
181   GParamSpec *pspec;
182
183   parent_class = g_type_class_peek_parent (class);
184   object_class = (GObjectClass*) class;
185
186   object_class->finalize = psppire_var_store_finalize;
187   object_class->set_property = psppire_var_store_set_property;
188   object_class->get_property = psppire_var_store_get_property;
189
190   pspec = g_param_spec_enum ("format-type",
191                              "Variable format type",
192                              ("Whether variables have input or output "
193                               "formats"),
194                              G_TYPE_PSPPIRE_VAR_STORE_FORMAT_TYPE,
195                              PSPPIRE_VAR_STORE_OUTPUT_FORMATS,
196                              G_PARAM_READWRITE);
197
198   g_object_class_install_property (object_class,
199                                    PSPPIRE_VAR_STORE_FORMAT_TYPE,
200                                    pspec);
201 }
202
203 #define DISABLED_COLOR "gray"
204
205 static void
206 psppire_var_store_init (PsppireVarStore *var_store)
207 {
208   if ( ! gdk_color_parse (DISABLED_COLOR, &var_store->disabled))
209         g_critical ("Could not parse color \"%s\"", DISABLED_COLOR);
210
211   var_store->dict = 0;
212   var_store->format_type = PSPPIRE_VAR_STORE_OUTPUT_FORMATS;
213 }
214
215 static gboolean
216 psppire_var_store_item_editable (PsppireVarStore *var_store, glong row, glong column)
217 {
218   const struct fmt_spec *write_spec ;
219
220   struct variable *pv = psppire_var_store_get_var (var_store, row);
221
222   if ( !pv )
223     return TRUE;
224
225   if ( var_is_alpha (pv) && column == PSPPIRE_VAR_STORE_COL_DECIMALS )
226     return FALSE;
227
228   write_spec = var_get_print_format (pv);
229
230   switch ( write_spec->type )
231     {
232     case FMT_DATE:
233     case FMT_EDATE:
234     case FMT_SDATE:
235     case FMT_ADATE:
236     case FMT_JDATE:
237     case FMT_QYR:
238     case FMT_MOYR:
239     case FMT_WKYR:
240     case FMT_DATETIME:
241     case FMT_TIME:
242     case FMT_DTIME:
243     case FMT_WKDAY:
244     case FMT_MONTH:
245       if ( column == PSPPIRE_VAR_STORE_COL_DECIMALS || column == PSPPIRE_VAR_STORE_COL_WIDTH)
246         return FALSE;
247       break;
248     default:
249       break;
250     }
251
252   return TRUE;
253 }
254
255
256 struct variable *
257 psppire_var_store_get_var (PsppireVarStore *store, glong row)
258 {
259   return psppire_dict_get_variable (store->dict, row);
260 }
261
262 static gboolean
263 psppire_var_store_is_editable (const GSheetModel *model, glong row, glong column)
264 {
265   PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
266   return psppire_var_store_item_editable (store, row, column);
267 }
268
269
270 static GdkColor *
271 psppire_var_store_get_foreground (const GSheetModel *model, glong row, glong column)
272 {
273   PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
274
275   if ( ! psppire_var_store_item_editable (store, row, column) )
276     return &store->disabled;
277
278   return NULL;
279 }
280
281
282 const PangoFontDescription *
283 psppire_var_store_get_font_desc (const GSheetModel *model,
284                               glong row, glong column)
285 {
286   PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
287
288   return store->font_desc;
289 }
290
291 static gchar *get_column_title (const GSheetModel *model, gint col);
292 static gchar *get_row_title (const GSheetModel *model, gint row);
293 static gboolean get_row_sensitivity (const GSheetModel *model, gint row);
294
295 static void
296 psppire_var_store_sheet_model_init (GSheetModelIface *iface)
297 {
298   iface->get_row_count = psppire_var_store_get_row_count;
299   iface->get_column_count = psppire_var_store_get_column_count;
300   iface->free_strings = TRUE;
301   iface->get_string = psppire_var_store_get_string;
302   iface->set_string = psppire_var_store_set_string;
303   iface->clear_datum = psppire_var_store_clear;
304   iface->is_editable = psppire_var_store_is_editable;
305   iface->get_foreground = psppire_var_store_get_foreground;
306   iface->get_background = NULL;
307   iface->get_font_desc = psppire_var_store_get_font_desc;
308   iface->get_cell_border = NULL;
309   iface->get_justification = NULL;
310
311   iface->get_column_title = get_column_title;
312
313   iface->get_row_title = get_row_title;
314   iface->get_row_sensitivity = get_row_sensitivity;
315 }
316
317 /**
318  * psppire_var_store_new:
319  * @dict: The dictionary for this var_store.
320  *
321  *
322  * Return value: a new #PsppireVarStore
323  **/
324 PsppireVarStore *
325 psppire_var_store_new (PsppireDict *dict)
326 {
327   PsppireVarStore *retval;
328
329   retval = g_object_new (GTK_TYPE_VAR_STORE, NULL);
330
331   psppire_var_store_set_dictionary (retval, dict);
332
333   return retval;
334 }
335
336 static void
337 var_change_callback (GtkWidget *w, gint n, gpointer data)
338 {
339   GSheetModel *model = G_SHEET_MODEL (data);
340
341   g_sheet_model_range_changed (model,
342                                  n, 0, n, PSPPIRE_VAR_STORE_n_COLS);
343 }
344
345
346 static void
347 var_delete_callback (GtkWidget *w, gint dict_idx, gint case_idx, gint val_cnt, gpointer data)
348 {
349   GSheetModel *model = G_SHEET_MODEL (data);
350
351   g_sheet_model_rows_deleted (model, dict_idx, 1);
352 }
353
354
355
356 static void
357 var_insert_callback (GtkWidget *w, glong row, gpointer data)
358 {
359   GSheetModel *model = G_SHEET_MODEL (data);
360
361   g_sheet_model_rows_inserted (model, row, 1);
362 }
363
364 static void
365 refresh (PsppireDict  *d, gpointer data)
366 {
367   PsppireVarStore *vs = data;
368
369   g_sheet_model_range_changed (G_SHEET_MODEL (vs), -1, -1, -1, -1);
370 }
371
372 /**
373  * psppire_var_store_replace_set_dictionary:
374  * @var_store: The variable store
375  * @dict: The dictionary to set
376  *
377  * If a dictionary is already associated with the var-store, then it will be
378  * destroyed.
379  **/
380 void
381 psppire_var_store_set_dictionary (PsppireVarStore *var_store, PsppireDict *dict)
382 {
383   if ( var_store->dict ) g_object_unref (var_store->dict);
384
385   var_store->dict = dict;
386
387   g_signal_connect (dict, "variable-changed", G_CALLBACK (var_change_callback),
388                    var_store);
389
390   g_signal_connect (dict, "variable-deleted", G_CALLBACK (var_delete_callback),
391                    var_store);
392
393   g_signal_connect (dict, "variable-inserted",
394                     G_CALLBACK (var_insert_callback), var_store);
395
396   g_signal_connect (dict, "backend-changed", G_CALLBACK (refresh),
397                     var_store);
398
399   /* The entire model has changed */
400   g_sheet_model_range_changed (G_SHEET_MODEL (var_store), -1, -1, -1, -1);
401 }
402
403 static void
404 psppire_var_store_finalize (GObject *object)
405 {
406   /* must chain up */
407   (* parent_class->finalize) (object);
408 }
409
410 static gchar *
411 psppire_var_store_get_string (const GSheetModel *model, glong row, glong column)
412 {
413   PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
414
415   struct variable *pv;
416
417   if ( row >= psppire_dict_get_var_cnt (store->dict))
418     return 0;
419
420   pv = psppire_dict_get_variable (store->dict, row);
421
422   return text_for_column (pv, column, 0);
423 }
424
425
426 /* Clears that part of the variable store, if possible, which corresponds
427    to ROW, COL.
428    Returns true if anything was updated, false otherwise.
429 */
430 static gboolean
431 psppire_var_store_clear (GSheetModel *model,  glong row, glong col)
432 {
433   struct variable *pv ;
434
435   PsppireVarStore *var_store = PSPPIRE_VAR_STORE (model);
436
437   if ( row >= psppire_dict_get_var_cnt (var_store->dict))
438       return FALSE;
439
440   pv = psppire_var_store_get_var (var_store, row);
441
442   if ( !pv )
443     return FALSE;
444
445   switch (col)
446     {
447     case PSPPIRE_VAR_STORE_COL_LABEL:
448       var_set_label (pv, 0);
449       return TRUE;
450       break;
451     }
452
453   return FALSE;
454 }
455
456 /* Attempts to update that part of the variable store which corresponds
457    to ROW, COL with  the value TEXT.
458    Returns true if anything was updated, false otherwise.
459 */
460 static gboolean
461 psppire_var_store_set_string (GSheetModel *model,
462                           const gchar *text, glong row, glong col)
463 {
464   struct variable *pv ;
465
466   PsppireVarStore *var_store = PSPPIRE_VAR_STORE (model);
467
468   if ( row >= psppire_dict_get_var_cnt (var_store->dict))
469       return FALSE;
470
471   pv = psppire_var_store_get_var (var_store, row);
472
473   if ( !pv )
474     return FALSE;
475
476   switch (col)
477     {
478     case PSPPIRE_VAR_STORE_COL_NAME:
479       return psppire_dict_rename_var (var_store->dict, pv, text);
480       break;
481     case PSPPIRE_VAR_STORE_COL_COLUMNS:
482       if ( ! text) return FALSE;
483       var_set_display_width (pv, atoi (text));
484       return TRUE;
485       break;
486     case PSPPIRE_VAR_STORE_COL_WIDTH:
487       {
488         int width = atoi (text);
489         if ( ! text) return FALSE;
490         if ( var_is_alpha (pv))
491             var_set_width (pv, width);
492         else
493           {
494             bool for_input
495               = var_store->format_type == PSPPIRE_VAR_STORE_INPUT_FORMATS;
496             struct fmt_spec fmt ;
497             fmt = *var_get_write_format (pv);
498             if ( width < fmt_min_width (fmt.type, for_input)
499                  ||
500                  width > fmt_max_width (fmt.type, for_input))
501               return FALSE;
502
503             fmt.w = width;
504             fmt.d = MIN (fmt_max_decimals (fmt.type, width, for_input), fmt.d);
505
506             var_set_both_formats (pv, &fmt);
507           }
508
509         return TRUE;
510       }
511       break;
512     case PSPPIRE_VAR_STORE_COL_DECIMALS:
513       {
514         bool for_input
515           = var_store->format_type == PSPPIRE_VAR_STORE_INPUT_FORMATS;
516         int decimals;
517         struct fmt_spec fmt;
518         if ( ! text) return FALSE;
519         decimals = atoi (text);
520         fmt = *var_get_write_format (pv);
521         if ( decimals >
522              fmt_max_decimals (fmt.type,
523                                fmt.w,
524                                for_input
525                                ))
526           return FALSE;
527
528         fmt.d = decimals;
529         var_set_both_formats (pv, &fmt);
530         return TRUE;
531       }
532       break;
533     case PSPPIRE_VAR_STORE_COL_LABEL:
534       var_set_label (pv, text);
535       return TRUE;
536       break;
537     case PSPPIRE_VAR_STORE_COL_TYPE:
538     case PSPPIRE_VAR_STORE_COL_VALUES:
539     case PSPPIRE_VAR_STORE_COL_MISSING:
540     case PSPPIRE_VAR_STORE_COL_ALIGN:
541     case PSPPIRE_VAR_STORE_COL_MEASURE:
542       /* These can be modified only by their respective dialog boxes */
543       return FALSE;
544       break;
545     default:
546       g_assert_not_reached ();
547       return FALSE;
548     }
549
550   return TRUE;
551 }
552
553
554 const static gchar none[] = N_("None");
555
556 static  gchar *
557 text_for_column (const struct variable *pv, gint c, GError **err)
558 {
559   static const gchar *const type_label[] =
560     {
561       N_("Numeric"),
562       N_("Comma"),
563       N_("Dot"),
564       N_("Scientific"),
565       N_("Date"),
566       N_("Dollar"),
567       N_("Custom"),
568       N_("String")
569     };
570   enum {VT_NUMERIC, VT_COMMA, VT_DOT, VT_SCIENTIFIC, VT_DATE, VT_DOLLAR,
571         VT_CUSTOM, VT_STRING};
572
573   const struct fmt_spec *write_spec = var_get_write_format (pv);
574
575   switch (c)
576     {
577     case PSPPIRE_VAR_STORE_COL_NAME:
578       return pspp_locale_to_utf8 ( var_get_name (pv), -1, err);
579       break;
580     case PSPPIRE_VAR_STORE_COL_TYPE:
581       {
582         switch ( write_spec->type )
583           {
584           case FMT_F:
585             return g_locale_to_utf8 (gettext (type_label[VT_NUMERIC]), -1, 0, 0, err);
586             break;
587           case FMT_COMMA:
588             return g_locale_to_utf8 (gettext (type_label[VT_COMMA]), -1, 0, 0, err);
589             break;
590           case FMT_DOT:
591             return g_locale_to_utf8 (gettext (type_label[VT_DOT]), -1, 0, 0, err);
592             break;
593           case FMT_E:
594             return g_locale_to_utf8 (gettext (type_label[VT_SCIENTIFIC]), -1, 0, 0, err);
595             break;
596           case FMT_DATE:
597           case FMT_EDATE:
598           case FMT_SDATE:
599           case FMT_ADATE:
600           case FMT_JDATE:
601           case FMT_QYR:
602           case FMT_MOYR:
603           case FMT_WKYR:
604           case FMT_DATETIME:
605           case FMT_TIME:
606           case FMT_DTIME:
607           case FMT_WKDAY:
608           case FMT_MONTH:
609             return g_locale_to_utf8 (type_label[VT_DATE], -1, 0, 0, err);
610             break;
611           case FMT_DOLLAR:
612             return g_locale_to_utf8 (type_label[VT_DOLLAR], -1, 0, 0, err);
613             break;
614           case FMT_CCA:
615           case FMT_CCB:
616           case FMT_CCC:
617           case FMT_CCD:
618           case FMT_CCE:
619             return g_locale_to_utf8 (gettext (type_label[VT_CUSTOM]), -1, 0, 0, err);
620             break;
621           case FMT_A:
622             return g_locale_to_utf8 (gettext (type_label[VT_STRING]), -1, 0, 0, err);
623             break;
624           default:
625             {
626               char str[FMT_STRING_LEN_MAX + 1];
627               g_warning ("Unknown format: \"%s\"\n",
628                         fmt_to_string (write_spec, str));
629             }
630             break;
631           }
632       }
633       break;
634     case PSPPIRE_VAR_STORE_COL_WIDTH:
635       {
636         gchar *s;
637         GString *gstr = g_string_sized_new (10);
638         g_string_printf (gstr, _("%d"), write_spec->w);
639         s = g_locale_to_utf8 (gstr->str, gstr->len, 0, 0, err);
640         g_string_free (gstr, TRUE);
641         return s;
642       }
643       break;
644     case PSPPIRE_VAR_STORE_COL_DECIMALS:
645       {
646         gchar *s;
647         GString *gstr = g_string_sized_new (10);
648         g_string_printf (gstr, _("%d"), write_spec->d);
649         s = g_locale_to_utf8 (gstr->str, gstr->len, 0, 0, err);
650         g_string_free (gstr, TRUE);
651         return s;
652       }
653       break;
654     case PSPPIRE_VAR_STORE_COL_COLUMNS:
655       {
656         gchar *s;
657         GString *gstr = g_string_sized_new (10);
658         g_string_printf (gstr, _("%d"), var_get_display_width (pv));
659         s = g_locale_to_utf8 (gstr->str, gstr->len, 0, 0, err);
660         g_string_free (gstr, TRUE);
661         return s;
662       }
663       break;
664     case PSPPIRE_VAR_STORE_COL_LABEL:
665       return pspp_locale_to_utf8 (var_get_label (pv), -1, err);
666       break;
667
668     case PSPPIRE_VAR_STORE_COL_MISSING:
669       {
670         return missing_values_to_string (pv, err);
671       }
672       break;
673     case PSPPIRE_VAR_STORE_COL_VALUES:
674       {
675         if ( ! var_has_value_labels (pv))
676           return g_locale_to_utf8 (gettext (none), -1, 0, 0, err);
677         else
678           {
679             gchar *ss;
680             GString *gstr = g_string_sized_new (10);
681             const struct val_labs *vls = var_get_value_labels (pv);
682             struct val_labs_iterator *ip = 0;
683             struct val_lab *vl = val_labs_first_sorted (vls, &ip);
684
685             g_assert (vl);
686
687             {
688               gchar *const vstr = value_to_text (vl->value, *write_spec);
689
690               g_string_printf (gstr, "{%s,\"%s\"}_", vstr, vl->label);
691               g_free (vstr);
692             }
693
694             val_labs_done (&ip);
695
696             ss = pspp_locale_to_utf8 (gstr->str, gstr->len, err);
697             g_string_free (gstr, TRUE);
698             return ss;
699           }
700       }
701       break;
702     case PSPPIRE_VAR_STORE_COL_ALIGN:
703       {
704         const gint align = var_get_alignment (pv);
705
706         g_assert (align < n_ALIGNMENTS);
707         return g_locale_to_utf8 (gettext (alignments[align]), -1, 0, 0, err);
708       }
709       break;
710     case PSPPIRE_VAR_STORE_COL_MEASURE:
711       {
712         return measure_to_string (pv, err);
713       }
714       break;
715     }
716   return 0;
717 }
718
719
720
721 /* Return the number of variables */
722 gint
723 psppire_var_store_get_var_cnt (PsppireVarStore  *store)
724 {
725   return psppire_dict_get_var_cnt (store->dict);
726 }
727
728
729 void
730 psppire_var_store_set_font (PsppireVarStore *store, const PangoFontDescription *fd)
731 {
732   g_return_if_fail (store);
733   g_return_if_fail (PSPPIRE_IS_VAR_STORE (store));
734
735   store->font_desc = fd;
736
737   g_sheet_model_range_changed (G_SHEET_MODEL (store), -1, -1, -1, -1);
738 }
739
740
741 static glong
742 psppire_var_store_get_row_count (const GSheetModel * model)
743 {
744   gint rows = 0;
745   PsppireVarStore *vs = PSPPIRE_VAR_STORE (model);
746
747   if (vs->dict)
748     rows =  psppire_dict_get_var_cnt (vs->dict);
749
750   return rows ;
751 }
752
753 static glong
754 psppire_var_store_get_column_count (const GSheetModel * model)
755 {
756   return PSPPIRE_VAR_STORE_n_COLS ;
757 }
758
759 \f
760
761 /* Row related funcs */
762
763
764 static gboolean
765 get_row_sensitivity (const GSheetModel *model, gint row)
766 {
767   PsppireVarStore *vs = PSPPIRE_VAR_STORE (model);
768
769   if ( ! vs->dict)
770     return FALSE;
771
772   return  row < psppire_dict_get_var_cnt (vs->dict);
773 }
774
775
776 static gchar *
777 get_row_title (const GSheetModel *model, gint unit)
778 {
779   return g_strdup_printf (_("%d"), unit + 1);
780 }
781
782
783 \f
784
785 static const gchar *column_titles[] = {
786   N_("Name"),
787   N_("Type"),
788   N_("Width"),
789   N_("Decimals"),
790   N_("Label"),
791   N_("Values"),
792   N_("Missing"),
793   N_("Columns"),
794   N_("Align"),
795   N_("Measure"),
796 };
797
798
799 static gchar *
800 get_column_title (const GSheetModel *model, gint col)
801 {
802   if ( col >= 10)
803     return NULL;
804   return g_strdup (gettext (column_titles[col]));
805 }