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