9f44f7ad44826c8f408678698bc4aaf50dcb22a3
[pspp] / src / ui / gui / psppire-dialog-action-roc.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 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
18 #include <config.h>
19
20 #include "psppire-dialog-action-roc.h"
21 #include "psppire-value-entry.h"
22
23 #include "dialog-common.h"
24 #include <ui/syntax-gen.h>
25 #include "psppire-var-view.h"
26
27 #include "psppire-dialog.h"
28 #include "builder-wrapper.h"
29
30 #include "psppire-dict.h"
31 #include "libpspp/str.h"
32
33 static void
34 psppire_dialog_action_roc_class_init (PsppireDialogActionRocClass *class);
35
36 G_DEFINE_TYPE (PsppireDialogActionRoc, psppire_dialog_action_roc, PSPPIRE_TYPE_DIALOG_ACTION);
37
38 static gboolean
39 dialog_state_valid (gpointer data)
40 {
41   int width;
42   gboolean result ;
43   union value val;
44   PsppireDialogActionRoc *rd = data;
45   const gchar *var_name;
46   const struct variable *var;
47
48   GtkTreeModel *liststore =
49     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->test_variables));
50
51   if  (gtk_tree_model_iter_n_children (liststore, NULL) < 1)
52     return FALSE;
53
54   var_name = gtk_entry_get_text (GTK_ENTRY (rd->state_variable));
55
56   var = psppire_dict_lookup_var (PSPPIRE_DIALOG_ACTION (rd)->dict, var_name);
57
58   if ( var == NULL)
59     return FALSE;
60
61   width = var_get_width (var);
62   value_init (&val, width);
63
64   result = psppire_value_entry_get_value (PSPPIRE_VALUE_ENTRY (rd->state_value), &val, width);
65   
66   if (var_is_value_missing (var, &val, MV_SYSTEM))
67       result = FALSE;
68   
69   value_destroy (&val, width);
70
71   return result;
72 }
73
74 static void
75 on_curve_button_toggle (GtkCheckButton *curve, PsppireDialogActionRoc *rd)
76 {
77   if ( !gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (curve)))
78     {
79       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->reference)))
80         g_object_set (rd->reference, "inconsistent", TRUE, NULL);
81       g_object_set (rd->reference, "sensitive", FALSE, NULL);
82     }
83   else 
84     {
85       g_object_set (rd->reference, "inconsistent", FALSE, NULL);
86       g_object_set (rd->reference, "sensitive", TRUE, NULL);
87     }
88 }
89
90 static void
91 refresh (PsppireDialogAction *rd_)
92 {
93   PsppireDialogActionRoc *rd = PSPPIRE_DIALOG_ACTION_ROC (rd_);
94   GtkTreeModel *liststore =
95     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->test_variables));
96   gtk_list_store_clear (GTK_LIST_STORE (liststore));
97
98   gtk_entry_set_text (GTK_ENTRY (rd->state_variable), "");
99   psppire_value_entry_set_variable (PSPPIRE_VALUE_ENTRY (rd->state_value), NULL);
100
101   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->curve),          TRUE);
102   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->reference),      FALSE);
103   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->standard_error), FALSE);
104   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->coordinates),    FALSE);
105 }
106
107 static void
108 on_state_var_changed (PsppireDialogAction *a)
109 {
110   PsppireDialogActionRoc *act = PSPPIRE_DIALOG_ACTION_ROC (a);
111
112   const gchar *var_name = gtk_entry_get_text (GTK_ENTRY(act->state_variable));
113
114   const struct variable *var =
115     psppire_dict_lookup_var (PSPPIRE_DIALOG_ACTION(act)->dict, var_name);
116
117   if ( var == NULL)
118     return;
119
120   psppire_value_entry_set_variable (PSPPIRE_VALUE_ENTRY (act->state_value), var);
121 }
122
123 static void
124 psppire_dialog_action_roc_activate (PsppireDialogAction *a)
125 {
126   PsppireDialogActionRoc *act = PSPPIRE_DIALOG_ACTION_ROC (a);
127   PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a);
128
129   GHashTable *thing = psppire_dialog_action_get_hash_table (pda);
130   GtkBuilder *xml = g_hash_table_lookup (thing, a);
131   if (!xml)
132     {
133       xml = builder_new ("roc.ui");
134       g_hash_table_insert (thing, a, xml);
135     }
136
137
138   pda->dialog = get_widget_assert   (xml, "roc-dialog");
139   pda->source = get_widget_assert   (xml, "dict-view");
140
141   act->test_variables    = get_widget_assert   (xml, "psppire-var-view1");
142   act->state_variable    = get_widget_assert   (xml, "entry1");
143   act->state_value       = get_widget_assert   (xml, "entry2");
144
145   act->curve          = get_widget_assert   (xml, "curve");
146   act->reference      = get_widget_assert   (xml, "reference-line");
147   act->standard_error = get_widget_assert   (xml, "standard-error");
148   act->coordinates    = get_widget_assert   (xml, "co-ordinates");
149
150   g_signal_connect_swapped (act->state_variable, "changed",
151                             G_CALLBACK (on_state_var_changed), act);
152
153   g_signal_connect (act->curve, "toggled",
154                     G_CALLBACK (on_curve_button_toggle), act);
155
156   psppire_dialog_action_set_refresh (pda, refresh);
157
158   psppire_dialog_action_set_valid_predicate (pda,
159                                         dialog_state_valid);
160
161 }
162
163
164
165 static char *
166 generate_syntax (const PsppireDialogAction *a)
167 {
168   PsppireDialogActionRoc *rd = PSPPIRE_DIALOG_ACTION_ROC (a);
169   gchar *text;
170   const gchar *var_name = gtk_entry_get_text (GTK_ENTRY (rd->state_variable));
171   GString *string = g_string_new ("ROC");
172
173   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->test_variables), 0, string);
174
175   g_string_append (string, " BY ");
176
177   g_string_append (string, var_name);
178
179   g_string_append (string, " (");
180   {
181     const struct variable *var =
182       psppire_dict_lookup_var (PSPPIRE_DIALOG_ACTION(rd)->dict, var_name);
183
184     union value val;
185     value_init (&val, var_get_width (var));
186
187     psppire_value_entry_get_value (PSPPIRE_VALUE_ENTRY (rd->state_value),
188                                    &val, var_get_width (var));
189
190     g_return_val_if_fail (var, NULL);
191
192     {
193       struct string str;
194       ds_init_empty (&str);
195       
196       syntax_gen_value (&str, &val, var_get_width (var),
197                         var_get_print_format (var));
198       
199       g_string_append (string, ds_cstr (&str));
200       ds_destroy (&str);
201     }
202     value_destroy (&val, var_get_width (var));
203   }
204
205   g_string_append (string, ")");
206
207
208   /* The /PLOT subcommand */
209   g_string_append (string, "\n\t/PLOT ");
210   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->curve)))
211     {
212       g_string_append (string, "CURVE");
213       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->reference)))
214         g_string_append (string, " (REFERENCE)");
215     }
216   else
217     g_string_append (string, "NONE");
218
219
220   /* The /PRINT subcommand */
221   if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)) ||
222        gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)) )
223     {
224       g_string_append (string, "\n\t/PRINT");
225
226       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)))
227         g_string_append (string, " SE");
228
229       if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)))
230         g_string_append (string, " COORDINATES");
231     }
232
233   g_string_append (string, ".\n");
234
235   text = string->str;
236
237   g_string_free (string, FALSE);
238
239   return text;
240 }
241
242 static void
243 psppire_dialog_action_roc_class_init (PsppireDialogActionRocClass *class)
244 {
245   psppire_dialog_action_set_activation (class, psppire_dialog_action_roc_activate);
246
247   PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax;
248 }
249
250
251 static void
252 psppire_dialog_action_roc_init (PsppireDialogActionRoc *act)
253 {
254 }
255