Remove deprecated objects GtkAction and GtkUIManager
[pspp] / src / ui / gui / psppire-dialog-action-logistic.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2008, 2010, 2011, 2012, 2016  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-logistic.h"
21 #include "psppire-value-entry.h"
22
23 #include "dialog-common.h"
24 #include "helper.h"
25 #include <ui/syntax-gen.h>
26 #include "psppire-var-view.h"
27
28 #include "psppire-dialog.h"
29 #include "builder-wrapper.h"
30 #include "psppire-dict.h"
31 #include "libpspp/str.h"
32
33 #include "gettext.h"
34 #define _(msgid) gettext (msgid)
35 #define N_(msgid) msgid
36
37
38 static void
39 psppire_dialog_action_logistic_class_init (PsppireDialogActionLogisticClass *class);
40
41 G_DEFINE_TYPE (PsppireDialogActionLogistic, psppire_dialog_action_logistic, PSPPIRE_TYPE_DIALOG_ACTION);
42
43 static gboolean
44 dialog_state_valid (gpointer data)
45 {
46   PsppireDialogActionLogistic *rd = PSPPIRE_DIALOG_ACTION_LOGISTIC (data);
47
48   const gchar *text = gtk_entry_get_text (GTK_ENTRY (rd->dep_var));
49
50   GtkTreeModel *indep_vars = gtk_tree_view_get_model (GTK_TREE_VIEW (rd->indep_vars));
51
52   GtkTreeIter notused;
53
54   return 0 != strcmp ("", text) &&
55     gtk_tree_model_get_iter_first (indep_vars, &notused);
56 }
57
58 static void
59 refresh (PsppireDialogAction *rd_)
60 {
61   PsppireDialogActionLogistic *rd = PSPPIRE_DIALOG_ACTION_LOGISTIC (rd_);
62
63   GtkTreeModel *liststore = gtk_tree_view_get_model (GTK_TREE_VIEW (rd->indep_vars));
64   gtk_list_store_clear (GTK_LIST_STORE (liststore));
65
66   gtk_entry_set_text (GTK_ENTRY (rd->dep_var), "");
67 }
68
69
70 static void
71 on_opts_clicked (PsppireDialogActionLogistic *act)
72 {
73   int ret;
74
75   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(act->conf_checkbox), act->conf);
76   gtk_spin_button_set_value (GTK_SPIN_BUTTON (act->conf_entry), act->conf_level);
77   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(act->const_checkbox), act->constant);
78
79   gtk_spin_button_set_value (GTK_SPIN_BUTTON (act->cut_point_entry), act->cut_point);
80   gtk_spin_button_set_value (GTK_SPIN_BUTTON (act->iterations_entry), act->max_iterations);
81
82   
83   ret = psppire_dialog_run (PSPPIRE_DIALOG (act->opts_dialog));
84
85   if ( ret == PSPPIRE_RESPONSE_CONTINUE )
86     {
87       act->conf = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(act->conf_checkbox));
88       act->conf_level = gtk_spin_button_get_value (GTK_SPIN_BUTTON (act->conf_entry));
89       
90       act->constant = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(act->const_checkbox));
91
92       act->cut_point = gtk_spin_button_get_value (GTK_SPIN_BUTTON (act->cut_point_entry));
93       act->max_iterations = gtk_spin_button_get_value (GTK_SPIN_BUTTON (act->iterations_entry));
94     }
95 }
96
97
98 static void
99 psppire_dialog_action_logistic_activate (PsppireDialogAction *a)
100 {
101   PsppireDialogActionLogistic *act = PSPPIRE_DIALOG_ACTION_LOGISTIC (a);
102   PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a);
103   GtkWidget *opts_button;
104
105   GHashTable *thing = psppire_dialog_action_get_hash_table (pda);
106   GtkBuilder *xml = g_hash_table_lookup (thing, a);
107   if (!xml)
108     {
109       xml = builder_new ("logistic.ui");
110       g_hash_table_insert (thing, a, xml);
111     }
112
113   pda->dialog = get_widget_assert   (xml, "logistic-dialog");
114   pda->source = get_widget_assert   (xml, "dict-view");
115   act->cut_point = 0.5;
116   act->max_iterations = 20;
117   act->constant = true;
118   act->conf = false;
119   act->conf_level = 95;
120
121   act->dep_var  = get_widget_assert   (xml, "dependent-entry");
122   act->indep_vars  = get_widget_assert   (xml, "indep-view");
123   act->opts_dialog = get_widget_assert (xml, "options-dialog");
124   act->conf_checkbox = get_widget_assert (xml, "checkbutton2");
125   act->conf_entry = get_widget_assert (xml, "spinbutton1");
126   act->const_checkbox = get_widget_assert (xml, "checkbutton1");
127
128   act->iterations_entry = get_widget_assert (xml, "spinbutton3");
129   act->cut_point_entry = get_widget_assert (xml, "spinbutton2");
130
131   opts_button = get_widget_assert (xml, "options-button");
132
133   g_signal_connect_swapped (opts_button, "clicked",
134                             G_CALLBACK (on_opts_clicked),  act);
135
136   g_signal_connect (act->conf_checkbox, "toggled",
137                     G_CALLBACK (set_sensitivity_from_toggle),  
138                     act->conf_entry);
139
140   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(act->conf_checkbox), TRUE);
141   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(act->conf_checkbox), FALSE);
142
143   psppire_dialog_action_set_refresh (pda, refresh);
144
145   psppire_dialog_action_set_valid_predicate (pda,
146                                         dialog_state_valid);
147
148 }
149
150
151
152 static char *
153 generate_syntax (const PsppireDialogAction *a)
154 {
155   PsppireDialogActionLogistic *rd = PSPPIRE_DIALOG_ACTION_LOGISTIC (a);
156   gchar *text = NULL;
157
158   const gchar *dep = gtk_entry_get_text (GTK_ENTRY (rd->dep_var));
159
160   GString *strx = g_string_new ("LOGISTIC REGRESSION ");
161
162   g_string_append (strx, dep);
163
164   g_string_append (strx, " WITH");
165
166   GSList *vars = psppire_var_view_list_names (PSPPIRE_VAR_VIEW (rd->indep_vars), 0);
167   GSList *node = vars;
168
169   GString *var_names = g_string_new ("");
170   while (node)
171     {
172       g_string_prepend (var_names, var_get_name (node->data));
173       g_string_prepend (var_names, " ");
174       node = node->next;
175     }
176
177   g_string_append (strx, var_names->str);
178   g_string_free (var_names, TRUE);
179
180
181   GString *categoricals = g_string_new ("");
182   for (node = vars; node; node = node->next)
183     {
184       const struct variable *v = node->data;
185       enum measure m = var_get_measure (v);
186
187       if (m == MEASURE_NOMINAL || m == MEASURE_ORDINAL || var_is_alpha (v))
188         {
189           g_string_prepend (categoricals, var_get_name (v));
190           g_string_prepend (categoricals, " ");
191         }
192     }
193   if (0 != strcmp (categoricals->str, ""))
194     g_string_prepend (categoricals, "\n\t/CATEGORICAL =");
195
196   g_string_append (strx, categoricals->str);
197   g_string_free (categoricals, TRUE);
198   g_slist_free (vars);
199
200   struct string opt_str;
201   ds_init_cstr (&opt_str, "\n\t/CRITERIA =");
202   syntax_gen_pspp (&opt_str, " CUT(%g)", rd->cut_point);
203   syntax_gen_pspp (&opt_str, " ITERATE(%d)", rd->max_iterations);
204   g_string_append (strx, ds_cstr (&opt_str));
205   ds_destroy (&opt_str);
206
207   if (rd->conf)
208     {
209       g_string_append_printf (strx, "\n\t/PRINT = CI(%g)", rd->conf_level);
210     }
211
212   if (rd->constant) 
213     g_string_append (strx, "\n\t/NOORIGIN");
214   else
215     g_string_append (strx, "\n\t/ORIGIN");
216
217   g_string_append (strx, ".\n");
218
219   text = strx->str;
220
221   g_string_free (strx, FALSE);
222
223   return text;
224 }
225
226 static void
227 psppire_dialog_action_logistic_class_init (PsppireDialogActionLogisticClass *class)
228 {
229   psppire_dialog_action_set_activation (class, psppire_dialog_action_logistic_activate);
230
231   PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax;
232 }
233
234
235 static void
236 psppire_dialog_action_logistic_init (PsppireDialogActionLogistic *act)
237 {
238 }
239