1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007 Free Software Foundation
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.
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.
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/>. */
19 #include "weight-cases-dialog.h"
20 #include "psppire-selector.h"
21 #include "psppire-dialog.h"
23 #include "psppire-data-window.h"
24 #include "dict-display.h"
25 #include <language/syntax-string-source.h>
31 #define _(msgid) gettext (msgid)
32 #define N_(msgid) msgid
35 #include "psppire-var-store.h"
38 on_select (PsppireSelector *sel, gpointer data)
40 GtkRadioButton *radiobutton2 = data;
42 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (radiobutton2), TRUE);
46 on_deselect (PsppireSelector *sel, gpointer data)
48 GtkRadioButton *radiobutton1 = data;
50 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (radiobutton1), TRUE);
55 on_toggle (GtkToggleButton *button, gpointer data)
57 GtkEntry *entry = data;
58 if ( gtk_toggle_button_get_active (button))
59 gtk_entry_set_text (entry, "");
62 struct weight_cases_dialog
72 refresh (PsppireDialog *dialog, const struct weight_cases_dialog *wcd)
74 const struct variable *var = dict_get_weight (wcd->dict->dict);
78 gtk_entry_set_text (wcd->entry, "");
79 gtk_label_set_text (wcd->status, _("Do not weight cases"));
80 gtk_toggle_button_set_active (wcd->off, TRUE);
85 g_strdup_printf (_("Weight cases by %s"), var_get_name (var));
87 gtk_entry_set_text (wcd->entry, var_get_name (var));
88 gtk_label_set_text (wcd->status, text);
91 gtk_toggle_button_set_active (wcd->on, TRUE);
94 g_signal_emit_by_name (wcd->entry, "activate");
98 static gchar * generate_syntax (const struct weight_cases_dialog *wcd);
101 /* Pops up the Weight Cases dialog box */
103 weight_cases_dialog (GObject *o, gpointer data)
106 PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
107 struct weight_cases_dialog wcd;
109 GtkBuilder *xml = builder_new ("psppire.ui");
111 GtkWidget *dialog = get_widget_assert (xml, "weight-cases-dialog");
112 GtkWidget *source = get_widget_assert (xml, "weight-cases-treeview");
113 GtkWidget *entry = get_widget_assert (xml, "weight-cases-entry");
114 GtkWidget *selector = get_widget_assert (xml, "weight-cases-selector");
115 GtkWidget *radiobutton1 = get_widget_assert (xml,
116 "weight-cases-radiobutton1");
117 GtkWidget *radiobutton2 = get_widget_assert (xml, "radiobutton2");
118 GtkWidget *status = get_widget_assert (xml, "weight-status-label");
120 PsppireVarStore *vs = NULL;
122 g_object_get (de->data_editor, "var-store", &vs, NULL);
124 gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
126 g_signal_connect (radiobutton1, "toggled", G_CALLBACK (on_toggle), entry);
127 g_signal_connect (selector, "selected", G_CALLBACK (on_select),
130 g_signal_connect (selector, "de-selected", G_CALLBACK (on_deselect),
133 g_object_set (source, "dictionary", vs->dict,
134 "selection-mode", GTK_SELECTION_SINGLE,
135 "predicate", var_is_numeric,
138 psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector),
141 insert_source_row_into_entry,
142 is_currently_in_entry,
148 wcd.entry = GTK_ENTRY (entry);
149 wcd.status = GTK_LABEL (status);
150 wcd.off = GTK_TOGGLE_BUTTON (radiobutton1);
151 wcd.on = GTK_TOGGLE_BUTTON (radiobutton2);
153 g_signal_connect (dialog, "refresh", G_CALLBACK (refresh), &wcd);
155 response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
157 g_object_unref (xml);
161 case GTK_RESPONSE_OK:
163 gchar *syntax = generate_syntax (&wcd);
164 struct getl_interface *sss = create_syntax_string_source (syntax);
165 execute_syntax (sss);
170 case PSPPIRE_RESPONSE_PASTE:
172 gchar *syntax = generate_syntax (&wcd);
173 paste_syntax_in_new_window (syntax);
184 generate_syntax (const struct weight_cases_dialog *wcd)
188 const gchar *text = gtk_entry_get_text (wcd->entry);
190 struct variable *var = psppire_dict_lookup_var (wcd->dict, text);
193 syntax = g_strdup ("WEIGHT OFF.");
195 syntax = g_strdup_printf ("WEIGHT BY %s.\n",