Enabled output generation in the GUI.
[pspp-builds.git] / src / ui / gui / helper.c
1 /* PSPPIRE - a graphical user interface for PSPP.
2    Copyright (C) 2007  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 /* This file is a rubbish bin where stuff gets put when it doesn't seem to
19    belong anywhere else.
20 */
21 #include <config.h>
22
23 #include        <glib-object.h>
24
25 #include <glib.h>
26 #include "helper.h"
27 #include "message-dialog.h"
28 #include <data/data-in.h>
29 #include <data/data-out.h>
30 #include <data/dictionary.h>
31 #include <libpspp/message.h>
32
33 #include <libpspp/i18n.h>
34
35 #include <ctype.h>
36 #include <string.h>
37 #include <data/settings.h>
38
39 #include <language/command.h>
40 #include <data/procedure.h>
41 #include <language/lexer/lexer.h>
42 #include "psppire-data-store.h"
43 #include <output/manager.h>
44
45
46 #include <gettext.h>
47
48 /* Formats a value according to FORMAT
49    The returned string must be freed when no longer required */
50 gchar *
51 value_to_text (union value v, struct fmt_spec format)
52 {
53   gchar *s = 0;
54
55   s = g_new (gchar, format.w + 1);
56   data_out (&v, &format, s);
57   s[format.w]='\0';
58   g_strchug (s);
59
60   return s;
61 }
62
63
64
65 gboolean
66 text_to_value (const gchar *text, union value *v,
67               struct fmt_spec format)
68 {
69   bool ok;
70
71   if ( format.type != FMT_A)
72     {
73       if ( ! text ) return FALSE;
74
75       {
76         const gchar *s = text;
77         while (*s)
78           {
79             if ( !isspace (*s))
80               break;
81             s++;
82           }
83
84         if ( !*s) return FALSE;
85       }
86     }
87
88   msg_disable ();
89   ok = data_in (ss_cstr (text), format.type, 0, 0,
90                 v, fmt_var_width (&format));
91   msg_enable ();
92
93   return ok;
94 }
95
96
97 GtkWidget *
98 get_widget_assert (GladeXML *xml, const gchar *name)
99 {
100   GtkWidget *w;
101   g_assert (xml);
102   g_assert (name);
103
104   w = glade_xml_get_widget (xml, name);
105
106   if ( !w )
107     g_warning ("Widget \"%s\" could not be found\n", name);
108
109   return w;
110 }
111
112 /* Converts a string in the pspp locale to utf-8.
113    The return value must be freed when no longer required*/
114 gchar *
115 pspp_locale_to_utf8 (const gchar *text, gssize len, GError **err)
116 {
117   return recode_string (CONV_PSPP_TO_UTF8, text, len);
118 }
119
120 #define _(msgid) gettext (msgid)
121 #define N_(msgid) msgid
122
123
124 static void
125 give_help (void)
126 {
127   static struct msg m = {
128     MSG_GENERAL,
129     MSG_NOTE,
130     {0, -1},
131     0,
132   };
133
134   if (! m.text)
135     m.text=g_strdup (_("Sorry. The help system hasn't yet been implemented."));
136
137   popup_message (&m);
138 }
139
140 void
141 connect_help (GladeXML *xml)
142 {
143   GList *helps = glade_xml_get_widget_prefix (xml, "help_button_");
144
145   GList *i;
146   for ( i = g_list_first (helps); i ; i = g_list_next (i))
147     g_signal_connect (GTK_WIDGET (i->data), "clicked", give_help, 0);
148 }
149
150
151
152 void
153 reference_manual (GtkMenuItem *menu, gpointer data)
154 {
155   GError *err = NULL;
156   if ( ! g_spawn_command_line_async ("yelp info:pspp", &err) )
157     {
158       msg (ME, _("Cannot open reference manual: %s"), err->message);
159     }
160   g_clear_error (&err);
161 }
162
163
164 extern struct dataset *the_dataset;
165 extern struct source_stream *the_source_stream;
166 extern PsppireDataStore *the_data_store;
167
168 void
169 execute_syntax (struct getl_interface *sss)
170 {
171   struct lexer *lexer;
172
173   struct casereader *reader = psppire_data_store_get_reader (the_data_store);
174
175   proc_set_active_file_data (the_dataset, reader);
176
177   g_return_if_fail (proc_has_active_file (the_dataset));
178
179   lexer = lex_create (the_source_stream);
180
181   getl_append_source (the_source_stream, sss);
182
183   for (;;)
184     {
185       int result = cmd_parse (lexer, the_dataset);
186
187       if (result == CMD_EOF || result == CMD_FINISH)
188         break;
189     }
190
191   getl_abort_noninteractive (the_source_stream);
192
193   lex_destroy (lexer);
194
195   psppire_dict_replace_dictionary (the_data_store->dict,
196                                    dataset_dict (the_dataset));
197
198   {
199     PsppireCaseFile *pcf = psppire_case_file_new (dataset_source (the_dataset));
200
201     psppire_data_store_set_case_file (the_data_store, pcf);
202   }
203
204   som_flush ();
205 }
206
207
208
209 #ifdef G_ENABLE_DEBUG
210 # define g_marshal_value_peek_int(v)      g_value_get_int (v)
211 #else
212 # define g_marshal_value_peek_int(v)      (v)->data[0].v_int
213 #endif
214
215
216 /* VOID:INT,INT,INT */
217 void
218 marshaller_VOID__INT_INT_INT (GClosure     *closure,
219                         GValue       *return_value,
220                         guint         n_param_values,
221                         const GValue *param_values,
222                         gpointer      invocation_hint,
223                         gpointer      marshal_data)
224 {
225   typedef void (*GMarshalFunc_VOID__INT_INT_INT) (gpointer     data1,
226                                                   gint         arg_1,
227                                                   gint         arg_2,
228                                                   gint         arg_3,
229                                                   gpointer     data2);
230   register GMarshalFunc_VOID__INT_INT_INT callback;
231   register GCClosure *cc = (GCClosure*) closure;
232   register gpointer data1, data2;
233
234   g_return_if_fail (n_param_values == 4);
235
236   if (G_CCLOSURE_SWAP_DATA (closure))
237     {
238       data1 = closure->data;
239       data2 = g_value_peek_pointer (param_values + 0);
240     }
241   else
242     {
243       data1 = g_value_peek_pointer (param_values + 0);
244       data2 = closure->data;
245     }
246   callback = (GMarshalFunc_VOID__INT_INT_INT) (marshal_data ? marshal_data : cc->callback);
247
248   callback (data1,
249             g_marshal_value_peek_int (param_values + 1),
250             g_marshal_value_peek_int (param_values + 2),
251             g_marshal_value_peek_int (param_values + 3),
252             data2);
253 }