Change some instances of GtkAction to PsppireDialogAction
[pspp.git] / src / ui / gui / psppire-dialog-action-k-related.c
blob7c634ec6d35f0d65a340340a0720f90f5efa6ec3
1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2010, 2011, 2012, 2013 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/>. */
18 #include <config.h>
20 #include "psppire-dialog-action-k-related.h"
22 #include "psppire-var-view.h"
24 #include "psppire-dialog.h"
25 #include "builder-wrapper.h"
27 static void psppire_dialog_action_k_related_init (PsppireDialogActionKRelated *act);
28 static void psppire_dialog_action_k_related_class_init (PsppireDialogActionKRelatedClass *class);
30 G_DEFINE_TYPE (PsppireDialogActionKRelated, psppire_dialog_action_k_related, PSPPIRE_TYPE_DIALOG_ACTION);
32 static char *
33 generate_syntax (PsppireDialogAction *act)
35 PsppireDialogActionKRelated *krd = PSPPIRE_DIALOG_ACTION_K_RELATED (act);
36 gchar *text;
38 GString *string = g_string_new ("NPAR TEST");
40 if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (krd->friedman)))
42 g_string_append (string, "\n\t/FRIEDMAN = ");
43 psppire_var_view_append_names (PSPPIRE_VAR_VIEW (krd->var_view), 0, string);
46 if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (krd->kendal)))
48 g_string_append (string, "\n\t/KENDALL = ");
49 psppire_var_view_append_names (PSPPIRE_VAR_VIEW (krd->var_view), 0, string);
52 if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (krd->cochran)))
54 g_string_append (string, "\n\t/COCHRAN = ");
55 psppire_var_view_append_names (PSPPIRE_VAR_VIEW (krd->var_view), 0, string);
58 g_string_append (string, ".\n");
60 text = string->str;
62 g_string_free (string, FALSE);
64 return text;
68 static gboolean
69 dialog_state_valid (gpointer data)
71 PsppireDialogActionKRelated *krd = PSPPIRE_DIALOG_ACTION_K_RELATED (data);
73 GtkTreeModel *vars =
74 gtk_tree_view_get_model (GTK_TREE_VIEW (krd->var_view));
76 /* Tests using less than 3 variables are not useful */
77 if (gtk_tree_model_iter_n_children (vars, NULL) < 3)
78 return FALSE;
80 /* At least one checkbutton must be active */
81 if (
82 ! gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (krd->friedman))
83 &&
84 ! gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (krd->kendal))
85 &&
86 ! gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (krd->cochran))
88 return FALSE;
90 return TRUE;
93 static void
94 refresh (PsppireDialogAction *rd_)
96 PsppireDialogActionKRelated *krd = PSPPIRE_DIALOG_ACTION_K_RELATED (rd_);
97 GtkTreeModel *liststore =
98 gtk_tree_view_get_model (GTK_TREE_VIEW (krd->var_view));
100 gtk_list_store_clear (GTK_LIST_STORE (liststore));
102 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (krd->friedman), TRUE);
103 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (krd->kendal), FALSE);
104 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (krd->cochran), FALSE);
107 static void
108 psppire_dialog_action_k_related_activate (PsppireDialogAction *a)
110 PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a);
111 PsppireDialogActionKRelated *act = PSPPIRE_DIALOG_ACTION_K_RELATED (a);
113 GHashTable *thing = psppire_dialog_action_get_hash_table (pda);
114 GtkBuilder *xml = g_hash_table_lookup (thing, a);
115 if (!xml)
117 xml = builder_new ("k-related.ui");
118 g_hash_table_insert (thing, a, xml);
121 pda->dialog = get_widget_assert (xml, "k-related-dialog");
122 pda->source = get_widget_assert (xml, "dict-view");
124 act->var_view = get_widget_assert (xml, "variables-treeview");
125 act->friedman = get_widget_assert (xml, "friedman-checkbutton");
126 act->kendal = get_widget_assert (xml, "kendal-checkbutton");
127 act->cochran = get_widget_assert (xml, "cochran-checkbutton");
129 psppire_dialog_action_set_valid_predicate (pda, dialog_state_valid);
130 psppire_dialog_action_set_refresh (pda, refresh);
132 g_object_set (pda->source,
133 "predicate", var_is_numeric,
134 NULL);
136 if (PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_k_related_parent_class)->activate)
137 PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_k_related_parent_class)->activate (pda);
140 static void
141 psppire_dialog_action_k_related_class_init (PsppireDialogActionKRelatedClass *class)
143 psppire_dialog_action_set_activation (class, psppire_dialog_action_k_related_activate);
144 PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax;
148 static void
149 psppire_dialog_action_k_related_init (PsppireDialogActionKRelated *act)