Merge remote branch 'origin/master' into psppsheet
[pspp] / src / ui / gui / ks-one-sample-dialog.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 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 #include <config.h>
18
19 #include <ui/syntax-gen.h>
20 #include <libpspp/str.h>
21
22 #include "ks-one-sample-dialog.h"
23 #include "psppire-selector.h"
24 #include "psppire-dictview.h"
25 #include "psppire-dialog.h"
26
27 #include "psppire-data-window.h"
28 #include "psppire-var-view.h"
29
30 #include "executor.h"
31 #include "builder-wrapper.h"
32 #include "helper.h"
33
34 #include "dialog-common.h"
35
36 #include <gtk/gtk.h>
37
38 #include "gettext.h"
39 #define _(msgid) gettext (msgid)
40 #define N_(msgid) msgid
41
42
43 enum
44   {
45     CB_NORMAL,
46     CB_POISSON,
47     CB_UNIFORM,
48     CB_EXPONENTIAL
49   };
50
51 struct ks_one_sample
52 {
53   GtkBuilder *xml;
54   PsppireDict *dict;
55
56   GtkWidget *variables;
57   PsppireDataWindow *de ;
58
59   GtkWidget *cb[4];
60 };
61
62 static char * generate_syntax (const struct ks_one_sample *rd);
63
64
65 static void
66 refresh (struct ks_one_sample *fd)
67 {
68   int i;
69   GtkTreeModel *liststore =
70     gtk_tree_view_get_model (GTK_TREE_VIEW (fd->variables));
71   gtk_list_store_clear (GTK_LIST_STORE (liststore));
72
73   for (i = 0; i < 4; ++i)
74     gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fd->cb[i]), FALSE);
75 }
76
77
78 static gboolean
79 dialog_state_valid (gpointer data)
80 {
81   int i;
82   struct ks_one_sample *fd = data;
83
84   GtkTreeModel *liststore = gtk_tree_view_get_model (GTK_TREE_VIEW (fd->variables));
85
86   if  (gtk_tree_model_iter_n_children (liststore, NULL) < 1)
87     return FALSE;
88
89   for (i = 0; i < 4; ++i)
90     {
91       if ( TRUE == gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (fd->cb[i])))
92         break;
93     }
94   if ( i >= 4)
95     return FALSE;
96
97
98   return TRUE;
99 }
100
101
102 /* Pops up the Ks_One_Sample dialog box */
103 void
104 ks_one_sample_dialog (PsppireDataWindow *dw)
105 {
106   struct ks_one_sample fd;
107   gint response;
108
109   GtkWidget *dialog ;
110   GtkWidget *source ;
111
112   fd.xml = builder_new ("ks-one-sample.ui");
113
114   dialog = get_widget_assert   (fd.xml, "ks-one-sample-dialog");
115   source = get_widget_assert   (fd.xml, "dict-view");
116
117   fd.cb[CB_NORMAL] = get_widget_assert (fd.xml, "checkbutton-normal");
118   fd.cb[CB_POISSON] = get_widget_assert (fd.xml, "checkbutton-poisson");
119   fd.cb[CB_UNIFORM] = get_widget_assert (fd.xml, "checkbutton-uniform");
120   fd.cb[CB_EXPONENTIAL] = get_widget_assert (fd.xml, "checkbutton-exp");
121
122   fd.de = dw;
123
124   g_signal_connect_swapped (dialog, "refresh", G_CALLBACK (refresh),  &fd);
125
126
127   fd.variables = get_widget_assert   (fd.xml, "psppire-var-view1");
128
129   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (fd.de));
130
131   g_object_get (fd.de->data_editor, "dictionary", &fd.dict, NULL);
132   g_object_set (source, "model", fd.dict,
133                 "predicate", var_is_numeric,
134                 NULL);
135
136   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
137                                       dialog_state_valid, &fd);
138
139   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
140
141   switch (response)
142     {
143     case GTK_RESPONSE_OK:
144       g_free (execute_syntax_string (dw, generate_syntax (&fd)));
145       break;
146     case PSPPIRE_RESPONSE_PASTE:
147       g_free (paste_syntax_to_window (generate_syntax (&fd)));
148       break;
149     default:
150       break;
151     }
152
153   g_object_unref (fd.xml);
154 }
155
156
157 \f
158 static void
159 append_fragment (GString *string, const gchar *dist, PsppireVarView *vv)
160 {
161   g_string_append (string, "\n\t/KOLMOGOROV-SMIRNOV");
162
163   g_string_append (string, " ( ");
164   g_string_append (string, dist);
165   g_string_append (string, " ) = ");
166
167   psppire_var_view_append_names (vv, 0, string);
168 }
169
170
171 char *
172 generate_syntax (const struct ks_one_sample *rd)
173 {
174   gchar *text;
175
176   GString *string = g_string_new ("NPAR TEST");
177
178   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_NORMAL])))
179     append_fragment (string, "NORMAL", PSPPIRE_VAR_VIEW (rd->variables));
180
181   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_UNIFORM])))
182     append_fragment (string, "UNIFORM", PSPPIRE_VAR_VIEW (rd->variables));
183
184   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_POISSON])))
185     append_fragment (string, "POISSON", PSPPIRE_VAR_VIEW (rd->variables));
186
187   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_EXPONENTIAL])))
188     append_fragment (string, "EXPONENTIAL", PSPPIRE_VAR_VIEW (rd->variables));
189
190   g_string_append (string, ".\n");
191
192   text = string->str;
193
194   g_string_free (string, FALSE);
195
196   return text;
197 }