X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-means.c;h=7ff11177decf5bcd78a799f551f473afc603432c;hb=6c9aa9259c46de52cc57493ccc80f40f3eef9b17;hp=8d378e221a76ac1931b6b08dba8620e810bdc794;hpb=2b4fb7e846d62f1a70656bb42a0f769363ed0832;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-means.c b/src/ui/gui/psppire-dialog-action-means.c index 8d378e221a..7ff11177de 100644 --- a/src/ui/gui/psppire-dialog-action-means.c +++ b/src/ui/gui/psppire-dialog-action-means.c @@ -36,7 +36,7 @@ G_DEFINE_TYPE (PsppireDialogActionMeans, psppire_dialog_action_means, PSPPIRE_TY static char * -generate_syntax (PsppireDialogAction *act) +generate_syntax (const PsppireDialogAction *act) { gint l; PsppireDialogActionMeans *scd = PSPPIRE_DIALOG_ACTION_MEANS (act); @@ -47,22 +47,21 @@ generate_syntax (PsppireDialogAction *act) for (l = 0; l < layer->n_layers; ++l) { - gboolean ok; GtkTreeIter iter; - PsppireVarView *vv = PSPPIRE_VAR_VIEW (layer->var_view); - psppire_var_view_set_current_model (vv, l); - g_string_append (string, "\n\tBY"); - for (ok = psppire_var_view_get_iter_first (vv, &iter); - ok; - ok = psppire_var_view_get_iter_next (vv, &iter)) + + GtkTreeModel *m = psppire_means_layer_get_model_n (layer, l); + gboolean ok = gtk_tree_model_get_iter_first (m, &iter); + if (ok) + g_string_append (string, "\n\tBY"); + for (; ok; ok = gtk_tree_model_iter_next (m, &iter)) { - const struct variable *var = psppire_var_view_get_variable (vv, 0, &iter); + const struct variable *var = psppire_var_view_get_var_from_model (m, 0, &iter); g_string_append (string, " "); g_string_append (string, var_get_name (var)); } } - g_string_append (string, "."); + g_string_append (string, ".\n"); text = string->str; g_string_free (string, FALSE); @@ -93,28 +92,37 @@ dialog_refresh (PsppireDialogAction *da) } static void -psppire_dialog_action_means_activate (GtkAction *a) +psppire_dialog_action_means_activate (PsppireDialogAction *a) { PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionMeans *act = PSPPIRE_DIALOG_ACTION_MEANS (a); - GtkBuilder *xml = builder_new ("means.ui"); + GHashTable *thing = psppire_dialog_action_get_hash_table (pda); + GtkBuilder *xml = g_hash_table_lookup (thing, a); + if (!xml) + { + xml = builder_new ("means.ui"); + g_hash_table_insert (thing, a, xml); - GtkWidget *vb = get_widget_assert (xml, "alignment3"); - act->layer = psppire_means_layer_new (); - gtk_container_add (GTK_CONTAINER (vb), act->layer); - gtk_widget_show (act->layer); + GtkWidget *vb = get_widget_assert (xml, "frame2"); + act->layer = psppire_means_layer_new (); + gtk_container_add (GTK_CONTAINER (vb), act->layer); + gtk_widget_show (act->layer); + } + + GtkWidget *selector = get_widget_assert (xml, "layer-selector"); - pda->dialog = get_widget_assert (xml, "means-dialog"); - pda->source = get_widget_assert (xml, "all-variables"); - act->variables = get_widget_assert (xml, "stat-variables"); + pda->dialog = get_widget_assert (xml, "means-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); - psppire_means_layer_set_source (PSPPIRE_MEANS_LAYER (act->layer), pda->source); + g_object_set (selector, + "dest-widget", act->layer, + NULL); psppire_dialog_action_set_valid_predicate (pda, (void *) dialog_state_valid); psppire_dialog_action_set_refresh (pda, dialog_refresh); @@ -125,7 +133,7 @@ psppire_dialog_action_means_activate (GtkAction *a) static void psppire_dialog_action_means_class_init (PsppireDialogActionMeansClass *class) { - GTK_ACTION_CLASS (class)->activate = psppire_dialog_action_means_activate; + psppire_dialog_action_set_activation (class, psppire_dialog_action_means_activate); PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax; }