Add "dictionary" property to PsppireVarStore and use it.
[pspp-builds.git] / src / ui / gui / t-test-paired-samples.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008  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 #include <config.h>
19 #include <gtk/gtk.h>
20 #include <language/syntax-string-source.h>
21
22 #include "psppire-data-window.h"
23 #include "psppire-selector.h"
24
25 #include "psppire-dict.h"
26 #include "psppire-var-store.h"
27 #include "t-test-paired-samples.h"
28 #include "t-test-options.h"
29
30 #include "dialog-common.h"
31 #include "psppire-dialog.h"
32
33 #include "executor.h"
34
35 #include "helper.h"
36
37 #include "psppire-var-ptr.h"
38
39
40 #include <gettext.h>
41 #define _(msgid) gettext (msgid)
42 #define N_(msgid) msgid
43
44
45 struct tt_paired_samples_dialog
46 {
47   PsppireDict *dict;
48   GtkWidget *pairs_treeview;
49   GtkTreeModel *list_store;
50   struct tt_options_dialog *opt;
51 };
52
53 static gchar *
54 generate_syntax (const struct tt_paired_samples_dialog *d)
55 {
56   gchar *text = NULL;
57   GString *str =   g_string_new ("T-TEST \n\tPAIRS = ");
58
59   append_variable_names (str, d->dict, GTK_TREE_VIEW (d->pairs_treeview), 0);
60
61   g_string_append (str, " WITH ");
62
63   append_variable_names (str, d->dict, GTK_TREE_VIEW (d->pairs_treeview), 1);
64
65   g_string_append (str, " (PAIRED)");
66   g_string_append (str, "\n");
67
68   tt_options_dialog_append_syntax (d->opt, str);
69
70   g_string_append (str, ".\n");
71
72   text = str->str;
73   g_string_free (str, FALSE);
74
75   return text;
76 }
77
78 static void
79 refresh (struct tt_paired_samples_dialog *tt_d)
80 {
81   gtk_list_store_clear (GTK_LIST_STORE (tt_d->list_store));
82 }
83
84 static gboolean
85 dialog_state_valid (gpointer data)
86 {
87   struct variable *v = NULL;
88   struct tt_paired_samples_dialog *tt_d = data;
89   GtkTreeIter dest_iter;
90
91   gint n_rows = gtk_tree_model_iter_n_children  (tt_d->list_store, NULL);
92
93   if ( n_rows == 0 )
94     return FALSE;
95
96   /* Get the last row */
97   gtk_tree_model_iter_nth_child (tt_d->list_store, &dest_iter,
98                                  NULL, n_rows - 1);
99
100   /* Get the last (2nd) column */
101   gtk_tree_model_get (tt_d->list_store, &dest_iter, 1, &v, -1);
102
103
104   return (v != NULL);
105 }
106
107
108
109 static void
110 select_as_pair_member (GtkTreeIter source_iter,
111                        GtkWidget *dest,
112                        GtkTreeModel *source_model,
113                        gpointer data)
114 {
115   struct variable *v;
116   struct variable *v1;
117   gint n_rows;
118   GtkTreeIter dest_iter;
119   struct tt_paired_samples_dialog *tt_d = data;
120
121
122   gtk_tree_model_get (source_model, &source_iter,
123                       DICT_TVM_COL_VAR, &v, -1);
124
125   n_rows = gtk_tree_model_iter_n_children  (tt_d->list_store, NULL);
126
127   if ( n_rows > 0 )
128     {
129
130       gtk_tree_model_iter_nth_child (tt_d->list_store,
131                                      &dest_iter, NULL, n_rows - 1);
132
133       gtk_tree_model_get (tt_d->list_store, &dest_iter, 1, &v1, -1);
134     }
135
136   if ( n_rows == 0 || v1 != NULL)
137     {
138       gtk_list_store_append (GTK_LIST_STORE (tt_d->list_store), &dest_iter);
139
140       gtk_list_store_set (GTK_LIST_STORE (tt_d->list_store), &dest_iter,
141                           0, v,
142                           1, NULL,
143                           -1);
144     }
145   else
146     {
147       gtk_list_store_set (GTK_LIST_STORE (tt_d->list_store), &dest_iter,
148                           1, v,
149                           -1);
150
151     }
152 }
153
154
155 /* Append a new column to TV at position C, and heading TITLE */
156 static void
157 add_new_column (GtkTreeView *tv, const gchar *title, gint c)
158 {
159   GtkTreeViewColumn *col = gtk_tree_view_column_new ();
160   GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
161
162   gtk_tree_view_column_set_min_width (col, 100);
163   gtk_tree_view_column_set_sizing (col, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
164   gtk_tree_view_column_set_resizable (col, TRUE);
165
166
167   gtk_tree_view_column_set_title (col, title);
168
169   gtk_tree_view_column_pack_start (col, renderer, TRUE);
170
171   gtk_tree_view_column_set_sizing (col, GTK_TREE_VIEW_COLUMN_FIXED);
172
173   gtk_tree_view_append_column (tv, col);
174
175   gtk_tree_view_column_add_attribute  (col, renderer, "text", c);
176 }
177
178
179 /* Pops up the dialog box */
180 void
181 t_test_paired_samples_dialog (GObject *o, gpointer data)
182 {
183   struct tt_paired_samples_dialog tt_d;
184   gint response;
185   PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
186
187   PsppireVarStore *vs = NULL;
188
189   GtkBuilder *xml = builder_new ("t-test.ui");
190
191   GtkWidget *dict_view =
192     get_widget_assert (xml, "paired-samples-t-test-treeview1");
193
194   GtkWidget *options_button = get_widget_assert (xml, "paired-samples-t-test-options-button");
195
196   GtkWidget *selector = get_widget_assert (xml, "psppire-selector3");
197
198   GtkWidget *dialog = get_widget_assert (xml, "t-test-paired-samples-dialog");
199
200   g_object_get (de->data_editor, "var-store", &vs, NULL);
201
202   g_object_get (vs, "dictionary", &tt_d.dict, NULL);
203   tt_d.pairs_treeview =
204    get_widget_assert (xml, "paired-samples-t-test-treeview2");
205   tt_d.opt = tt_options_dialog_create (xml, GTK_WINDOW (de));
206
207   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
208
209
210   g_object_set (dict_view, "dictionary", tt_d.dict,
211                 "predicate",
212                 var_is_numeric, NULL);
213
214   {
215     tt_d.list_store =
216       GTK_TREE_MODEL (
217                       gtk_list_store_new (2,
218                                           PSPPIRE_VAR_PTR_TYPE,
219                                           PSPPIRE_VAR_PTR_TYPE));
220
221
222     gtk_tree_view_set_model (GTK_TREE_VIEW (tt_d.pairs_treeview),
223                              GTK_TREE_MODEL (tt_d.list_store));
224
225
226     add_new_column (GTK_TREE_VIEW (tt_d.pairs_treeview), _("Var 1"), 0);
227     add_new_column (GTK_TREE_VIEW (tt_d.pairs_treeview), _("Var 2"), 1);
228   }
229
230
231   psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector),
232                                  dict_view,
233                                  tt_d.pairs_treeview,
234                                  select_as_pair_member,
235                                  NULL,
236                                  &tt_d);
237
238
239   g_signal_connect_swapped (dialog, "refresh",
240                             G_CALLBACK (refresh),  &tt_d);
241
242
243   g_signal_connect_swapped (options_button, "clicked",
244                             G_CALLBACK (tt_options_dialog_run), tt_d.opt);
245
246   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
247                                       dialog_state_valid, &tt_d);
248
249   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
250
251   switch (response)
252     {
253     case GTK_RESPONSE_OK:
254       {
255         gchar *syntax = generate_syntax (&tt_d);
256
257         struct getl_interface *sss = create_syntax_string_source (syntax);
258         execute_syntax (sss);
259
260         g_free (syntax);
261       }
262       break;
263     case PSPPIRE_RESPONSE_PASTE:
264       {
265         gchar *syntax = generate_syntax (&tt_d);
266         paste_syntax_in_new_window (syntax);
267
268         g_free (syntax);
269       }
270       break;
271     default:
272       break;
273     }
274
275
276   g_object_unref (xml);
277
278   tt_options_dialog_destroy (tt_d.opt);
279 }
280
281