Change how checking for missing values works.
[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 GtkBuilder *
124 psppire_dialog_action_roc_activate (PsppireDialogAction *a, GVariant *param)
125 {
126   PsppireDialogActionRoc *act = PSPPIRE_DIALOG_ACTION_ROC (a);
127   PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a);
128
129   GtkBuilder *xml = builder_new ("roc.ui");
130
131   pda->dialog = get_widget_assert   (xml, "roc-dialog");
132   pda->source = get_widget_assert   (xml, "dict-view");
133
134   act->test_variables    = get_widget_assert   (xml, "psppire-var-view1");
135   act->state_variable    = get_widget_assert   (xml, "entry1");
136   act->state_value       = get_widget_assert   (xml, "entry2");
137
138   act->curve          = get_widget_assert   (xml, "curve");
139   act->reference      = get_widget_assert   (xml, "reference-line");
140   act->standard_error = get_widget_assert   (xml, "standard-error");
141   act->coordinates    = get_widget_assert   (xml, "co-ordinates");
142
143   g_signal_connect_swapped (act->state_variable, "changed",
144                             G_CALLBACK (on_state_var_changed), act);
145
146   g_signal_connect (act->curve, "toggled",
147                     G_CALLBACK (on_curve_button_toggle), act);
148
149   psppire_dialog_action_set_refresh (pda, refresh);
150
151   psppire_dialog_action_set_valid_predicate (pda,
152                                         dialog_state_valid);
153   return xml;
154 }
155
156
157
158 static char *
159 generate_syntax (const PsppireDialogAction *a)
160 {
161   PsppireDialogActionRoc *rd = PSPPIRE_DIALOG_ACTION_ROC (a);
162   gchar *text;
163   const gchar *var_name = gtk_entry_get_text (GTK_ENTRY (rd->state_variable));
164   GString *string = g_string_new ("ROC");
165
166   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->test_variables), 0, string);
167
168   g_string_append (string, " BY ");
169
170   g_string_append (string, var_name);
171
172   g_string_append (string, " (");
173   {
174     const struct variable *var =
175       psppire_dict_lookup_var (PSPPIRE_DIALOG_ACTION(rd)->dict, var_name);
176
177     union value val;
178     value_init (&val, var_get_width (var));
179
180     psppire_value_entry_get_value (PSPPIRE_VALUE_ENTRY (rd->state_value),
181                                    &val, var_get_width (var));
182
183     g_return_val_if_fail (var, NULL);
184
185     {
186       struct string str;
187       ds_init_empty (&str);
188
189       syntax_gen_value (&str, &val, var_get_width (var),
190                         var_get_print_format (var));
191
192       g_string_append (string, ds_cstr (&str));
193       ds_destroy (&str);
194     }
195     value_destroy (&val, var_get_width (var));
196   }
197
198   g_string_append (string, ")");
199
200
201   /* The /PLOT subcommand */
202   g_string_append (string, "\n\t/PLOT ");
203   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->curve)))
204     {
205       g_string_append (string, "CURVE");
206       if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->reference)))
207         g_string_append (string, " (REFERENCE)");
208     }
209   else
210     g_string_append (string, "NONE");
211
212
213   /* The /PRINT subcommand */
214   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)) ||
215        gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)))
216     {
217       g_string_append (string, "\n\t/PRINT");
218
219       if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->standard_error)))
220         g_string_append (string, " SE");
221
222       if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->coordinates)))
223         g_string_append (string, " COORDINATES");
224     }
225
226   g_string_append (string, ".\n");
227
228   text = string->str;
229
230   g_string_free (string, FALSE);
231
232   return text;
233 }
234
235 static void
236 psppire_dialog_action_roc_class_init (PsppireDialogActionRocClass *class)
237 {
238   PSPPIRE_DIALOG_ACTION_CLASS (class)->initial_activate = psppire_dialog_action_roc_activate;
239
240   PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax;
241 }
242
243
244 static void
245 psppire_dialog_action_roc_init (PsppireDialogActionRoc *act)
246 {
247 }
248