New module psppire-var-view
[pspp-builds.git] / src / ui / gui / sort-cases-dialog.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007  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 #include <gtk/gtk.h>
19 #include "sort-cases-dialog.h"
20 #include "executor.h"
21 #include "psppire-dialog.h"
22 #include "psppire-data-window.h"
23 #include "psppire-var-store.h"
24 #include "dialog-common.h"
25 #include "psppire-selector.h"
26 #include "dict-display.h"
27 #include "psppire-var-view.h"
28
29 #include <language/syntax-string-source.h>
30 #include "helper.h"
31
32 static void
33 refresh (PsppireDialog *dialog, GtkTreeView *dest)
34 {
35   GtkTreeModel *liststore = gtk_tree_view_get_model (dest);
36
37
38   gtk_list_store_clear (GTK_LIST_STORE (liststore));
39 }
40
41
42 struct sort_cases_dialog
43 {
44   PsppireVarView *tv;
45   PsppireDict *dict;
46   GtkToggleButton *ascending;
47 };
48
49
50 static gboolean
51 dialog_state_valid (gpointer data)
52 {
53   struct sort_cases_dialog *scd = data;
54   GtkTreeModel *model = gtk_tree_view_get_model (GTK_TREE_VIEW (scd->tv));
55
56   gint n_rows = gtk_tree_model_iter_n_children  (model, NULL);
57
58   if ( n_rows == 0 )
59     return FALSE;
60
61   return TRUE;
62 }
63
64 static char *
65 generate_syntax (const struct sort_cases_dialog *scd)
66 {
67   gchar *text;
68   GString *string = g_string_new ("SORT CASES BY ");
69
70   gint n_vars = psppire_var_view_append_names (scd->tv, 0, string);
71
72   if ( n_vars == 0 )
73     g_string_assign (string, "");
74   else
75     {
76       const char up_down =
77         gtk_toggle_button_get_active (scd->ascending) ? 'A' : 'D';
78       g_string_append_printf (string, "(%c)", up_down);
79       g_string_append (string, ".");
80     }
81
82
83   text = string->str;
84
85   g_string_free (string, FALSE);
86
87   return text;
88 }
89
90
91 /* Pops up the Sort Cases dialog box */
92 void
93 sort_cases_dialog (GObject *o, gpointer data)
94 {
95   gint response;
96   PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data);
97
98   struct sort_cases_dialog scd;
99
100   GtkBuilder *xml = builder_new ("sort.ui");
101
102   GtkWidget *dialog = get_widget_assert   (xml, "sort-cases-dialog");
103
104
105   GtkWidget *source = get_widget_assert   (xml, "sort-cases-treeview1");
106   GtkWidget *dest =   get_widget_assert   (xml, "sort-cases-treeview2");
107   PsppireVarStore *vs = NULL;
108
109   g_object_get (de->data_editor, "var-store", &vs, NULL);
110
111   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
112
113   g_object_get (vs, "dictionary", &scd.dict, NULL);
114   g_object_set (source, "model", scd.dict, NULL);
115
116   g_signal_connect (dialog, "refresh", G_CALLBACK (refresh),  dest);
117
118   scd.tv = PSPPIRE_VAR_VIEW (dest);
119   scd.ascending =
120     GTK_TOGGLE_BUTTON (get_widget_assert (xml, "sort-cases-radiobutton0"));
121
122
123   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
124                                       dialog_state_valid, &scd);
125
126
127   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
128
129
130   switch (response)
131     {
132     case GTK_RESPONSE_OK:
133       {
134         gchar *syntax = generate_syntax (&scd);
135
136         struct getl_interface *sss = create_syntax_string_source (syntax);
137         execute_syntax (sss);
138
139         g_free (syntax);
140       }
141       break;
142     case PSPPIRE_RESPONSE_PASTE:
143       {
144         gchar *syntax = generate_syntax (&scd);
145         paste_syntax_in_new_window (syntax);
146
147         g_free (syntax);
148       }
149       break;
150     default:
151       break;
152     }
153
154   g_object_unref (xml);
155 }
156