1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2006 Free Software Foundation
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.
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.
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/>. */
21 #define _(msgid) gettext (msgid)
22 #define N_(msgid) msgid
26 #include <gobject/gvaluecollector.h>
28 #include <gtksheet/gsheetmodel.h>
30 #include "psppire-var-store.h"
31 #include <gtksheet/gsheet-row-iface.h>
34 #include <data/dictionary.h>
35 #include <data/variable.h>
36 #include <data/format.h>
37 #include <data/missing-values.h>
39 #include "val-labs-dialog.h"
40 #include "missing-val-dialog.h"
41 #include <data/value-labels.h>
43 #include "var-display.h"
47 PSPPIRE_VAR_STORE_TRAILING_ROWS = 1,
48 PSPPIRE_VAR_STORE_FORMAT_TYPE
51 static void psppire_var_store_init (PsppireVarStore *var_store);
52 static void psppire_var_store_class_init (PsppireVarStoreClass *class);
53 static void psppire_var_store_sheet_model_init (GSheetModelIface *iface);
54 static void psppire_var_store_finalize (GObject *object);
57 gchar * missing_values_to_string (const struct variable *pv, GError **err);
60 static gchar *psppire_var_store_get_string (const GSheetModel *sheet_model, glong row, glong column);
62 static gboolean psppire_var_store_clear (GSheetModel *model, glong row, glong col);
65 static gboolean psppire_var_store_set_string (GSheetModel *model,
66 const gchar *text, glong row, glong column);
68 static glong psppire_var_store_get_row_count (const GSheetModel * model);
69 static glong psppire_var_store_get_column_count (const GSheetModel * model);
71 static gchar *text_for_column (const struct variable *pv, gint c, GError **err);
74 static void psppire_var_store_sheet_row_init (GSheetRowIface *iface);
78 static GObjectClass *parent_class = NULL;
81 psppire_var_store_format_type_get_type (void)
83 static GType etype = 0;
86 static const GEnumValue values[] =
88 { PSPPIRE_VAR_STORE_INPUT_FORMATS,
89 "PSPPIRE_VAR_STORE_INPUT_FORMATS",
91 { PSPPIRE_VAR_STORE_OUTPUT_FORMATS,
92 "PSPPIRE_VAR_STORE_OUTPUT_FORMATS",
97 etype = g_enum_register_static
98 (g_intern_static_string ("PsppireVarStoreFormatType"), values);
105 psppire_var_store_get_type (void)
107 static GType var_store_type = 0;
111 static const GTypeInfo var_store_info =
113 sizeof (PsppireVarStoreClass),
114 NULL, /* base_init */
115 NULL, /* base_finalize */
116 (GClassInitFunc) psppire_var_store_class_init,
117 NULL, /* class_finalize */
118 NULL, /* class_data */
119 sizeof (PsppireVarStore),
121 (GInstanceInitFunc) psppire_var_store_init,
124 static const GInterfaceInfo sheet_model_info =
126 (GInterfaceInitFunc) psppire_var_store_sheet_model_init,
131 static const GInterfaceInfo sheet_row_info =
133 (GInterfaceInitFunc) psppire_var_store_sheet_row_init,
138 var_store_type = g_type_register_static (G_TYPE_OBJECT, "PsppireVarStore", &var_store_info, 0);
140 g_type_add_interface_static (var_store_type,
144 g_type_add_interface_static (var_store_type,
151 return var_store_type;
155 psppire_var_store_set_property (GObject *object,
160 PsppireVarStore *self = (PsppireVarStore *) object;
164 case PSPPIRE_VAR_STORE_TRAILING_ROWS:
165 self->trailing_rows = g_value_get_int (value);
168 case PSPPIRE_VAR_STORE_FORMAT_TYPE:
169 self->format_type = g_value_get_enum (value);
173 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
179 psppire_var_store_get_property (GObject *object,
184 PsppireVarStore *self = (PsppireVarStore *) object;
188 case PSPPIRE_VAR_STORE_TRAILING_ROWS:
189 g_value_set_int (value, self->trailing_rows);
192 case PSPPIRE_VAR_STORE_FORMAT_TYPE:
193 g_value_set_enum (value, self->format_type);
197 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
204 psppire_var_store_class_init (PsppireVarStoreClass *class)
206 GObjectClass *object_class;
209 parent_class = g_type_class_peek_parent (class);
210 object_class = (GObjectClass*) class;
212 object_class->finalize = psppire_var_store_finalize;
213 object_class->set_property = psppire_var_store_set_property;
214 object_class->get_property = psppire_var_store_get_property;
216 /* The minimum value for trailing-rows is 1 to prevent the
217 var-store from ever having 0 rows, which breaks invariants
219 pspec = g_param_spec_int ("trailing-rows",
221 "Number of rows displayed after last variable",
222 1 /* minimum value */,
223 100 /* maximum value */,
224 40 /* default value */,
226 g_object_class_install_property (object_class,
227 PSPPIRE_VAR_STORE_TRAILING_ROWS,
230 pspec = g_param_spec_enum ("format-type",
231 "Variable format type",
232 ("Whether variables have input or output "
234 G_TYPE_PSPPIRE_VAR_STORE_FORMAT_TYPE,
235 PSPPIRE_VAR_STORE_OUTPUT_FORMATS,
237 g_object_class_install_property (object_class,
238 PSPPIRE_VAR_STORE_FORMAT_TYPE,
243 psppire_var_store_init (PsppireVarStore *var_store)
245 GdkColormap *colormap = gdk_colormap_get_system ();
247 g_assert (gdk_color_parse ("gray", &var_store->disabled));
249 gdk_colormap_alloc_color (colormap, &var_store->disabled, FALSE, TRUE);
252 var_store->trailing_rows = 40;
253 var_store->format_type = PSPPIRE_VAR_STORE_OUTPUT_FORMATS;
257 psppire_var_store_item_editable (PsppireVarStore *var_store, glong row, glong column)
259 const struct fmt_spec *write_spec ;
261 struct variable *pv = psppire_var_store_get_var (var_store, row);
266 if ( var_is_alpha (pv) && column == PSPPIRE_VAR_STORE_COL_DECIMALS )
269 write_spec = var_get_print_format (pv);
271 switch ( write_spec->type )
286 if ( column == PSPPIRE_VAR_STORE_COL_DECIMALS || column == PSPPIRE_VAR_STORE_COL_WIDTH)
298 psppire_var_store_get_var (PsppireVarStore *store, glong row)
300 return psppire_dict_get_variable (store->dict, row);
304 psppire_var_store_is_editable (const GSheetModel *model, glong row, glong column)
306 PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
307 return psppire_var_store_item_editable (store, row, column);
311 static const GdkColor *
312 psppire_var_store_get_foreground (const GSheetModel *model, glong row, glong column)
314 PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
316 if ( ! psppire_var_store_item_editable (store, row, column) )
317 return &store->disabled;
323 const PangoFontDescription *
324 psppire_var_store_get_font_desc (const GSheetModel *model,
325 glong row, glong column)
327 PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
329 return store->font_desc;
336 psppire_var_store_sheet_model_init (GSheetModelIface *iface)
338 iface->get_row_count = psppire_var_store_get_row_count;
339 iface->get_column_count = psppire_var_store_get_column_count;
340 iface->free_strings = TRUE;
341 iface->get_string = psppire_var_store_get_string;
342 iface->set_string = psppire_var_store_set_string;
343 iface->clear_datum = psppire_var_store_clear;
344 iface->is_editable = psppire_var_store_is_editable;
345 iface->is_visible = NULL;
346 iface->get_foreground = psppire_var_store_get_foreground;
347 iface->get_background = NULL;
348 iface->get_font_desc = psppire_var_store_get_font_desc;
349 iface->get_cell_border = NULL;
355 * psppire_var_store_new:
356 * @dict: The dictionary for this var_store.
359 * Return value: a new #PsppireVarStore
362 psppire_var_store_new (PsppireDict *dict)
364 PsppireVarStore *retval;
366 retval = g_object_new (GTK_TYPE_VAR_STORE, NULL);
368 psppire_var_store_set_dictionary (retval, dict);
374 var_change_callback (GtkWidget *w, gint n, gpointer data)
376 GSheetModel *model = G_SHEET_MODEL (data);
378 g_sheet_model_range_changed (model,
379 n, 0, n, PSPPIRE_VAR_STORE_n_COLS);
384 var_delete_callback (GtkWidget *w, gint dict_idx, gint case_idx, gint val_cnt, gpointer data)
386 GSheetModel *model = G_SHEET_MODEL (data);
388 g_sheet_model_rows_deleted (model, dict_idx, 1);
394 var_insert_callback (GtkWidget *w, glong row, gpointer data)
396 GSheetModel *model = G_SHEET_MODEL (data);
398 g_sheet_model_rows_inserted (model, row, 1);
402 refresh (PsppireDict *d, gpointer data)
404 PsppireVarStore *vs = data;
406 g_sheet_model_range_changed (G_SHEET_MODEL (vs), -1, -1, -1, -1);
410 * psppire_var_store_replace_set_dictionary:
411 * @var_store: The variable store
412 * @dict: The dictionary to set
414 * If a dictionary is already associated with the var-store, then it will be
418 psppire_var_store_set_dictionary (PsppireVarStore *var_store, PsppireDict *dict)
420 if ( var_store->dict ) g_object_unref (var_store->dict);
422 var_store->dict = dict;
424 g_signal_connect (dict, "variable-changed", G_CALLBACK (var_change_callback),
427 g_signal_connect (dict, "variable-deleted", G_CALLBACK (var_delete_callback),
430 g_signal_connect (dict, "variable-inserted",
431 G_CALLBACK (var_insert_callback), var_store);
433 g_signal_connect (dict, "backend-changed", G_CALLBACK (refresh),
436 /* The entire model has changed */
437 g_sheet_model_range_changed (G_SHEET_MODEL (var_store), -1, -1, -1, -1);
441 psppire_var_store_finalize (GObject *object)
444 (* parent_class->finalize) (object);
448 psppire_var_store_get_string (const GSheetModel *model, glong row, glong column)
450 PsppireVarStore *store = PSPPIRE_VAR_STORE (model);
454 if ( row >= psppire_dict_get_var_cnt (store->dict))
457 pv = psppire_dict_get_variable (store->dict, row);
459 return text_for_column (pv, column, 0);
463 /* Clears that part of the variable store, if possible, which corresponds
465 Returns true if anything was updated, false otherwise.
468 psppire_var_store_clear (GSheetModel *model, glong row, glong col)
470 struct variable *pv ;
472 PsppireVarStore *var_store = PSPPIRE_VAR_STORE (model);
474 if ( row >= psppire_dict_get_var_cnt (var_store->dict))
477 pv = psppire_var_store_get_var (var_store, row);
484 case PSPPIRE_VAR_STORE_COL_LABEL:
485 var_set_label (pv, 0);
493 /* Attempts to update that part of the variable store which corresponds
494 to ROW, COL with the value TEXT.
495 Returns true if anything was updated, false otherwise.
498 psppire_var_store_set_string (GSheetModel *model,
499 const gchar *text, glong row, glong col)
501 struct variable *pv ;
503 PsppireVarStore *var_store = PSPPIRE_VAR_STORE (model);
505 if ( row >= psppire_dict_get_var_cnt (var_store->dict))
508 pv = psppire_var_store_get_var (var_store, row);
515 case PSPPIRE_VAR_STORE_COL_NAME:
516 return psppire_dict_rename_var (var_store->dict, pv, text);
518 case PSPPIRE_VAR_STORE_COL_COLUMNS:
519 if ( ! text) return FALSE;
520 var_set_display_width (pv, atoi (text));
523 case PSPPIRE_VAR_STORE_COL_WIDTH:
525 int width = atoi (text);
526 if ( ! text) return FALSE;
527 if ( var_is_alpha (pv))
528 var_set_width (pv, width);
532 = var_store->format_type == PSPPIRE_VAR_STORE_INPUT_FORMATS;
533 struct fmt_spec fmt ;
534 fmt = *var_get_write_format (pv);
535 if ( width < fmt_min_width (fmt.type, for_input)
537 width > fmt_max_width (fmt.type, for_input))
541 fmt.d = MIN (fmt_max_decimals (fmt.type, width, for_input), fmt.d);
543 var_set_both_formats (pv, &fmt);
549 case PSPPIRE_VAR_STORE_COL_DECIMALS:
552 = var_store->format_type == PSPPIRE_VAR_STORE_INPUT_FORMATS;
555 if ( ! text) return FALSE;
556 decimals = atoi (text);
557 fmt = *var_get_write_format (pv);
559 fmt_max_decimals (fmt.type,
566 var_set_both_formats (pv, &fmt);
570 case PSPPIRE_VAR_STORE_COL_LABEL:
571 var_set_label (pv, text);
574 case PSPPIRE_VAR_STORE_COL_TYPE:
575 case PSPPIRE_VAR_STORE_COL_VALUES:
576 case PSPPIRE_VAR_STORE_COL_MISSING:
577 case PSPPIRE_VAR_STORE_COL_ALIGN:
578 case PSPPIRE_VAR_STORE_COL_MEASURE:
579 /* These can be modified only by their respective dialog boxes */
583 g_assert_not_reached ();
591 const static gchar none[] = N_("None");
594 text_for_column (const struct variable *pv, gint c, GError **err)
596 static const gchar *const type_label[] =
607 enum {VT_NUMERIC, VT_COMMA, VT_DOT, VT_SCIENTIFIC, VT_DATE, VT_DOLLAR,
608 VT_CUSTOM, VT_STRING};
610 const struct fmt_spec *write_spec = var_get_write_format (pv);
614 case PSPPIRE_VAR_STORE_COL_NAME:
615 return pspp_locale_to_utf8 ( var_get_name (pv), -1, err);
617 case PSPPIRE_VAR_STORE_COL_TYPE:
619 switch ( write_spec->type )
622 return g_locale_to_utf8 (gettext (type_label[VT_NUMERIC]), -1, 0, 0, err);
625 return g_locale_to_utf8 (gettext (type_label[VT_COMMA]), -1, 0, 0, err);
628 return g_locale_to_utf8 (gettext (type_label[VT_DOT]), -1, 0, 0, err);
631 return g_locale_to_utf8 (gettext (type_label[VT_SCIENTIFIC]), -1, 0, 0, err);
646 return g_locale_to_utf8 (type_label[VT_DATE], -1, 0, 0, err);
649 return g_locale_to_utf8 (type_label[VT_DOLLAR], -1, 0, 0, err);
656 return g_locale_to_utf8 (gettext (type_label[VT_CUSTOM]), -1, 0, 0, err);
659 return g_locale_to_utf8 (gettext (type_label[VT_STRING]), -1, 0, 0, err);
663 char str[FMT_STRING_LEN_MAX + 1];
664 g_warning ("Unknown format: \"%s\"\n",
665 fmt_to_string (write_spec, str));
671 case PSPPIRE_VAR_STORE_COL_WIDTH:
674 GString *gstr = g_string_sized_new (10);
675 g_string_printf (gstr, _("%d"), write_spec->w);
676 s = g_locale_to_utf8 (gstr->str, gstr->len, 0, 0, err);
677 g_string_free (gstr, TRUE);
681 case PSPPIRE_VAR_STORE_COL_DECIMALS:
684 GString *gstr = g_string_sized_new (10);
685 g_string_printf (gstr, _("%d"), write_spec->d);
686 s = g_locale_to_utf8 (gstr->str, gstr->len, 0, 0, err);
687 g_string_free (gstr, TRUE);
691 case PSPPIRE_VAR_STORE_COL_COLUMNS:
694 GString *gstr = g_string_sized_new (10);
695 g_string_printf (gstr, _("%d"), var_get_display_width (pv));
696 s = g_locale_to_utf8 (gstr->str, gstr->len, 0, 0, err);
697 g_string_free (gstr, TRUE);
701 case PSPPIRE_VAR_STORE_COL_LABEL:
702 return pspp_locale_to_utf8 (var_get_label (pv), -1, err);
705 case PSPPIRE_VAR_STORE_COL_MISSING:
707 return missing_values_to_string (pv, err);
710 case PSPPIRE_VAR_STORE_COL_VALUES:
712 if ( ! var_has_value_labels (pv))
713 return g_locale_to_utf8 (gettext (none), -1, 0, 0, err);
717 GString *gstr = g_string_sized_new (10);
718 const struct val_labs *vls = var_get_value_labels (pv);
719 struct val_labs_iterator *ip = 0;
720 struct val_lab *vl = val_labs_first_sorted (vls, &ip);
725 gchar *const vstr = value_to_text (vl->value, *write_spec);
727 g_string_printf (gstr, "{%s,\"%s\"}_", vstr, vl->label);
733 ss = pspp_locale_to_utf8 (gstr->str, gstr->len, err);
734 g_string_free (gstr, TRUE);
739 case PSPPIRE_VAR_STORE_COL_ALIGN:
741 const gint align = var_get_alignment (pv);
743 g_assert (align < n_ALIGNMENTS);
744 return g_locale_to_utf8 (gettext (alignments[align]), -1, 0, 0, err);
747 case PSPPIRE_VAR_STORE_COL_MEASURE:
749 return measure_to_string (pv, err);
758 /* Return the number of variables */
760 psppire_var_store_get_var_cnt (PsppireVarStore *store)
762 return psppire_dict_get_var_cnt (store->dict);
767 psppire_var_store_set_font (PsppireVarStore *store, const PangoFontDescription *fd)
769 g_return_if_fail (store);
770 g_return_if_fail (PSPPIRE_IS_VAR_STORE (store));
772 store->font_desc = fd;
774 g_sheet_model_range_changed (G_SHEET_MODEL (store), -1, -1, -1, -1);
779 psppire_var_store_get_row_count (const GSheetModel * model)
782 PsppireVarStore *vs = PSPPIRE_VAR_STORE (model);
785 rows = psppire_dict_get_var_cnt (vs->dict);
791 psppire_var_store_get_column_count (const GSheetModel * model)
793 return PSPPIRE_VAR_STORE_n_COLS ;
797 /* Row related funcs */
800 geometry_get_row_count (const GSheetRow *geom)
803 PsppireVarStore *vs = PSPPIRE_VAR_STORE (geom);
806 rows = psppire_dict_get_var_cnt (vs->dict);
808 return rows + vs->trailing_rows;
813 geometry_get_height (const GSheetRow *geom, glong row)
820 geometry_is_sensitive (const GSheetRow *geom, glong row)
822 PsppireVarStore *vs = PSPPIRE_VAR_STORE (geom);
827 return row < psppire_dict_get_var_cnt (vs->dict);
831 gboolean always_true ()
838 geometry_get_button_label (const GSheetRow *geom, glong unit)
840 gchar *label = g_strdup_printf (_("%ld"), unit + 1);
846 psppire_var_store_sheet_row_init (GSheetRowIface *iface)
848 iface->get_row_count = geometry_get_row_count;
849 iface->get_height = geometry_get_height;
850 iface->set_height = 0;
851 iface->get_visibility = always_true;
852 iface->get_sensitivity = geometry_is_sensitive;
854 iface->get_button_label = geometry_get_button_label;