New module psppire-var-view
[pspp-builds.git] / src / ui / gui / reliability-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 "reliability-dialog.h"
22 #include "psppire-selector.h"
23 #include "psppire-dictview.h"
24 #include "psppire-dialog.h"
25
26 #include "psppire-data-window.h"
27 #include "psppire-var-view.h"
28
29 #include "executor.h"
30 #include "helper.h"
31
32 #include <gtk/gtk.h>
33
34 #include "gettext.h"
35 #define _(msgid) gettext (msgid)
36 #define N_(msgid) msgid
37
38
39 struct reliability
40 {
41   PsppireDict *dict;
42   GtkWidget *model_combo;
43   GtkWidget *variables;
44   GtkWidget *split_point_hbox;
45   GtkWidget *split_spinbutton;
46 };
47
48
49 static char * generate_syntax (const struct reliability *rd);
50
51
52 static void
53 on_vars_changed (struct reliability *rd)
54 {
55   GtkTreeModel *tm =
56     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
57
58   gint n_vars = gtk_tree_model_iter_n_children (tm, NULL);
59
60   gint current_value =
61     gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (rd->split_spinbutton));
62
63   gint new_value = current_value;
64
65   gtk_spin_button_set_range (GTK_SPIN_BUTTON (rd->split_spinbutton),
66                              0, n_vars - 1);
67
68   if ( current_value > n_vars - 1)
69     new_value = n_vars - 1;
70
71   gtk_spin_button_set_value (GTK_SPIN_BUTTON (rd->split_spinbutton),
72                              new_value);
73 }
74
75 static void
76 on_method_change (struct reliability *rd)
77 {
78   gtk_widget_set_sensitive (rd->split_point_hbox,
79                             ( 1 == gtk_combo_box_get_active (GTK_COMBO_BOX (rd->model_combo))));
80
81 }
82
83 static void
84 refresh (PsppireDialog *dialog, struct reliability *rd)
85 {
86   GtkTreeModel *liststore =
87     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
88   gtk_list_store_clear (GTK_LIST_STORE (liststore));
89
90   gtk_combo_box_set_active (GTK_COMBO_BOX (rd->model_combo), 0);
91
92   gtk_spin_button_set_value (GTK_SPIN_BUTTON (rd->split_spinbutton), 0);
93
94   gtk_spin_button_set_range (GTK_SPIN_BUTTON (rd->split_spinbutton),
95                              0, 0);
96 }
97
98
99 static gboolean
100 dialog_state_valid (gpointer data)
101 {
102   struct reliability *rd = data;
103
104   GtkTreeModel *liststore =
105     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
106
107   return (2 <= gtk_tree_model_iter_n_children (liststore, NULL));
108 }
109
110
111 /* Pops up the Reliability dialog box */
112 void
113 reliability_dialog (GObject *o, gpointer data)
114 {
115   struct reliability rd;
116   gint response;
117
118   GtkBuilder *xml = builder_new ("reliability.ui");
119   PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
120   PsppireVarStore *vs;
121
122   GtkWidget *dialog = get_widget_assert   (xml, "reliability-dialog");
123   GtkWidget *source = get_widget_assert   (xml, "dict-view");
124
125   rd.split_point_hbox = get_widget_assert (xml, "split-point-hbox");
126
127   rd.variables = get_widget_assert   (xml, "treeview2");
128
129   rd.model_combo = get_widget_assert   (xml, "combobox1");
130   rd.split_spinbutton = get_widget_assert (xml, "spinbutton1");
131
132   g_signal_connect_swapped (rd.model_combo, "changed",
133                             G_CALLBACK (on_method_change), &rd);
134
135   g_object_get (de->data_editor, "var-store", &vs, NULL);
136
137   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
138
139   g_object_get (vs, "dictionary", &rd.dict, NULL);
140   g_object_set (source, "model", rd.dict, NULL);
141
142   {
143     GtkTreeModel *tm =
144       gtk_tree_view_get_model (GTK_TREE_VIEW (rd.variables));
145
146
147     g_signal_connect_swapped (tm, "row-inserted",
148                       G_CALLBACK (on_vars_changed), &rd);
149
150     g_signal_connect_swapped (tm, "row-deleted",
151                       G_CALLBACK (on_vars_changed), &rd);
152   }
153
154   g_signal_connect (dialog, "refresh", G_CALLBACK (refresh),  &rd);
155
156   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
157                                       dialog_state_valid, &rd);
158
159   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
160
161
162   switch (response)
163     {
164     case GTK_RESPONSE_OK:
165       {
166         gchar *syntax = generate_syntax (&rd);
167
168         struct getl_interface *sss = create_syntax_string_source (syntax);
169         execute_syntax (sss);
170
171         g_free (syntax);
172       }
173       break;
174     case PSPPIRE_RESPONSE_PASTE:
175       {
176         gchar *syntax = generate_syntax (&rd);
177         paste_syntax_in_new_window (syntax);
178
179         g_free (syntax);
180       }
181       break;
182     default:
183       break;
184     }
185
186   g_object_unref (xml);
187 }
188
189
190 \f
191
192 static char *
193 generate_syntax (const struct reliability *rd)
194 {
195   gchar *text;
196   GString *string = g_string_new ("RELIABILITY");
197
198   g_string_append (string, "\n\t/VARIABLES=");
199   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->variables), 0, string);
200
201
202   g_string_append (string, "\n\t/MODEL=");
203
204   if ( 0 == gtk_combo_box_get_active (GTK_COMBO_BOX (rd->model_combo)))
205     g_string_append (string, "ALPHA");
206   else
207     g_string_append_printf (string, "SPLIT (%d)",
208                             gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (rd->split_spinbutton))
209                             );
210
211   g_string_append (string, ".\n");
212
213   text = string->str;
214
215   g_string_free (string, FALSE);
216
217   return text;
218 }