X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-descriptives.c;h=2d6cca337d4219d88691b5a0a85af3e8cdf83294;hb=258e45aa9b44b6a127e4f23c655f4740c04e05df;hp=170604c9458b8a9f26655d79be16cc3ea4aa7890;hpb=53508ccb5785dfcad8080d9dcdacdf3b7af5be76;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-descriptives.c b/src/ui/gui/psppire-dialog-action-descriptives.c index 170604c945..2d6cca337d 100644 --- a/src/ui/gui/psppire-dialog-action-descriptives.c +++ b/src/ui/gui/psppire-dialog-action-descriptives.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2012 Free Software Foundation + Copyright (C) 2015 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 @@ -19,7 +19,7 @@ #include "psppire-dialog-action-descriptives.h" -#include "checkbox-treeview.h" +#include "psppire-checkbox-treeview.h" #include "psppire-var-view.h" #include "psppire-dict.h" @@ -169,8 +169,10 @@ dialog_state_valid (gpointer data) } static void -dialog_refresh (PsppireDialogActionDescriptives *scd) +dialog_refresh (PsppireDialogAction *scd_) { + PsppireDialogActionDescriptives *scd + = PSPPIRE_DIALOG_ACTION_DESCRIPTIVES (scd_); GtkTreeModel *liststore; GtkTreeIter iter; size_t i; @@ -190,29 +192,35 @@ dialog_refresh (PsppireDialogActionDescriptives *scd) gtk_toggle_button_set_active (scd->save_z_scores, false); } + static void psppire_dialog_action_descriptives_activate (GtkAction *a) { PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionDescriptives *act = PSPPIRE_DIALOG_ACTION_DESCRIPTIVES (a); - GtkBuilder *xml = builder_new ("descriptives.ui"); - - GtkWidget *stats_treeview = get_widget_assert (xml, "statistics"); + GHashTable *thing = psppire_dialog_action_get_pointer (pda); + GtkBuilder *xml = g_hash_table_lookup (thing, a); + if (!xml) + { + xml = builder_new ("descriptives.ui"); + g_hash_table_insert (thing, a, xml); + + GtkWidget *stats_treeview = get_widget_assert (xml, "statistics"); + psppire_checkbox_treeview_populate (PSPPIRE_CHECKBOX_TREEVIEW (stats_treeview), + B_DS_DEFAULT, + N_DESCRIPTIVE_STATS, stats); + act->stats = gtk_tree_view_get_model (GTK_TREE_VIEW (stats_treeview)); + } pda->dialog = get_widget_assert (xml, "descriptives-dialog"); pda->source = get_widget_assert (xml, "all-variables"); act->variables = get_widget_assert (xml, "stat-variables"); - g_object_set (pda->source, "model", pda->dict, - "predicate", var_is_numeric, NULL); - - put_checkbox_items_in_treeview (GTK_TREE_VIEW (stats_treeview), - B_DS_DEFAULT, - N_DESCRIPTIVE_STATS, stats); + g_object_set (pda->source, + "predicate", var_is_numeric, NULL); act->stat_vars = GTK_TREE_VIEW (act->variables); - act->stats = gtk_tree_view_get_model (GTK_TREE_VIEW (stats_treeview)); act->include_user_missing = GTK_TOGGLE_BUTTON (get_widget_assert (xml, "include_user_missing")); @@ -230,7 +238,7 @@ psppire_dialog_action_descriptives_activate (GtkAction *a) static void psppire_dialog_action_descriptives_class_init (PsppireDialogActionDescriptivesClass *class) { - GTK_ACTION_CLASS (class)->activate = psppire_dialog_action_descriptives_activate; + psppire_dialog_action_set_activation (class, psppire_dialog_action_descriptives_activate); PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax; }