New file: builder-wrapper.h and builder-wrapper.c
[pspp-builds.git] / 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   PsppireVarStore *vs;
110
111   GtkWidget *dialog ;
112   GtkWidget *source ;
113
114   fd.xml = builder_new ("ks-one-sample.ui");
115
116   dialog = get_widget_assert   (fd.xml, "ks-one-sample-dialog");
117   source = get_widget_assert   (fd.xml, "dict-view");
118
119   fd.cb[CB_NORMAL] = get_widget_assert (fd.xml, "checkbutton-normal");
120   fd.cb[CB_POISSON] = get_widget_assert (fd.xml, "checkbutton-poisson");
121   fd.cb[CB_UNIFORM] = get_widget_assert (fd.xml, "checkbutton-uniform");
122   fd.cb[CB_EXPONENTIAL] = get_widget_assert (fd.xml, "checkbutton-exp");
123
124   fd.de = dw;
125
126   g_signal_connect_swapped (dialog, "refresh", G_CALLBACK (refresh),  &fd);
127
128
129   fd.variables = get_widget_assert   (fd.xml, "psppire-var-view1");
130
131   g_object_get (fd.de->data_editor, "var-store", &vs, NULL);
132
133   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (fd.de));
134
135   g_object_get (vs, "dictionary", &fd.dict, NULL);
136   g_object_set (source, "model", fd.dict,
137                 "predicate", var_is_numeric,
138                 NULL);
139
140   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
141                                       dialog_state_valid, &fd);
142
143   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
144
145   switch (response)
146     {
147     case GTK_RESPONSE_OK:
148       g_free (execute_syntax_string (dw, generate_syntax (&fd)));
149       break;
150     case PSPPIRE_RESPONSE_PASTE:
151       g_free (paste_syntax_to_window (generate_syntax (&fd)));
152       break;
153     default:
154       break;
155     }
156
157   g_object_unref (fd.xml);
158 }
159
160
161 \f
162 static void
163 append_fragment (GString *string, const gchar *dist, PsppireVarView *vv)
164 {
165   g_string_append (string, "\n\t/KOLMOGOROV-SMIRNOV");
166
167   g_string_append (string, " ( ");
168   g_string_append (string, dist);
169   g_string_append (string, " ) = ");
170
171   psppire_var_view_append_names (vv, 0, string);
172 }
173
174
175 char *
176 generate_syntax (const struct ks_one_sample *rd)
177 {
178   gchar *text;
179
180   GString *string = g_string_new ("NPAR TEST");
181
182   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_NORMAL])))
183     append_fragment (string, "NORMAL", PSPPIRE_VAR_VIEW (rd->variables));
184
185   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_UNIFORM])))
186     append_fragment (string, "UNIFORM", PSPPIRE_VAR_VIEW (rd->variables));
187
188   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_POISSON])))
189     append_fragment (string, "POISSON", PSPPIRE_VAR_VIEW (rd->variables));
190
191   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->cb[CB_EXPONENTIAL])))
192     append_fragment (string, "EXPONENTIAL", PSPPIRE_VAR_VIEW (rd->variables));
193
194   g_string_append (string, ".\n");
195
196   text = string->str;
197
198   g_string_free (string, FALSE);
199
200   return text;
201 }