X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=src%2Fui%2Fgui%2Fpsppire-data-store.c;h=c0bebeccb03f3b7126b90a94e43d8e4d9f7d3c0c;hb=687adf53eae434e88a47bb3409f946f3a26115a4;hp=6df379731695183763f4a39af44470d0c7e327f3;hpb=87b6d42a2d540b92baf0db8fe28657eda747b3b0;p=pspp-builds.git diff --git a/src/ui/gui/psppire-data-store.c b/src/ui/gui/psppire-data-store.c index 6df37973..c0bebecc 100644 --- a/src/ui/gui/psppire-data-store.c +++ b/src/ui/gui/psppire-data-store.c @@ -2,7 +2,6 @@ PSPPIRE --- A Graphical User Interface for PSPP Copyright (C) 2006 Free Software Foundation - Written by John Darrington 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 @@ -28,13 +27,17 @@ #include #include +#include +#include #include #include #include -#include "psppire-variable.h" +#include + #include "psppire-data-store.h" +#include "psppire-case-file.h" #include "helper.h" #include @@ -70,6 +73,13 @@ static gboolean psppire_data_store_clear_datum(GSheetModel *model, static GObjectClass *parent_class = NULL; + +enum {FONT_CHANGED, + n_SIGNALS}; + +static guint signal[n_SIGNALS]; + + inline GType psppire_data_store_get_type (void) { @@ -131,6 +141,7 @@ psppire_data_store_get_type (void) return data_store_type; } + static void psppire_data_store_class_init (PsppireDataStoreClass *class) { @@ -140,6 +151,16 @@ psppire_data_store_class_init (PsppireDataStoreClass *class) object_class = (GObjectClass*) class; object_class->finalize = psppire_data_store_finalize; + + signal[FONT_CHANGED] = + g_signal_new ("font_changed", + G_TYPE_FROM_CLASS(class), + G_SIGNAL_RUN_FIRST, + 0, + NULL, NULL, + g_cclosure_marshal_VOID__VOID, + G_TYPE_NONE, + 0); } @@ -166,6 +187,7 @@ psppire_data_store_init (PsppireDataStore *data_store) { data_store->dict = 0; data_store->case_file = 0; + data_store->width_of_m = 10; } const PangoFontDescription * @@ -268,31 +290,46 @@ static void insert_variable_callback(GObject *obj, gint var_num, gpointer data) { PsppireDataStore *store; + gint posn; g_return_if_fail (data); store = PSPPIRE_DATA_STORE(data); - /* - g_sheet_model_range_changed (G_SHEET_MODEL(store), - casenum, -1, - psppire_case_array_get_n_cases(store->cases), - -1); - */ + if ( var_num > 0 ) + { + struct variable *variable; + variable = psppire_dict_get_variable(store->dict, var_num); -#if 0 - psppire_case_array_resize(store->cases, - dict_get_next_value_idx (store->dict->dict)); -#endif + posn = var_get_case_index (variable); + } + else + { + posn = 0; + } + + psppire_case_file_insert_values(store->case_file, 1, posn); g_sheet_column_columns_changed(G_SHEET_COLUMN(store), var_num, 1); - g_sheet_model_columns_inserted (G_SHEET_MODEL(store), var_num, 1); } +static void +dict_size_change_callback(GObject *obj, + gint posn, gint adjustment, gpointer data) +{ + PsppireDataStore *store ; + + g_return_if_fail (data); + + store = PSPPIRE_DATA_STORE(data); + + psppire_case_file_insert_values (store->case_file, adjustment, posn); +} + /** @@ -329,9 +366,6 @@ void psppire_data_store_set_dictionary(PsppireDataStore *data_store, PsppireDict *dict) { gint var_cnt = psppire_dict_get_next_value_idx(dict); -#if 0 - if ( data_store->dict ) g_object_unref(data_store->dict); -#endif data_store->dict = dict; @@ -356,7 +390,6 @@ psppire_data_store_set_dictionary(PsppireDataStore *data_store, PsppireDict *dic G_CALLBACK(changed_case_callback), data_store); - g_signal_connect(dict, "variable-inserted", G_CALLBACK(insert_variable_callback), data_store); @@ -365,6 +398,10 @@ psppire_data_store_set_dictionary(PsppireDataStore *data_store, PsppireDict *dic G_CALLBACK(delete_variables_callback), data_store); + g_signal_connect (dict, "dict-size-changed", + G_CALLBACK(dict_size_change_callback), + data_store); + /* The entire model has changed */ g_sheet_model_range_changed (G_SHEET_MODEL(data_store), -1, -1, -1, -1); @@ -380,35 +417,72 @@ psppire_data_store_finalize (GObject *object) } + +/* Insert a blank case before POSN */ +gboolean +psppire_data_store_insert_new_case(PsppireDataStore *ds, gint posn) +{ + gboolean result; + gint val_cnt, v; + struct ccase cc; + g_return_val_if_fail (ds, FALSE); + + + /* Opportunity for optimisation exists here when creating a blank case */ + val_cnt = casefile_get_value_cnt(ds->case_file->flexifile) ; + + case_create (&cc, val_cnt); + + memset ( case_data_rw_idx (&cc, 0), 0, val_cnt * MAX_SHORT_STRING); + + for (v = 0 ; v < psppire_dict_get_var_cnt (ds->dict) ; ++v) + { + const struct variable *pv = psppire_dict_get_variable (ds->dict, v); + if ( var_is_alpha (pv)) + continue; + + case_data_rw (&cc, pv)->f = SYSMIS; + } + + result = psppire_case_file_insert_case (ds->case_file, &cc, posn); + + case_destroy (&cc); + + return result; +} + + static gchar * -psppire_data_store_get_string(const GSheetModel *model, gint row, gint column) +psppire_data_store_get_string (const GSheetModel *model, gint row, gint column) { gint idx; char *text; const struct fmt_spec *fp ; - const struct PsppireVariable *pv ; + const struct variable *pv ; const 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); + g_return_val_if_fail (store->dict, NULL); + g_return_val_if_fail (store->case_file, NULL); - if (column >= psppire_dict_get_var_cnt(store->dict)) + if (column >= psppire_dict_get_var_cnt (store->dict)) return NULL; - if ( row >= psppire_case_file_get_case_count(store->case_file)) + if ( row >= psppire_case_file_get_case_count (store->case_file)) return NULL; - pv = psppire_dict_get_variable(store->dict, column); + pv = psppire_dict_get_variable (store->dict, column); - idx = psppire_variable_get_fv(pv); + idx = var_get_case_index (pv); - v = psppire_case_file_get_value(store->case_file, row, idx); + v = psppire_case_file_get_value (store->case_file, row, idx); + + g_return_val_if_fail(v, NULL); if ( store->show_labels) { - const struct val_labs * vl = psppire_variable_get_value_labels(pv); + const struct val_labs * vl = var_get_value_labels (pv); const gchar *label; if ( (label = val_labs_find(vl, *v)) ) @@ -417,45 +491,48 @@ psppire_data_store_get_string(const GSheetModel *model, gint row, gint column) } } - fp = psppire_variable_get_write_spec(pv); + fp = var_get_write_format (pv); s = g_string_sized_new (fp->w + 1); - g_string_set_size(s, fp->w); + g_string_set_size (s, fp->w); - memset(s->str, 0, fp->w); + memset (s->str, 0, fp->w); - g_assert(fp->w == s->len); + g_assert (fp->w == s->len); /* Converts binary value V into printable form in the exactly FP->W character in buffer S according to format specification FP. No null terminator is appended to the buffer. */ - data_out (s->str, fp, v); + data_out (v, fp, s->str); + + text = pspp_locale_to_utf8 (s->str, fp->w, 0); + g_string_free (s, TRUE); - text = pspp_locale_to_utf8(s->str, fp->w, 0); - g_string_free(s, TRUE); + g_strchomp (text); return text; } static gboolean -psppire_data_store_clear_datum(GSheetModel *model, +psppire_data_store_clear_datum (GSheetModel *model, gint row, gint col) { PsppireDataStore *store = PSPPIRE_DATA_STORE(model); union value v; - const struct PsppireVariable *pv = psppire_dict_get_variable(store->dict, col); + const struct variable *pv = psppire_dict_get_variable (store->dict, col); - const gint index = psppire_variable_get_fv(pv) ; + const gint index = var_get_case_index (pv) ; - if ( psppire_variable_get_type(pv) == NUMERIC) + if ( var_is_numeric (pv)) v.f = SYSMIS; else memcpy(v.s, "", MAX_SHORT_STRING); - psppire_case_file_set_value(store->case_file, row, index, &v); + psppire_case_file_set_value(store->case_file, row, index, &v, + var_get_width (pv)); return TRUE; } @@ -471,7 +548,7 @@ psppire_data_store_set_string(GSheetModel *model, { PsppireDataStore *store = PSPPIRE_DATA_STORE(model); - const struct PsppireVariable *pv = psppire_dict_get_variable(store->dict, col); + const struct variable *pv = psppire_dict_get_variable(store->dict, col); g_return_val_if_fail(pv, FALSE); #if 0 @@ -489,39 +566,28 @@ psppire_data_store_set_string(GSheetModel *model, } #endif - { - const gint index = psppire_variable_get_fv(pv); - - struct data_in d_in; - d_in.s = text; - d_in.e = text + strlen(text); - d_in.v = 0; - d_in.f1 = d_in.f2 = 0; - d_in.format = * psppire_variable_get_write_spec(pv); - d_in.flags = 0; - - /* - if ( ! data_in(&d_in) ) - { - g_warning("Cannot encode string"); - return FALSE; - } - */ - - psppire_case_file_set_value(store->case_file, row, index, &d_in) ; - } - + psppire_case_file_data_in (store->case_file, row, + var_get_case_index (pv), ss_cstr (text), + var_get_write_format (pv)); + return TRUE; } void -psppire_data_store_set_font(PsppireDataStore *store, PangoFontDescription *fd) +psppire_data_store_set_font(PsppireDataStore *store, + const PangoFontDescription *fd) { g_return_if_fail (store); g_return_if_fail (PSPPIRE_IS_DATA_STORE (store)); store->font_desc = fd; +#if 0 + store->width_of_m = calc_m_width(fd); +#endif + g_signal_emit(store, signal[FONT_CHANGED], 0); + + g_sheet_model_range_changed (G_SHEET_MODEL(store), -1, -1, -1, -1); } @@ -541,23 +607,13 @@ psppire_data_store_show_labels(PsppireDataStore *store, gboolean show_labels) -static gboolean -write_case(const struct ccase *cc, - gpointer aux) -{ - struct sfm_writer *writer = aux; - - if ( ! sfm_write_case(writer, cc) ) - return FALSE; - - - return TRUE; -} - +/* 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) { + gint i, var_cnt; const struct sfm_write_options wo = { true, /* writeable */ false, /* dont compress */ @@ -573,9 +629,19 @@ psppire_data_store_create_system_file(PsppireDataStore *store, if ( ! writer) return; -#if 0 - psppire_case_array_iterate_case(store->cases, write_case, writer); -#endif + + 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); + } sfm_close_writer(writer); } @@ -596,87 +662,49 @@ psppire_data_store_clear(PsppireDataStore *data_store) /* Column related funcs */ static gint -geometry_get_column_count(const GSheetColumn *geom, gpointer data) +geometry_get_column_count(const GSheetColumn *geom) { PsppireDataStore *ds = PSPPIRE_DATA_STORE(geom); return MAX(MIN_COLUMNS, psppire_dict_get_var_cnt(ds->dict)); } -/* Return the width that an 'M' character would occupy when typeset at - row, col */ -static guint -M_width(const GtkSheet *sheet, gint row, gint col) -{ - GtkSheetCellAttr attributes; - PangoRectangle rect; - /* FIXME: make this a member of the data store */ - static PangoLayout *layout = 0; - - gtk_sheet_get_attributes(sheet, row, col, &attributes); - - if (! layout ) - layout = gtk_widget_create_pango_layout (GTK_WIDGET(sheet), "M"); - - g_assert(layout); - - pango_layout_set_font_description (layout, - attributes.font_desc); - - pango_layout_get_extents (layout, NULL, &rect); - -#if 0 - g_object_unref(G_OBJECT(layout)); -#endif - - return PANGO_PIXELS(rect.width); -} - - -/* Return the number of pixels corresponding to a column of - WIDTH characters */ -static inline guint -columnWidthToPixels(GtkSheet *sheet, gint column, guint width) -{ - return (M_width(sheet, 0, column) * width); -} static gint -geometry_get_width(const GSheetColumn *geom, gint unit, GtkSheet *sheet) +geometry_get_width(const GSheetColumn *geom, gint unit) { - const struct PsppireVariable *pv ; + const struct variable *pv ; PsppireDataStore *ds = PSPPIRE_DATA_STORE(geom); if ( unit >= psppire_dict_get_var_cnt(ds->dict) ) - return 75; - - /* FIXME: We can optimise this by caching the widths until they're resized */ - pv = psppire_dict_get_variable(ds->dict, unit); - - return columnWidthToPixels(sheet, unit, psppire_variable_get_columns(pv)); -} + return ds->width_of_m * 8 ; + pv = psppire_dict_get_variable (ds->dict, unit); + if ( pv == NULL ) + return ds->width_of_m * 8 ; + return ds->width_of_m * var_get_display_width (pv); +} static void -geometry_set_width(GSheetColumn *geom, gint unit, gint width, GtkSheet *sheet) +geometry_set_width(GSheetColumn *geom, gint unit, gint width) { PsppireDataStore *ds = PSPPIRE_DATA_STORE(geom); - struct PsppireVariable *pv = psppire_dict_get_variable(ds->dict, unit); + struct variable *pv = psppire_dict_get_variable (ds->dict, unit); - psppire_variable_set_columns(pv, width / M_width(sheet, 1, unit)); + var_set_display_width (pv, width / ds->width_of_m ); } static GtkJustification -geometry_get_justification(const GSheetColumn *geom, gint unit, gpointer data) +geometry_get_justification(const GSheetColumn *geom, gint unit) { PsppireDataStore *ds = PSPPIRE_DATA_STORE(geom); - const struct PsppireVariable *pv ; + const struct variable *pv ; if ( unit >= psppire_dict_get_var_cnt(ds->dict) ) @@ -684,39 +712,37 @@ geometry_get_justification(const GSheetColumn *geom, gint unit, gpointer data) pv = psppire_dict_get_variable(ds->dict, unit); - /* Kludge: Happily GtkJustification is defined similarly - to enum alignment from pspp/variable.h */ - return psppire_variable_get_alignment(pv); + return (var_get_alignment (pv) == ALIGN_LEFT ? GTK_JUSTIFY_LEFT + : var_get_alignment (pv) == ALIGN_RIGHT ? GTK_JUSTIFY_RIGHT + : GTK_JUSTIFY_CENTER); } static const gchar null_var_name[]=N_("var"); static gchar * -geometry_get_column_button_label(const GSheetColumn *geom, gint unit, - gpointer data) +geometry_get_column_button_label(const GSheetColumn *geom, gint unit) { gchar *text; - struct PsppireVariable *pv ; + struct variable *pv ; PsppireDataStore *ds = PSPPIRE_DATA_STORE(geom); if ( unit >= psppire_dict_get_var_cnt(ds->dict) ) return g_locale_to_utf8(null_var_name, -1, 0, 0, 0); - pv = psppire_dict_get_variable(ds->dict, unit); + pv = psppire_dict_get_variable (ds->dict, unit); - text = pspp_locale_to_utf8(psppire_variable_get_name(pv), -1, 0); + text = pspp_locale_to_utf8 (var_get_name (pv), -1, 0); return text; } static gboolean -geometry_get_sensitivity(const GSheetColumn *geom, gint unit, gpointer data) +geometry_get_sensitivity(const GSheetColumn *geom, gint unit) { PsppireDataStore *ds = PSPPIRE_DATA_STORE(geom); - return (unit < psppire_dict_get_var_cnt(ds->dict)); } @@ -730,7 +756,6 @@ psppire_data_store_sheet_column_init (GSheetColumnIface *iface) iface->get_visibility = always_true; iface->get_sensitivity = geometry_get_sensitivity; iface->get_justification = geometry_get_justification; - iface->get_button_label = geometry_get_column_button_label; } @@ -796,7 +821,3 @@ psppire_data_store_sheet_row_init (GSheetRowIface *iface) iface->get_button_label = geometry_get_row_button_label; } - - - -