Converted the correlations dialog to a PsppireDialogAction object
[pspp-builds.git] / src / ui / gui / psppire-dialog-action-correlation.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 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
18 #include <config.h>
19
20 #include "psppire-dialog-action-correlation.h"
21
22 #include "psppire-var-view.h"
23
24 #include "psppire-dialog.h"
25 #include "builder-wrapper.h"
26
27 static void psppire_dialog_action_correlation_init            (PsppireDialogActionCorrelation      *act);
28 static void psppire_dialog_action_correlation_class_init      (PsppireDialogActionCorrelationClass *class);
29
30 G_DEFINE_TYPE (PsppireDialogActionCorrelation, psppire_dialog_action_correlation, PSPPIRE_TYPE_DIALOG_ACTION);
31
32 static char *
33 generate_syntax (PsppireDialogAction *act)
34 {
35   PsppireDialogActionCorrelation *rd = PSPPIRE_DIALOG_ACTION_CORRELATION (act);
36   gchar *text;
37   GString *string = g_string_new ("CORRELATION");
38   g_string_append (string, "\n\t/VARIABLES = ");
39
40   psppire_var_view_append_names (PSPPIRE_VAR_VIEW (rd->variables), 0, string);
41
42
43   g_string_append (string, "\n\t/PRINT =");
44
45   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->two_tailed)))
46     g_string_append (string, " TWOTAIL");
47   else
48     g_string_append (string, " ONETAIL");
49
50
51   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->significant)))
52     g_string_append (string, " NOSIG");
53   else
54     g_string_append (string, " SIG");
55
56
57   g_string_append (string, ".\n");
58
59   text = string->str;
60
61   g_string_free (string, FALSE);
62
63   return text;
64 }
65
66
67 static gboolean
68 dialog_state_valid (gpointer user_data)
69 {
70   PsppireDialogActionCorrelation *corr = user_data;
71   GtkTreeModel *liststore =
72     gtk_tree_view_get_model (GTK_TREE_VIEW (corr->variables));
73
74   if  (gtk_tree_model_iter_n_children (liststore, NULL) > 1)
75     return TRUE;
76
77   return FALSE;
78 }
79
80 static void
81 refresh (PsppireDialogActionCorrelation *rd)
82 {
83   GtkTreeModel *liststore =
84     gtk_tree_view_get_model (GTK_TREE_VIEW (rd->variables));
85   gtk_list_store_clear (GTK_LIST_STORE (liststore));
86
87   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->significant), FALSE);
88
89   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->two_tailed), TRUE);
90 }
91
92 static void
93 psppire_dialog_action_correlation_activate (GtkAction *a)
94 {
95   PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a);
96   PsppireDialogActionCorrelation *act = PSPPIRE_DIALOG_ACTION_CORRELATION (a);
97
98   GtkBuilder *xml = builder_new ("correlation.ui");
99   pda->dialog = get_widget_assert   (xml, "correlation-dialog");
100   pda->source = get_widget_assert   (xml, "dict-view");
101
102   act->variables = get_widget_assert (xml, "psppire-var-view1");
103   act->significant = get_widget_assert (xml, "button-flag-significants");
104   act->two_tailed = get_widget_assert (xml, "button-two-tailed");
105
106   psppire_dialog_action_set_valid_predicate (pda, dialog_state_valid);
107   psppire_dialog_action_set_refresh (pda, refresh);
108
109   g_object_unref (xml);
110
111   if (PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_correlation_parent_class)->activate)
112     PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_correlation_parent_class)->activate (pda);
113 }
114
115 static void
116 psppire_dialog_action_correlation_class_init (PsppireDialogActionCorrelationClass *class)
117 {
118   GtkActionClass *action_class = GTK_ACTION_CLASS (class);
119
120   action_class->activate = psppire_dialog_action_correlation_activate;
121   PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax;
122 }
123
124
125 static void
126 psppire_dialog_action_correlation_init (PsppireDialogActionCorrelation *act)
127 {
128 }
129