X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-data-store.c;h=8f52cf7b08fc20e04ce25a5ab333ae76c406bf3b;hb=c427e8ca6b4c5d3d365b4ff3bb58a81e34efd217;hp=986f30e02d1cf109fedeb3d86db0248eeee592ae;hpb=4517b68e7248f22e7b7ed81f0d73179351a53047;p=pspp-builds.git diff --git a/src/ui/gui/psppire-data-store.c b/src/ui/gui/psppire-data-store.c index 986f30e0..8f52cf7b 100644 --- a/src/ui/gui/psppire-data-store.c +++ b/src/ui/gui/psppire-data-store.c @@ -1,11 +1,9 @@ -/* psppire-data-store.c - - PSPPIRE --- A Graphical User Interface for PSPP +/* PSPPIRE - a graphical user interface for PSPP. Copyright (C) 2006 Free Software Foundation - This program is free software; you can redistribute it and/or modify + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -14,9 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include #include @@ -25,8 +21,7 @@ #define _(msgid) gettext (msgid) #define N_(msgid) msgid -#include -#include +#include #include #include @@ -45,10 +40,6 @@ #include #include -#include -#include - - static void psppire_data_store_init (PsppireDataStore *data_store); static void psppire_data_store_class_init (PsppireDataStoreClass *class); @@ -58,13 +49,8 @@ static void psppire_data_store_sheet_row_init (GSheetRowIface *iface); static void psppire_data_store_finalize (GObject *object); -static gchar *psppire_data_store_get_string (const GSheetModel *sheet_model, gint row, gint column); - -static gboolean psppire_data_store_set_string (GSheetModel *model, - const gchar *text, gint row, gint column); - static gboolean psppire_data_store_clear_datum (GSheetModel *model, - gint row, gint column); + glong row, glong column); #define MIN_COLUMNS 10 @@ -77,7 +63,7 @@ static GObjectClass *parent_class = NULL; enum {FONT_CHANGED, n_SIGNALS}; -static guint signal[n_SIGNALS]; +static guint signals [n_SIGNALS]; inline GType @@ -152,7 +138,7 @@ psppire_data_store_class_init (PsppireDataStoreClass *class) object_class->finalize = psppire_data_store_finalize; - signal[FONT_CHANGED] = + signals [FONT_CHANGED] = g_signal_new ("font_changed", G_TYPE_FROM_CLASS (class), G_SIGNAL_RUN_FIRST, @@ -165,7 +151,7 @@ psppire_data_store_class_init (PsppireDataStoreClass *class) -static gint +static glong psppire_data_store_get_var_count (const GSheetModel *model) { const PsppireDataStore *store = PSPPIRE_DATA_STORE (model); @@ -173,15 +159,20 @@ psppire_data_store_get_var_count (const GSheetModel *model) return psppire_dict_get_var_cnt (store->dict); } -static gint -psppire_data_store_get_case_count (const GSheetModel *model) +casenumber +psppire_data_store_get_case_count (PsppireDataStore *store) +{ + return psppire_case_file_get_case_count (store->case_file); +} + +static glong +psppire_data_store_get_case_count_from_model (const GSheetModel *model) { const PsppireDataStore *store = PSPPIRE_DATA_STORE (model); return psppire_case_file_get_case_count (store->case_file); } - static void psppire_data_store_init (PsppireDataStore *data_store) { @@ -192,20 +183,39 @@ psppire_data_store_init (PsppireDataStore *data_store) const PangoFontDescription * psppire_data_store_get_font_desc (const GSheetModel *model, - gint row, gint column) + glong row, glong column) { PsppireDataStore *store = PSPPIRE_DATA_STORE (model); return store->font_desc; } +static inline gchar * +psppire_data_store_get_string_wrapper (const GSheetModel *model, glong row, + glong column) +{ + return psppire_data_store_get_string (PSPPIRE_DATA_STORE (model), row, column); +} + + +static inline gboolean +psppire_data_store_set_string_wrapper (GSheetModel *model, + const gchar *text, + glong row, glong column) +{ + return psppire_data_store_set_string (PSPPIRE_DATA_STORE (model), text, + row, column); +} + + + static void psppire_data_store_sheet_model_init (GSheetModelIface *iface) { iface->free_strings = TRUE; - iface->get_string = psppire_data_store_get_string; - iface->set_string = psppire_data_store_set_string; + iface->get_string = psppire_data_store_get_string_wrapper; + iface->set_string = psppire_data_store_set_string_wrapper; iface->clear_datum = psppire_data_store_clear_datum; iface->is_editable = NULL; iface->is_visible = NULL; @@ -214,7 +224,7 @@ psppire_data_store_sheet_model_init (GSheetModelIface *iface) iface->get_font_desc = psppire_data_store_get_font_desc; iface->get_cell_border = NULL; iface->get_column_count = psppire_data_store_get_var_count; - iface->get_row_count = psppire_data_store_get_case_count; + iface->get_row_count = psppire_data_store_get_case_count_from_model; } static @@ -225,7 +235,8 @@ gboolean always_true () static void -delete_cases_callback (GtkWidget *w, gint first, gint n_cases, gpointer data) +delete_cases_callback (GtkWidget *w, + casenumber first, casenumber n_cases, gpointer data) { PsppireDataStore *store ; @@ -240,7 +251,7 @@ delete_cases_callback (GtkWidget *w, gint first, gint n_cases, gpointer data) static void -insert_case_callback (GtkWidget *w, gint casenum, gpointer data) +insert_case_callback (GtkWidget *w, casenumber casenum, gpointer data) { PsppireDataStore *store ; @@ -373,28 +384,19 @@ psppire_data_store_new (PsppireDict *dict) } - -/** - * psppire_data_store_replace_set_dictionary: - * @data_store: The variable store - * @dict: The dictionary to set - * - * If a dictionary is already associated with the data-store, then it will be - * destroyed. - **/ void -psppire_data_store_set_dictionary (PsppireDataStore *data_store, PsppireDict *dict) +psppire_data_store_set_case_file (PsppireDataStore *data_store, + PsppireCaseFile *cf) { - data_store->dict = dict; - if ( data_store->case_file) { g_object_unref (data_store->case_file); - data_store->case_file = 0; } - data_store->case_file = psppire_case_file_new (); + data_store->case_file = cf; + g_sheet_model_range_changed (G_SHEET_MODEL (data_store), + -1, -1, -1, -1); g_signal_connect (data_store->case_file, "cases-deleted", @@ -409,6 +411,22 @@ psppire_data_store_set_dictionary (PsppireDataStore *data_store, PsppireDict *di g_signal_connect (data_store->case_file, "case-changed", G_CALLBACK (changed_case_callback), data_store); +} + + + +/** + * psppire_data_store_replace_set_dictionary: + * @data_store: The variable store + * @dict: The dictionary to set + * + * If a dictionary is already associated with the data-store, then it will be + * destroyed. + **/ +void +psppire_data_store_set_dictionary (PsppireDataStore *data_store, PsppireDict *dict) +{ + data_store->dict = dict; g_signal_connect (dict, "variable-inserted", G_CALLBACK (insert_variable_callback), @@ -441,20 +459,29 @@ psppire_data_store_finalize (GObject *object) (* parent_class->finalize) (object); } +gboolean +psppire_data_store_delete_cases (PsppireDataStore *ds, + casenumber first, casenumber count) +{ + g_return_val_if_fail (ds, FALSE); + + return psppire_case_file_delete_cases (ds->case_file, count, first); +} + /* Insert a blank case before POSN */ gboolean -psppire_data_store_insert_new_case (PsppireDataStore *ds, gint posn) +psppire_data_store_insert_new_case (PsppireDataStore *ds, casenumber posn) { gboolean result; gint val_cnt, v; struct ccase cc; g_return_val_if_fail (ds, FALSE); + val_cnt = datasheet_get_column_cnt (ds->case_file->datasheet) ; - /* Opportunity for optimisation exists here when creating a blank case */ - val_cnt = casefile_get_value_cnt (ds->case_file->flexifile) ; + g_return_val_if_fail (val_cnt > 0, FALSE); case_create (&cc, val_cnt); @@ -477,16 +504,15 @@ psppire_data_store_insert_new_case (PsppireDataStore *ds, gint posn) } -static gchar * -psppire_data_store_get_string (const GSheetModel *model, gint row, gint column) +gchar * +psppire_data_store_get_string (PsppireDataStore *store, glong row, glong column) { gint idx; char *text; const struct fmt_spec *fp ; const struct variable *pv ; - const union value *v ; + union value *v ; GString *s; - PsppireDataStore *store = PSPPIRE_DATA_STORE (model); g_return_val_if_fail (store->dict, NULL); g_return_val_if_fail (store->case_file, NULL); @@ -505,19 +531,19 @@ psppire_data_store_get_string (const GSheetModel *model, gint row, gint column) g_assert (idx >= 0); - v = psppire_case_file_get_value (store->case_file, row, idx); + v = psppire_case_file_get_value (store->case_file, row, idx, NULL, + var_get_width (pv)); g_return_val_if_fail (v, NULL); if ( store->show_labels) { - const struct val_labs * vl = var_get_value_labels (pv); - - const gchar *label; - if ( (label = val_labs_find (vl, *v)) ) - { + const gchar *label = var_lookup_value_label (pv, v); + if (label) + { + free (v); return pspp_locale_to_utf8 (label, -1, 0); - } + } } fp = var_get_write_format (pv); @@ -539,14 +565,14 @@ psppire_data_store_get_string (const GSheetModel *model, gint row, gint column) g_strchomp (text); + free (v); return text; } static gboolean psppire_data_store_clear_datum (GSheetModel *model, - gint row, gint col) - + glong row, glong col) { PsppireDataStore *store = PSPPIRE_DATA_STORE (model); @@ -571,12 +597,10 @@ psppire_data_store_clear_datum (GSheetModel *model, to ROW, COL with the value TEXT. Returns true if anything was updated, false otherwise. */ -static gboolean -psppire_data_store_set_string (GSheetModel *model, - const gchar *text, gint row, gint col) +gboolean +psppire_data_store_set_string (PsppireDataStore *store, + const gchar *text, glong row, glong col) { - PsppireDataStore *store = PSPPIRE_DATA_STORE (model); - const struct variable *pv = psppire_dict_get_variable (store->dict, col); g_return_val_if_fail (pv, FALSE); @@ -614,7 +638,7 @@ psppire_data_store_set_font (PsppireDataStore *store, #if 0 store->width_of_m = calc_m_width (fd); #endif - g_signal_emit (store, signal[FONT_CHANGED], 0); + g_signal_emit (store, signals [FONT_CHANGED], 0); g_sheet_model_range_changed (G_SHEET_MODEL (store), @@ -635,62 +659,32 @@ psppire_data_store_show_labels (PsppireDataStore *store, gboolean show_labels) } - -/* FIXME: There's no reason to actually have this function. - It should be done by a procedure */ void -psppire_data_store_create_system_file (PsppireDataStore *store, - struct file_handle *handle) +psppire_data_store_clear (PsppireDataStore *data_store) { - gint i, var_cnt; - const struct sfm_write_options wo = { - true, /* writeable */ - false, /* dont compress */ - 3 /* version */ - }; - - struct sfm_writer *writer ; - - g_assert (handle); - - writer = sfm_open_writer (handle, store->dict->dict, wo); - - if ( ! writer) - return; - - - var_cnt = psppire_data_store_get_var_count (G_SHEET_MODEL (store)); - - for (i = 0 ; i < psppire_case_file_get_case_count (store->case_file); ++i ) - { - struct ccase c; - - case_create (&c, var_cnt); - psppire_case_file_get_case (store->case_file, i, &c); - sfm_write_case (writer, &c); - - case_destroy (&c); - } + psppire_case_file_clear (data_store->case_file); - sfm_close_writer (writer); + psppire_dict_clear (data_store->dict); } -void -psppire_data_store_clear (PsppireDataStore *data_store) +/* Return a casereader made from this datastore */ +struct casereader * +psppire_data_store_get_reader (PsppireDataStore *ds) { - psppire_case_file_clear (data_store->case_file); + struct casereader *reader ; - psppire_dict_clear (data_store->dict); -} + reader = psppire_case_file_make_reader (ds->case_file); + return reader; +} /* Column related funcs */ -static gint +static glong geometry_get_column_count (const GSheetColumn *geom) { PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); @@ -701,7 +695,7 @@ geometry_get_column_count (const GSheetColumn *geom) static gint -geometry_get_width (const GSheetColumn *geom, gint unit) +geometry_get_width (const GSheetColumn *geom, glong unit) { const struct variable *pv ; PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); @@ -718,7 +712,7 @@ geometry_get_width (const GSheetColumn *geom, gint unit) } static void -geometry_set_width (GSheetColumn *geom, gint unit, gint width) +geometry_set_width (GSheetColumn *geom, glong unit, gint width) { PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); @@ -730,7 +724,7 @@ geometry_set_width (GSheetColumn *geom, gint unit, gint width) static GtkJustification -geometry_get_justification (const GSheetColumn *geom, gint unit) +geometry_get_justification (const GSheetColumn *geom, glong unit) { PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); const struct variable *pv ; @@ -750,7 +744,7 @@ geometry_get_justification (const GSheetColumn *geom, gint unit) static const gchar null_var_name[]=N_("var"); static gchar * -geometry_get_column_button_label (const GSheetColumn *geom, gint unit) +geometry_get_column_button_label (const GSheetColumn *geom, glong unit) { gchar *text; struct variable *pv ; @@ -767,8 +761,29 @@ geometry_get_column_button_label (const GSheetColumn *geom, gint unit) } +static gchar * +geometry_get_column_subtitle (const GSheetColumn *geom, glong unit) +{ + gchar *text; + const struct variable *v ; + PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); + + if ( unit >= psppire_dict_get_var_cnt (ds->dict) ) + return NULL; + + v = psppire_dict_get_variable (ds->dict, unit); + + if ( ! var_has_label (v)) + return NULL; + + text = pspp_locale_to_utf8 (var_get_label (v), -1, 0); + + return text; +} + + static gboolean -geometry_get_sensitivity (const GSheetColumn *geom, gint unit) +geometry_get_sensitivity (const GSheetColumn *geom, glong unit) { PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); @@ -786,12 +801,13 @@ psppire_data_store_sheet_column_init (GSheetColumnIface *iface) iface->get_sensitivity = geometry_get_sensitivity; iface->get_justification = geometry_get_justification; iface->get_button_label = geometry_get_column_button_label; + iface->get_subtitle = geometry_get_column_subtitle; } /* Row related funcs */ -static gint +static glong geometry_get_row_count (const GSheetRow *geom, gpointer data) { PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); @@ -801,14 +817,14 @@ geometry_get_row_count (const GSheetRow *geom, gpointer data) static gint -geometry_get_height (const GSheetRow *geom, gint unit, gpointer data) +geometry_get_height (const GSheetRow *geom, glong unit, gpointer data) { return 25; } static gboolean -geometry_get_row_sensitivity (const GSheetRow *geom, gint unit, gpointer data) +geometry_get_row_sensitivity (const GSheetRow *geom, glong unit, gpointer data) { PsppireDataStore *ds = PSPPIRE_DATA_STORE (geom); @@ -818,7 +834,7 @@ geometry_get_row_sensitivity (const GSheetRow *geom, gint unit, gpointer data) static gchar * -geometry_get_row_button_label (const GSheetRow *geom, gint unit, gpointer data) +geometry_get_row_button_label (const GSheetRow *geom, glong unit, gpointer data) { gchar *text; gchar *s; @@ -828,7 +844,7 @@ geometry_get_row_button_label (const GSheetRow *geom, gint unit, gpointer data) TRAILING_ROWS + psppire_case_file_get_case_count (ds->case_file)) return 0; - s = g_strdup_printf (_("%d"), unit); + s = g_strdup_printf (_("%ld"), unit + FIRST_CASE_NUMBER); text = pspp_locale_to_utf8 (s, -1, 0); @@ -850,4 +866,3 @@ psppire_data_store_sheet_row_init (GSheetRowIface *iface) iface->get_button_label = geometry_get_row_button_label; } -