1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007, 2010, 2011, 2012 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "t-test-one-sample.h"
22 #include "psppire-dict.h"
23 #include "psppire-var-store.h"
24 #include "psppire-var-view.h"
25 #include "builder-wrapper.h"
26 #include "psppire-data-window.h"
27 #include "psppire-dialog.h"
28 #include "dialog-common.h"
29 #include "dict-display.h"
30 #include "widget-io.h"
33 #include "t-test-options.h"
37 #define _(msgid) gettext (msgid)
38 #define N_(msgid) msgid
41 struct tt_one_sample_dialog
44 GtkWidget *vars_treeview;
45 GtkWidget *test_value_entry;
46 struct tt_options_dialog *opt;
51 generate_syntax (const struct tt_one_sample_dialog *d)
55 GString *str = g_string_new ("T-TEST ");
57 g_string_append_printf (str, "/TESTVAL=%s",
58 gtk_entry_get_text (GTK_ENTRY (d->test_value_entry)));
60 g_string_append (str, "\n\t/VARIABLES=");
62 psppire_var_view_append_names (PSPPIRE_VAR_VIEW (d->vars_treeview), 0, str);
64 tt_options_dialog_append_syntax (d->opt, str);
66 g_string_append (str, ".\n");
70 g_string_free (str, FALSE);
78 refresh (const struct tt_one_sample_dialog *d)
81 gtk_tree_view_get_model (GTK_TREE_VIEW (d->vars_treeview));
83 gtk_entry_set_text (GTK_ENTRY (d->test_value_entry), "");
85 gtk_list_store_clear (GTK_LIST_STORE (model));
91 dialog_state_valid (gpointer data)
95 struct tt_one_sample_dialog *tt_d = data;
98 gtk_tree_view_get_model (GTK_TREE_VIEW (tt_d->vars_treeview));
102 text = gtk_entry_get_text (GTK_ENTRY (tt_d->test_value_entry));
104 if ( 0 == strcmp ("", text))
107 /* Check to see if the entry is numeric */
110 if (s - text != strlen (text))
114 if ( 0 == gtk_tree_model_get_iter_first (vars, ¬used))
121 /* Pops up the dialog box */
123 t_test_one_sample_dialog (PsppireDataWindow *de)
125 struct tt_one_sample_dialog tt_d;
128 PsppireVarStore *vs = NULL;
130 GtkBuilder *xml = builder_new ("t-test.ui");
132 GtkWidget *dict_view =
133 get_widget_assert (xml, "one-sample-t-test-treeview2");
135 GtkWidget *options_button =
136 get_widget_assert (xml, "button1");
138 GtkWidget *dialog = get_widget_assert (xml, "t-test-one-sample-dialog");
140 g_object_get (de->data_editor, "var-store", &vs, NULL);
142 g_object_get (vs, "dictionary", &tt_d.dict, NULL);
143 tt_d.vars_treeview = get_widget_assert (xml, "one-sample-t-test-treeview1");
144 tt_d.test_value_entry = get_widget_assert (xml, "test-value-entry");
145 tt_d.opt = tt_options_dialog_create (GTK_WINDOW (de));
147 gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
149 g_object_set (dict_view, "model",
152 var_is_numeric, NULL);
154 g_signal_connect_swapped (dialog, "refresh",
155 G_CALLBACK (refresh), &tt_d);
158 g_signal_connect_swapped (options_button, "clicked",
159 G_CALLBACK (tt_options_dialog_run), tt_d.opt);
161 psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
162 dialog_state_valid, &tt_d);
164 response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
168 case GTK_RESPONSE_OK:
169 g_free (execute_syntax_string (de, generate_syntax (&tt_d)));
171 case PSPPIRE_RESPONSE_PASTE:
172 g_free (paste_syntax_to_window (generate_syntax (&tt_d)));
179 g_object_unref (xml);
180 tt_options_dialog_destroy (tt_d.opt);