New module psppire-var-view
[pspp-builds.git] / src / ui / gui / t-test-one-sample.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007  Free Software Foundation
3
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.
8
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.
13
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/>.
16 */
17
18
19 #include <config.h>
20 #include <gtk/gtk.h>
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 "helper.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"
31 #include "executor.h"
32
33 #include "t-test-options.h"
34 #include <language/syntax-string-source.h>
35
36 #include <gettext.h>
37 #define _(msgid) gettext (msgid)
38 #define N_(msgid) msgid
39
40
41 struct tt_one_sample_dialog
42 {
43   PsppireDict *dict;
44   GtkWidget *vars_treeview;
45   GtkWidget *test_value_entry;
46   struct tt_options_dialog *opt;
47 };
48
49
50 static gchar *
51 generate_syntax (const struct tt_one_sample_dialog *d)
52 {
53   gchar *text;
54
55   GString *str = g_string_new ("T-TEST ");
56
57   g_string_append_printf (str, "/TESTVAL=%s",
58                           gtk_entry_get_text (GTK_ENTRY (d->test_value_entry)));
59
60   g_string_append (str, "\n\t/VARIABLES=");
61
62   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (d->vars_treeview), 0, str);
63
64   tt_options_dialog_append_syntax (d->opt, str);
65
66   g_string_append (str, ".\n");
67
68   text = str->str;
69
70   g_string_free (str, FALSE);
71
72   return text;
73 }
74
75
76
77 static void
78 refresh (const struct tt_one_sample_dialog *d)
79 {
80   GtkTreeModel *model =
81     gtk_tree_view_get_model (GTK_TREE_VIEW (d->vars_treeview));
82
83   gtk_entry_set_text (GTK_ENTRY (d->test_value_entry), "");
84
85   gtk_list_store_clear (GTK_LIST_STORE (model));
86 }
87
88
89
90 static gboolean
91 dialog_state_valid (gpointer data)
92 {
93   gchar *s = NULL;
94   const gchar *text;
95   struct tt_one_sample_dialog *tt_d = data;
96
97   GtkTreeModel *vars =
98     gtk_tree_view_get_model (GTK_TREE_VIEW (tt_d->vars_treeview));
99
100   GtkTreeIter notused;
101
102   text = gtk_entry_get_text (GTK_ENTRY (tt_d->test_value_entry));
103
104   if ( 0 == strcmp ("", text))
105     return FALSE;
106
107   /* Check to see if the entry is numeric */
108   g_strtod (text, &s);
109
110   if (s - text != strlen (text))
111     return FALSE;
112
113
114   if ( 0 == gtk_tree_model_get_iter_first (vars, &notused))
115     return FALSE;
116
117   return TRUE;
118 }
119
120
121 /* Pops up the dialog box */
122 void
123 t_test_one_sample_dialog (GObject *o, gpointer data)
124 {
125   struct tt_one_sample_dialog tt_d;
126   gint response;
127   PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
128
129   PsppireVarStore *vs = NULL;
130
131   GtkBuilder *xml = builder_new ("t-test.ui");
132
133   GtkWidget *dict_view =
134     get_widget_assert (xml, "one-sample-t-test-treeview2");
135
136   GtkWidget *options_button =
137     get_widget_assert (xml, "button1");
138
139   GtkWidget *dialog = get_widget_assert (xml, "t-test-one-sample-dialog");
140
141   g_object_get (de->data_editor, "var-store", &vs, NULL);
142
143   g_object_get (vs, "dictionary", &tt_d.dict, NULL);
144   tt_d.vars_treeview = get_widget_assert (xml, "one-sample-t-test-treeview1");
145   tt_d.test_value_entry = get_widget_assert (xml, "test-value-entry");
146   tt_d.opt = tt_options_dialog_create (xml, GTK_WINDOW (de));
147
148   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
149
150   g_object_set (dict_view, "model",
151                 tt_d.dict,
152                 "predicate",
153                 var_is_numeric, NULL);
154
155   g_signal_connect_swapped (dialog, "refresh",
156                             G_CALLBACK (refresh),  &tt_d);
157
158
159   g_signal_connect_swapped (options_button, "clicked",
160                             G_CALLBACK (tt_options_dialog_run), tt_d.opt);
161
162   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
163                                       dialog_state_valid, &tt_d);
164
165   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
166
167   switch (response)
168     {
169     case GTK_RESPONSE_OK:
170       {
171         gchar *syntax = generate_syntax (&tt_d);
172
173         struct getl_interface *sss = create_syntax_string_source (syntax);
174         execute_syntax (sss);
175
176         g_free (syntax);
177       }
178       break;
179     case PSPPIRE_RESPONSE_PASTE:
180       {
181         gchar *syntax = generate_syntax (&tt_d);
182
183         paste_syntax_in_new_window (syntax);
184
185         g_free (syntax);
186       }
187       break;
188     default:
189       break;
190     }
191
192
193   g_object_unref (xml);
194   tt_options_dialog_destroy (tt_d.opt);
195 }
196
197