Move PSPP shared libraries from $(libdir) to $(libdir)/pspp.
[pspp-builds.git] / src / ui / gui / correlation-dialog.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2009, 2010, 2011, 2012  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 <ui/syntax-gen.h>
21 #include <libpspp/str.h>
22
23 #include "correlation-dialog.h"
24 #include "psppire-selector.h"
25 #include "psppire-dictview.h"
26 #include "psppire-dialog.h"
27
28 #include "psppire-data-window.h"
29 #include "psppire-var-view.h"
30
31 #include "executor.h"
32 #include "builder-wrapper.h"
33 #include "helper.h"
34
35 #include <gtk/gtk.h>
36
37 #include "gettext.h"
38 #define _(msgid) gettext (msgid)
39 #define N_(msgid) msgid
40
41
42 struct correlation
43 {
44   PsppireDict *dict;
45
46   GtkWidget *variables ;
47
48   GtkWidget *significant;
49   GtkWidget *two_tailed;
50 };
51
52
53 static char * generate_syntax (const struct correlation *rd);
54
55
56 static void
57 refresh (struct correlation *rd)
58 {
59   GtkTreeModel *liststore =
60     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
61   gtk_list_store_clear (GTK_LIST_STORE (liststore));
62
63   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->significant), FALSE);
64
65   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->two_tailed), TRUE);
66 }
67
68
69 static gboolean
70 dialog_state_valid (gpointer data)
71 {
72   struct correlation *corr = data;
73
74   GtkTreeModel *liststore =
75     gtk_tree_view_get_model (GTK_TREE_VIEW (corr->variables));
76
77   if  (gtk_tree_model_iter_n_children (liststore, NULL) > 1)
78     return TRUE;
79
80   return FALSE;
81 }
82
83
84 /* Pops up the Correlation dialog box */
85 void
86 correlation_dialog (PsppireDataWindow *de)
87 {
88   struct correlation rd;
89   gint response;
90
91   GtkBuilder *xml = builder_new ("correlation.ui");
92   PsppireVarStore *vs;
93
94   GtkWidget *dialog = get_widget_assert   (xml, "correlation-dialog");
95   GtkWidget *source = get_widget_assert   (xml, "dict-view");
96
97   g_object_get (de->data_editor, "var-store", &vs, NULL);
98
99   gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de));
100
101   g_object_get (vs, "dictionary", &rd.dict, NULL);
102   g_object_set (source,
103                 "model", rd.dict, 
104                 "predicate", var_is_numeric,
105                 NULL);
106
107   rd.variables = get_widget_assert (xml, "psppire-var-view1");
108   rd.significant = get_widget_assert (xml, "button-flag-significants");
109   rd.two_tailed = get_widget_assert (xml, "button-two-tailed");
110
111   g_signal_connect_swapped (dialog, "refresh", G_CALLBACK (refresh),  &rd);
112
113   psppire_dialog_set_valid_predicate (PSPPIRE_DIALOG (dialog),
114                                       dialog_state_valid, &rd);
115
116   response = psppire_dialog_run (PSPPIRE_DIALOG (dialog));
117
118   switch (response)
119     {
120     case GTK_RESPONSE_OK:
121       g_free (execute_syntax_string (de, generate_syntax (&rd)));
122       break;
123     case PSPPIRE_RESPONSE_PASTE:
124       g_free (paste_syntax_to_window (generate_syntax (&rd)));
125       break;
126     default:
127       break;
128     }
129
130   g_object_unref (xml);
131 }
132
133
134 \f
135
136 static char *
137 generate_syntax (const struct correlation *rd)
138 {
139   gchar *text;
140   GString *string = g_string_new ("CORRELATION");
141   g_string_append (string, "\n\t/VARIABLES = ");
142
143   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->variables), 0, string);
144
145
146   g_string_append (string, "\n\t/PRINT =");
147
148   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->two_tailed)))
149     g_string_append (string, " TWOTAIL");
150   else
151     g_string_append (string, " ONETAIL");
152
153
154   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->significant)))
155     g_string_append (string, " NOSIG");
156   else
157     g_string_append (string, " SIG");
158
159
160   g_string_append (string, ".\n");
161
162   text = string->str;
163
164   g_string_free (string, FALSE);
165
166   return text;
167 }