Convert kmeans dialog to a PsppireDialogAction
[pspp-builds.git] / src / ui / gui / roc-dialog.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2009, 2010, 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 "dialog-common.h"
20 #include <ui/syntax-gen.h>
21 #include <libpspp/str.h>
22
23 #include "roc-dialog.h"
24 #include "psppire-selector.h"
25 #include "psppire-dictview.h"
26 #include "psppire-dialog.h"
27
28 #include "psppire-data-window.h"
29 #include "psppire-var-view.h"
30
31 #include "executor.h"
32 #include "builder-wrapper.h"
33 #include "helper.h"
34
35 #include <gtk/gtk.h>
36
37 #include "gettext.h"
38 #define _(msgid) gettext (msgid)
39 #define N_(msgid) msgid
40
41
42 struct roc
43 {
44   PsppireDict *dict;
45
46   GtkWidget *test_variables;
47   GtkWidget *state_variable;
48   GtkWidget *state_value;
49
50   GtkWidget *curve;
51   GtkWidget *reference;
52   GtkWidget *standard_error;
53   GtkWidget *coordinates;
54 };
55
56
57 static char * generate_syntax (const struct roc *rd);
58
59
60 static void
61 refresh (struct roc *rd)
62 {
63   GtkTreeModel *liststore =
64     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->test_variables));
65   gtk_list_store_clear (GTK_LIST_STORE (liststore));
66
67   gtk_entry_set_text (GTK_ENTRY (rd->state_variable), "");
68   gtk_entry_set_text (GTK_ENTRY (rd->state_value), "");
69
70   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->curve),          TRUE);
71   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->reference),      FALSE);
72   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->standard_error), FALSE);
73   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->coordinates),    FALSE);
74 }
75
76
77 static gboolean
78 dialog_state_valid (gpointer data)
79 {
80   struct roc *rd = data;
81   const gchar *text;
82
83   GtkTreeModel *liststore =
84     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->test_variables));
85
86   if  (gtk_tree_model_iter_n_children (liststore, NULL) < 1)
87     return FALSE;
88
89   
90   text = gtk_entry_get_text (GTK_ENTRY (rd->state_variable));
91   if ( 0 == strcmp ("", text))
92     return FALSE;
93
94
95   text = gtk_entry_get_text (GTK_ENTRY (rd->state_value));
96   if ( 0 == strcmp ("", text))
97     return FALSE;
98
99
100   return TRUE;
101 }
102
103 static void
104 on_curve_button_toggle  (GtkCheckButton *curve, struct roc *rd)
105 {
106   if ( !gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (curve)))
107     {
108       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->reference)))
109         g_object_set (rd->reference, "inconsistent", TRUE, NULL);
110       g_object_set (rd->reference, "sensitive", FALSE, NULL);
111     }
112   else 
113     {
114       g_object_set (rd->reference, "inconsistent", FALSE, NULL);
115       g_object_set (rd->reference, "sensitive", TRUE, NULL);
116     }
117 }
118
119
120 /* Pops up the Roc dialog box */
121 void
122 roc_dialog (PsppireDataWindow *de)
123 {
124   struct roc rd;
125   gint response;
126
127   GtkBuilder *xml = builder_new ("roc.ui");
128   PsppireVarStore *vs;
129
130   GtkWidget *dialog = get_widget_assert   (xml, "roc-dialog");
131   GtkWidget *source = get_widget_assert   (xml, "dict-view");
132
133   rd.test_variables    = get_widget_assert   (xml, "psppire-var-view1");
134   rd.state_variable    = get_widget_assert   (xml, "entry1");
135   rd.state_value       = get_widget_assert   (xml, "entry2");
136
137   rd.curve          = get_widget_assert   (xml, "curve");
138   rd.reference      = get_widget_assert   (xml, "reference-line");
139   rd.standard_error = get_widget_assert   (xml, "standard-error");
140   rd.coordinates    = get_widget_assert   (xml, "co-ordinates");
141
142
143   g_object_get (de->data_editor, "var-store", &vs, NULL);
144
145   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
146
147   g_object_get (vs, "dictionary", &rd.dict, NULL);
148   g_object_set (source, "model", rd.dict, NULL);
149
150   g_signal_connect (rd.curve, "toggled", G_CALLBACK (on_curve_button_toggle), &rd);
151
152   g_signal_connect_swapped (dialog, "refresh", G_CALLBACK (refresh),  &rd);
153
154   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
155                                       dialog_state_valid, &rd);
156
157   psppire_selector_set_allow (PSPPIRE_SELECTOR (get_widget_assert (xml, "dep-selector")),
158                               numeric_only);
159
160   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
161
162   switch (response)
163     {
164     case GTK_RESPONSE_OK:
165       g_free (execute_syntax_string (de, generate_syntax (&rd)));
166       break;
167     case PSPPIRE_RESPONSE_PASTE:
168       g_free (paste_syntax_to_window (generate_syntax (&rd)));
169       break;
170     default:
171       break;
172     }
173
174   g_object_unref (xml);
175 }
176
177
178 \f
179
180 static char *
181 generate_syntax (const struct roc *rd)
182 {
183   gchar *text;
184   const gchar *var_name = gtk_entry_get_text (GTK_ENTRY (rd->state_variable));
185   GString *string = g_string_new ("ROC");
186
187   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->test_variables), 0, string);
188
189   g_string_append (string, " BY ");
190
191   g_string_append (string, var_name);
192
193   g_string_append (string, " (");
194   {
195     const gchar *value = gtk_entry_get_text (GTK_ENTRY (rd->state_value));
196
197     const struct variable *var = psppire_dict_lookup_var (rd->dict, var_name);
198
199     g_return_val_if_fail (var, NULL);
200
201     if ( var_is_alpha (var))
202       {
203         struct string xx;
204         ds_init_empty (&xx);
205         syntax_gen_string (&xx, ss_cstr (value));
206         g_string_append (string, ds_cstr (&xx));
207         ds_destroy (&xx);
208       }
209     else
210       g_string_append (string, value);
211   }
212   g_string_append (string, ")");
213
214
215   /* The /PLOT subcommand */
216   g_string_append (string, "\n\t/PLOT ");
217   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->curve)))
218     {
219       g_string_append (string, "CURVE");
220       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->reference)))
221         g_string_append (string, " (REFERENCE)");
222     }
223   else
224     g_string_append (string, "NONE");
225
226
227   /* The /PRINT subcommand */
228   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)) ||
229        gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)) )
230     {
231       g_string_append (string, "\n\t/PRINT");
232
233       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)))
234         g_string_append (string, " SE");
235
236       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)))
237         g_string_append (string, " COORDINATES");
238     }
239
240   g_string_append (string, ".\n");
241
242   text = string->str;
243
244   g_string_free (string, FALSE);
245
246   return text;
247 }