New file: builder-wrapper.h and builder-wrapper.c
[pspp-builds.git] / src / ui / gui / t-test-one-sample.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007, 2010, 2011, 2012  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 "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"
31 #include "executor.h"
32
33 #include "t-test-options.h"
34 #include "helper.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 (PsppireDataWindow *de)
124 {
125   struct tt_one_sample_dialog tt_d;
126   gint response;
127
128   PsppireVarStore *vs = NULL;
129
130   GtkBuilder *xml = builder_new ("t-test.ui");
131
132   GtkWidget *dict_view =
133     get_widget_assert (xml, "one-sample-t-test-treeview2");
134
135   GtkWidget *options_button =
136     get_widget_assert (xml, "button1");
137
138   GtkWidget *dialog = get_widget_assert (xml, "t-test-one-sample-dialog");
139
140   g_object_get (de->data_editor, "var-store", &vs, NULL);
141
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));
146
147   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
148
149   g_object_set (dict_view, "model",
150                 tt_d.dict,
151                 "predicate",
152                 var_is_numeric, NULL);
153
154   g_signal_connect_swapped (dialog, "refresh",
155                             G_CALLBACK (refresh),  &tt_d);
156
157
158   g_signal_connect_swapped (options_button, "clicked",
159                             G_CALLBACK (tt_options_dialog_run), tt_d.opt);
160
161   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
162                                       dialog_state_valid, &tt_d);
163
164   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
165
166   switch (response)
167     {
168     case GTK_RESPONSE_OK:
169       g_free (execute_syntax_string (de, generate_syntax (&tt_d)));
170       break;
171     case PSPPIRE_RESPONSE_PASTE:
172       g_free (paste_syntax_to_window (generate_syntax (&tt_d)));
173       break;
174     default:
175       break;
176     }
177
178
179   g_object_unref (xml);
180   tt_options_dialog_destroy (tt_d.opt);
181 }
182
183