6896ef7b2d183997c63dc5183eec9f192e8af811
[pspp-builds.git] / src / ui / gui / roc-dialog.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2009  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 <language/syntax-string-source.h>
21 #include <ui/syntax-gen.h>
22 #include <libpspp/str.h>
23
24 #include "roc-dialog.h"
25 #include "psppire-selector.h"
26 #include "psppire-dictview.h"
27 #include "psppire-dialog.h"
28
29 #include "psppire-data-window.h"
30 #include "psppire-var-view.h"
31
32 #include "executor.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
104 /* Pops up the Roc dialog box */
105 void
106 roc_dialog (GObject *o, gpointer data)
107 {
108   struct roc rd;
109   gint response;
110
111   GtkBuilder *xml = builder_new ("roc.ui");
112   PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
113   PsppireVarStore *vs;
114
115   GtkWidget *dialog = get_widget_assert   (xml, "roc-dialog");
116   GtkWidget *source = get_widget_assert   (xml, "dict-view");
117
118   rd.test_variables    = get_widget_assert   (xml, "psppire-var-view1");
119   rd.state_variable    = get_widget_assert   (xml, "entry1");
120   rd.state_value       = get_widget_assert   (xml, "entry2");
121
122   rd.curve          = get_widget_assert   (xml, "curve");
123   rd.reference      = get_widget_assert   (xml, "reference-line");
124   rd.standard_error = get_widget_assert   (xml, "standard-error");
125   rd.coordinates    = get_widget_assert   (xml, "co-ordinates");
126
127
128   g_object_get (de->data_editor, "var-store", &vs, NULL);
129
130   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
131
132   g_object_get (vs, "dictionary", &rd.dict, NULL);
133   g_object_set (source, "model", rd.dict, NULL);
134
135   g_signal_connect_swapped (dialog, "refresh", G_CALLBACK (refresh),  &rd);
136
137   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
138                                       dialog_state_valid, &rd);
139
140   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
141
142   switch (response)
143     {
144     case GTK_RESPONSE_OK:
145       {
146         gchar *syntax = generate_syntax (&rd);
147
148         struct getl_interface *sss = create_syntax_string_source (syntax);
149         execute_syntax (sss);
150
151         g_free (syntax);
152       }
153       break;
154     case PSPPIRE_RESPONSE_PASTE:
155       {
156         gchar *syntax = generate_syntax (&rd);
157         paste_syntax_in_new_window (syntax);
158
159         g_free (syntax);
160       }
161       break;
162     default:
163       break;
164     }
165
166   g_object_unref (xml);
167 }
168
169
170 \f
171
172 static char *
173 generate_syntax (const struct roc *rd)
174 {
175   gchar *text;
176   const gchar *var_name = gtk_entry_get_text (GTK_ENTRY (rd->state_variable));
177   GString *string = g_string_new ("ROC");
178
179   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->test_variables), 0, string);
180
181   g_string_append (string, " BY ");
182
183   g_string_append (string, var_name);
184
185   g_string_append (string, " (");
186   {
187     const gchar *value = gtk_entry_get_text (GTK_ENTRY (rd->state_value));
188
189     const struct variable *var = psppire_dict_lookup_var (rd->dict, var_name);
190
191     g_return_val_if_fail (var, NULL);
192
193     if ( var_is_alpha (var))
194       {
195         struct string xx;
196         ds_init_empty (&xx);
197         syntax_gen_string (&xx, ss_cstr (value));
198         g_string_append (string, ds_cstr (&xx));
199         ds_destroy (&xx);
200       }
201     else
202       g_string_append (string, value);
203   }
204   g_string_append (string, ")");
205
206
207   /* The /PLOT subcommand */
208   g_string_append (string, "\n\t/PLOT ");
209   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->curve)))
210     {
211       g_string_append (string, "CURVE");
212       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->reference)))
213         g_string_append (string, " (REFERENCE)");
214     }
215   else
216     g_string_append (string, "NONE");
217
218
219   /* The /PRINT subcommand */
220   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)) ||
221        gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)) )
222     {
223       g_string_append (string, "\n\t/PRINT");
224
225       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)))
226         g_string_append (string, " SE");
227
228       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)))
229         g_string_append (string, " COORDINATES");
230     }
231
232   g_string_append (string, ".\n");
233
234   text = string->str;
235
236   g_string_free (string, FALSE);
237
238   return text;
239 }