Remove unused GObject pointer from dialog functions and update signal connect functio...
[pspp-builds.git] / src / ui / gui / t-test-paired-samples.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2010  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   else
137     v1 = NULL;
138
139   if ( n_rows == 0 || v1 != NULL)
140     {
141       gtk_list_store_append (GTK_LIST_STORE (tt_d->list_store), &dest_iter);
142
143       gtk_list_store_set (GTK_LIST_STORE (tt_d->list_store), &dest_iter,
144                           0, v,
145                           1, NULL,
146                           -1);
147     }
148   else
149     {
150       gtk_list_store_set (GTK_LIST_STORE (tt_d->list_store), &dest_iter,
151                           1, v,
152                           -1);
153
154     }
155 }
156
157 /* Pops up the dialog box */
158 void
159 t_test_paired_samples_dialog (gpointer data)
160 {
161   struct tt_paired_samples_dialog tt_d;
162   gint response;
163   PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
164
165   PsppireVarStore *vs = NULL;
166
167   GtkBuilder *xml = builder_new ("t-test.ui");
168
169   GtkWidget *dict_view =
170     get_widget_assert (xml, "paired-samples-t-test-treeview1");
171
172   GtkWidget *options_button = get_widget_assert (xml, "paired-samples-t-test-options-button");
173
174   GtkWidget *selector = get_widget_assert (xml, "psppire-selector3");
175
176   GtkWidget *dialog = get_widget_assert (xml, "t-test-paired-samples-dialog");
177
178   g_object_get (de->data_editor, "var-store", &vs, NULL);
179
180   g_object_get (vs, "dictionary", &tt_d.dict, NULL);
181   tt_d.pairs_treeview =
182    get_widget_assert (xml, "paired-samples-t-test-treeview2");
183   tt_d.opt = tt_options_dialog_create (xml, GTK_WINDOW (de));
184
185   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
186
187
188   g_object_set (dict_view, "model", tt_d.dict,
189                 "predicate",
190                 var_is_numeric, NULL);
191
192   
193   tt_d.list_store = gtk_tree_view_get_model (GTK_TREE_VIEW (tt_d.pairs_treeview));
194
195   psppire_selector_set_select_func (PSPPIRE_SELECTOR (selector),
196                                     select_as_pair_member,
197                                     &tt_d);
198
199   g_signal_connect_swapped (dialog, "refresh",
200                             G_CALLBACK (refresh),  &tt_d);
201
202
203   g_signal_connect_swapped (options_button, "clicked",
204                             G_CALLBACK (tt_options_dialog_run), tt_d.opt);
205
206   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
207                                       dialog_state_valid, &tt_d);
208
209   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
210
211   switch (response)
212     {
213     case GTK_RESPONSE_OK:
214       {
215         gchar *syntax = generate_syntax (&tt_d);
216
217         struct getl_interface *sss = create_syntax_string_source (syntax);
218         execute_syntax (sss);
219
220         g_free (syntax);
221       }
222       break;
223     case PSPPIRE_RESPONSE_PASTE:
224       {
225         gchar *syntax = generate_syntax (&tt_d);
226         paste_syntax_in_new_window (syntax);
227
228         g_free (syntax);
229       }
230       break;
231     default:
232       break;
233     }
234
235
236   g_object_unref (xml);
237
238   tt_options_dialog_destroy (tt_d.opt);
239 }
240
241