X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdescriptives-dialog.c;h=5a774902556e43e36e21e8a39cd3c90df6e5703f;hb=7c6e9646a94126a410fab4d00714396b98923230;hp=5af2e71ab4d1ae1239495fdb2aeae923587afc85;hpb=a9a69251edd625a50f271af5d64c157533b5fe48;p=pspp diff --git a/src/ui/gui/descriptives-dialog.c b/src/ui/gui/descriptives-dialog.c index 5af2e71ab4..5a77490255 100644 --- a/src/ui/gui/descriptives-dialog.c +++ b/src/ui/gui/descriptives-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2010 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 @@ -18,6 +18,7 @@ #include "checkbox-treeview.h" #include "descriptives-dialog.h" +#include "psppire-var-view.h" #include #include @@ -117,7 +118,7 @@ generate_syntax (const struct descriptives_dialog *scd) string = g_string_new ("DESCRIPTIVES"); g_string_append (string, "\n /VARIABLES="); - append_variable_names (string, scd->dict, GTK_TREE_VIEW (scd->stat_vars), 0); + psppire_var_view_append_names (PSPPIRE_VAR_VIEW (scd->stat_vars), 0, string); listwise = gtk_toggle_button_get_active (scd->exclude_missing_listwise); include = gtk_toggle_button_get_active (scd->include_user_missing); @@ -176,6 +177,9 @@ generate_syntax (const struct descriptives_dialog *scd) g_string_append (string, "."); + if (gtk_toggle_button_get_active (scd->save_z_scores)) + g_string_append (string, "\nEXECUTE."); + text = string->str; g_string_free (string, FALSE); @@ -199,10 +203,9 @@ dialog_state_valid (gpointer data) /* Pops up the Descriptives dialog box */ void -descriptives_dialog (GObject *o, gpointer data) +descriptives_dialog (PsppireDataWindow *de) { gint response; - PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data); struct descriptives_dialog scd; @@ -212,7 +215,6 @@ descriptives_dialog (GObject *o, gpointer data) GtkWidget *source = get_widget_assert (xml, "all-variables"); - GtkWidget *selector = get_widget_assert (xml, "stat-var-selector"); GtkWidget *dest = get_widget_assert (xml, "stat-variables"); GtkWidget *stats_treeview = get_widget_assert (xml, "statistics"); @@ -229,13 +231,6 @@ descriptives_dialog (GObject *o, gpointer data) g_object_set (source, "model", dict, "predicate", var_is_numeric, NULL); - set_dest_model (GTK_TREE_VIEW (dest), dict); - - psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector), - insert_source_row_into_tree_view, - NULL, - NULL); - put_checkbox_items_in_treeview (GTK_TREE_VIEW (stats_treeview), B_DS_DEFAULT, N_DESCRIPTIVE_STATS, stats); @@ -275,7 +270,7 @@ descriptives_dialog (GObject *o, gpointer data) case PSPPIRE_RESPONSE_PASTE: { gchar *syntax = generate_syntax (&scd); - paste_syntax_in_new_window (syntax); + paste_syntax_to_window (syntax); g_free (syntax); } break;