Remove unused code
[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 #include "psppire-var-view.h"
25
26 #include "psppire-dict.h"
27 #include "psppire-var-store.h"
28 #include "t-test-paired-samples.h"
29 #include "t-test-options.h"
30
31 #include "dialog-common.h"
32 #include "psppire-dialog.h"
33
34 #include "executor.h"
35
36 #include "helper.h"
37
38 #include "psppire-var-ptr.h"
39
40
41 #include <gettext.h>
42 #define _(msgid) gettext (msgid)
43 #define N_(msgid) msgid
44
45
46 struct tt_paired_samples_dialog
47 {
48   PsppireDict *dict;
49   GtkWidget *pairs_treeview;
50   GtkTreeModel *list_store;
51   struct tt_options_dialog *opt;
52 };
53
54 static gchar *
55 generate_syntax (const struct tt_paired_samples_dialog *d)
56 {
57   gchar *text = NULL;
58   GString *str =   g_string_new ("T-TEST \n\tPAIRS = ");
59
60   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (d->pairs_treeview), 0, str);
61
62   g_string_append (str, " WITH ");
63
64   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (d->pairs_treeview), 1, str);
65
66   g_string_append (str, " (PAIRED)");
67   g_string_append (str, "\n");
68
69   tt_options_dialog_append_syntax (d->opt, str);
70
71   g_string_append (str, ".\n");
72
73   text = str->str;
74   g_string_free (str, FALSE);
75
76   return text;
77 }
78
79 static void
80 refresh (struct tt_paired_samples_dialog *tt_d)
81 {
82   gtk_list_store_clear (GTK_LIST_STORE (tt_d->list_store));
83 }
84
85 static gboolean
86 dialog_state_valid (gpointer data)
87 {
88   struct variable *v = NULL;
89   struct tt_paired_samples_dialog *tt_d = data;
90   GtkTreeIter dest_iter;
91
92   gint n_rows = gtk_tree_model_iter_n_children  (tt_d->list_store, NULL);
93
94   if ( n_rows == 0 )
95     return FALSE;
96
97   /* Get the last row */
98   gtk_tree_model_iter_nth_child (tt_d->list_store, &dest_iter,
99                                  NULL, n_rows - 1);
100
101   /* Get the last (2nd) column */
102   gtk_tree_model_get (tt_d->list_store, &dest_iter, 1, &v, -1);
103
104
105   return (v != NULL);
106 }
107
108
109
110 static void
111 select_as_pair_member (GtkTreeIter source_iter,
112                        GtkWidget *dest,
113                        GtkTreeModel *source_model,
114                        gpointer data)
115 {
116   struct variable *v;
117   struct variable *v1;
118   gint n_rows;
119   GtkTreeIter dest_iter;
120   struct tt_paired_samples_dialog *tt_d = data;
121
122
123   gtk_tree_model_get (source_model, &source_iter,
124                       DICT_TVM_COL_VAR, &v, -1);
125
126   n_rows = gtk_tree_model_iter_n_children  (tt_d->list_store, NULL);
127
128   if ( n_rows > 0 )
129     {
130
131       gtk_tree_model_iter_nth_child (tt_d->list_store,
132                                      &dest_iter, NULL, n_rows - 1);
133
134       gtk_tree_model_get (tt_d->list_store, &dest_iter, 1, &v1, -1);
135     }
136
137   if ( n_rows == 0 || v1 != NULL)
138     {
139       gtk_list_store_append (GTK_LIST_STORE (tt_d->list_store), &dest_iter);
140
141       gtk_list_store_set (GTK_LIST_STORE (tt_d->list_store), &dest_iter,
142                           0, v,
143                           1, NULL,
144                           -1);
145     }
146   else
147     {
148       gtk_list_store_set (GTK_LIST_STORE (tt_d->list_store), &dest_iter,
149                           1, v,
150                           -1);
151
152     }
153 }
154
155 /* Pops up the dialog box */
156 void
157 t_test_paired_samples_dialog (GObject *o, gpointer data)
158 {
159   struct tt_paired_samples_dialog tt_d;
160   gint response;
161   PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
162
163   PsppireVarStore *vs = NULL;
164
165   GtkBuilder *xml = builder_new ("t-test.ui");
166
167   GtkWidget *dict_view =
168     get_widget_assert (xml, "paired-samples-t-test-treeview1");
169
170   GtkWidget *options_button = get_widget_assert (xml, "paired-samples-t-test-options-button");
171
172   GtkWidget *selector = get_widget_assert (xml, "psppire-selector3");
173
174   GtkWidget *dialog = get_widget_assert (xml, "t-test-paired-samples-dialog");
175
176   g_object_get (de->data_editor, "var-store", &vs, NULL);
177
178   g_object_get (vs, "dictionary", &tt_d.dict, NULL);
179   tt_d.pairs_treeview =
180    get_widget_assert (xml, "paired-samples-t-test-treeview2");
181   tt_d.opt = tt_options_dialog_create (xml, GTK_WINDOW (de));
182
183   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
184
185
186   g_object_set (dict_view, "model", tt_d.dict,
187                 "predicate",
188                 var_is_numeric, NULL);
189
190   
191   tt_d.list_store = gtk_tree_view_get_model (GTK_TREE_VIEW (tt_d.pairs_treeview));
192
193   psppire_selector_set_select_func (PSPPIRE_SELECTOR (selector),
194                                     select_as_pair_member,
195                                     &tt_d);
196
197   g_signal_connect_swapped (dialog, "refresh",
198                             G_CALLBACK (refresh),  &tt_d);
199
200
201   g_signal_connect_swapped (options_button, "clicked",
202                             G_CALLBACK (tt_options_dialog_run), tt_d.opt);
203
204   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
205                                       dialog_state_valid, &tt_d);
206
207   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
208
209   switch (response)
210     {
211     case GTK_RESPONSE_OK:
212       {
213         gchar *syntax = generate_syntax (&tt_d);
214
215         struct getl_interface *sss = create_syntax_string_source (syntax);
216         execute_syntax (sss);
217
218         g_free (syntax);
219       }
220       break;
221     case PSPPIRE_RESPONSE_PASTE:
222       {
223         gchar *syntax = generate_syntax (&tt_d);
224         paste_syntax_in_new_window (syntax);
225
226         g_free (syntax);
227       }
228       break;
229     default:
230       break;
231     }
232
233
234   g_object_unref (xml);
235
236   tt_options_dialog_destroy (tt_d.opt);
237 }
238
239