Change some instances of GtkAction to PsppireDialogAction
[pspp] / src / ui / gui / psppire-dialog-action-histogram.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2015  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 "psppire-dialog-action-histogram.h"
20 #include "psppire-value-entry.h"
21
22 #include "dialog-common.h"
23 #include <ui/syntax-gen.h>
24 #include "psppire-var-view.h"
25
26 #include "psppire-dialog.h"
27 #include "builder-wrapper.h"
28
29 #include "psppire-dict.h"
30 #include "libpspp/str.h"
31
32 static void
33 psppire_dialog_action_histogram_class_init (PsppireDialogActionHistogramClass *class);
34
35 G_DEFINE_TYPE (PsppireDialogActionHistogram, psppire_dialog_action_histogram, PSPPIRE_TYPE_DIALOG_ACTION);
36
37 static gboolean
38 dialog_state_valid (gpointer data)
39 {
40   PsppireDialogActionHistogram *rd = data;
41
42   const gchar *var_name = gtk_entry_get_text (GTK_ENTRY (rd->variable));
43   const struct variable *var = psppire_dict_lookup_var (PSPPIRE_DIALOG_ACTION (rd)->dict, var_name);
44
45   if ( var == NULL)
46     return FALSE;
47
48
49   return TRUE;
50 }
51
52 static void
53 refresh (PsppireDialogAction *rd_)
54 {
55   PsppireDialogActionHistogram *rd = PSPPIRE_DIALOG_ACTION_HISTOGRAM (rd_);
56
57   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (rd->curve), FALSE);
58   gtk_entry_set_text (GTK_ENTRY (rd->variable), "");
59 }
60
61 static void
62 psppire_dialog_action_histogram_activate (PsppireDialogAction *a)
63 {
64   PsppireDialogActionHistogram *act = PSPPIRE_DIALOG_ACTION_HISTOGRAM (a);
65   PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a);
66
67   GHashTable *thing = psppire_dialog_action_get_hash_table (pda);
68   GtkBuilder *xml = g_hash_table_lookup (thing, a);
69   if (!xml)
70     {
71       xml = builder_new ("histogram.ui");
72       g_hash_table_insert (thing, a, xml);
73     }
74
75   pda->dialog = get_widget_assert (xml, "histogram-dialog");
76   pda->source = get_widget_assert (xml, "dict-view");
77
78   act->variable = get_widget_assert (xml, "entry1");
79   act->curve = get_widget_assert (xml, "curve");
80
81   psppire_dialog_action_set_refresh (pda, refresh);
82
83   psppire_dialog_action_set_valid_predicate (pda,
84                                         dialog_state_valid);
85
86   if (PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_histogram_parent_class)->activate)
87     PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_histogram_parent_class)->activate (pda);
88 }
89
90
91
92 static char *
93 generate_syntax (PsppireDialogAction *a)
94 {
95   PsppireDialogActionHistogram *rd = PSPPIRE_DIALOG_ACTION_HISTOGRAM (a);
96   gchar *text;
97   const gchar *var_name = gtk_entry_get_text (GTK_ENTRY (rd->variable));
98   GString *string = g_string_new ("GRAPH /HISTOGRAM ");
99
100   if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->curve)))
101     {
102       g_string_append (string, "(NORMAL)");
103     }
104
105   g_string_append (string, " = ");
106   g_string_append (string, var_name);
107
108   g_string_append (string, ".\n");
109
110   text = string->str;
111
112   g_string_free (string, FALSE);
113
114   return text;
115 }
116
117 static void
118 psppire_dialog_action_histogram_class_init (PsppireDialogActionHistogramClass *class)
119 {
120   psppire_dialog_action_set_activation (class, psppire_dialog_action_histogram_activate);
121
122   PSPPIRE_DIALOG_ACTION_CLASS (class)->generate_syntax = generate_syntax;
123 }
124
125
126 static void
127 psppire_dialog_action_histogram_init (PsppireDialogActionHistogram *act)
128 {
129 }
130