X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvariable-info-dialog.c;h=d5b41a98686cb13172f22c1e1e69f2ccded41617;hb=1aa87f10e686eb09df296411d8ebfa28fa151860;hp=fa9d51011e8d2fec88b14cd2439d606a65836fd3;hpb=5c3291dc396b795696e94f47780308fd7ace6fc4;p=pspp diff --git a/src/ui/gui/variable-info-dialog.c b/src/ui/gui/variable-info-dialog.c index fa9d51011e..d5b41a9868 100644 --- a/src/ui/gui/variable-info-dialog.c +++ b/src/ui/gui/variable-info-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007, 2009 Free Software Foundation + Copyright (C) 2007, 2009, 2010, 2011 Free Software Foundation 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 @@ -17,19 +17,20 @@ #include #include -#include "var-display.h" #include #include #include +#include + +#include "variable-info-dialog.h" +#include "var-display.h" + #include "psppire-data-window.h" #include "psppire-dialog.h" -#include "psppire-var-store.h" #include "psppire-dictview.h" +#include "psppire-var-store.h" #include "helper.h" -#include -#include -#include "helper.h" #include @@ -40,33 +41,21 @@ static const gchar none[] = N_("None"); -static gchar * -name_to_string (const struct variable *var, PsppireDict *dict) -{ - const char *name = var_get_name (var); - g_assert (name); - - return recode_string (UTF8, psppire_dict_encoding (dict), - name, -1); -} - - -static gchar * -label_to_string (const struct variable *var, PsppireDict *dict) +static const gchar * +label_to_string (const struct variable *var) { const char *label = var_get_label (var); - if (! label) return g_strdup (none); + if (NULL == label) return g_strdup (none); - return recode_string (UTF8, psppire_dict_encoding (dict), - label, -1); + return label; } static void populate_text (PsppireDictView *treeview, gpointer data) { - gchar *text = 0; + gchar *text = NULL; GString *gstring; PsppireDict *dict; @@ -77,21 +66,15 @@ populate_text (PsppireDictView *treeview, gpointer data) if ( var == NULL) return; - g_object_get (treeview, - "dictionary", &dict, + g_object_get (treeview, "model", &dict, NULL); gstring = g_string_sized_new (200); - text = name_to_string (var, dict); - g_string_assign (gstring, text); - g_free (text); + g_string_assign (gstring, var_get_name (var)); g_string_append (gstring, "\n"); - text = label_to_string (var, dict); - g_string_append_printf (gstring, _("Label: %s\n"), text); - g_free (text); - + g_string_append_printf (gstring, _("Label: %s\n"), label_to_string (var)); { const struct fmt_spec *fmt = var_get_print_format (var); char buffer[FMT_STRING_LEN_MAX + 1]; @@ -106,11 +89,8 @@ populate_text (PsppireDictView *treeview, gpointer data) text); g_free (text); - text = measure_to_string (var, NULL); g_string_append_printf (gstring, _("Measurement Level: %s\n"), - text); - g_free (text); - + measure_to_string (var_get_measure (var))); /* Value Labels */ @@ -129,15 +109,11 @@ populate_text (PsppireDictView *treeview, gpointer data) for (i = 0; i < n_labels; i++) { const struct val_lab *vl = labels[i]; - gchar *const vstr = - value_to_text (vl->value, *var_get_print_format (var)); - - text = recode_string (UTF8, psppire_dict_encoding (dict), - val_lab_get_label (vl), -1); + gchar *const vstr = value_to_text (vl->value, var); - g_string_append_printf (gstring, _("%s %s\n"), vstr, text); + g_string_append_printf (gstring, _("%s %s\n"), + vstr, val_lab_get_escaped_label (vl)); - g_free (text); g_free (vstr); } free (labels); @@ -167,26 +143,25 @@ static gchar * generate_syntax (PsppireDictView *treeview); void -variable_info_dialog (GObject *o, gpointer data) +variable_info_dialog (PsppireDataWindow *de) { - PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data); - gint response ; - GtkBuilder *xml = builder_new ("variable-info-dialog.ui"); + GtkBuilder *xml = builder_new ("variable-info.ui"); GtkWidget *dialog = get_widget_assert (xml, "variable-info-dialog"); GtkWidget *treeview = get_widget_assert (xml, "treeview2"); GtkWidget *textview = get_widget_assert (xml, "textview1"); PsppireVarStore *vs = NULL; + PsppireDict *dict = NULL; g_object_get (de->data_editor, "var-store", &vs, NULL); gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de)); - g_object_set (treeview, - "dictionary", vs->dict, + g_object_get (vs, "dictionary", &dict, NULL); + g_object_set (treeview, "model", dict, "selection-mode", GTK_SELECTION_SINGLE, NULL); @@ -220,7 +195,7 @@ variable_info_dialog (GObject *o, gpointer data) case PSPPIRE_RESPONSE_PASTE: { gchar *syntax = generate_syntax (PSPPIRE_DICT_VIEW (treeview)); - paste_syntax_in_new_window (syntax); + paste_syntax_to_window (syntax); g_free (syntax); }