Fixed buglet managing entries in the recent files lists.
[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 #include "output-viewer.h"
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_critical ("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 gboolean
169 execute_syntax (struct getl_interface *sss)
170 {
171   struct lexer *lexer;
172   gboolean retval = TRUE;
173
174   struct casereader *reader = psppire_data_store_get_reader (the_data_store);
175
176   proc_set_active_file_data (the_dataset, reader);
177
178   g_return_val_if_fail (proc_has_active_file (the_dataset), FALSE);
179
180   lexer = lex_create (the_source_stream);
181
182   getl_append_source (the_source_stream, sss, GETL_BATCH, ERRMODE_CONTINUE);
183
184   for (;;)
185     {
186       enum cmd_result result = cmd_parse (lexer, the_dataset);
187
188       if ( cmd_result_is_failure (result))
189         {
190           retval = FALSE;
191           if ( source_stream_current_error_mode (the_source_stream)
192                == ERRMODE_STOP )
193             break;
194         }
195
196       if ( result == CMD_EOF || result == CMD_FINISH)
197         break;
198     }
199
200   getl_abort_noninteractive (the_source_stream);
201
202   lex_destroy (lexer);
203
204   psppire_dict_replace_dictionary (the_data_store->dict,
205                                    dataset_dict (the_dataset));
206
207   {
208     PsppireCaseFile *pcf = psppire_case_file_new (dataset_source (the_dataset));
209
210     psppire_data_store_set_case_file (the_data_store, pcf);
211   }
212
213   proc_set_active_file_data (the_dataset, NULL);
214
215   som_flush ();
216
217   reload_the_viewer ();
218
219   return retval;
220 }
221
222
223
224 #ifdef G_ENABLE_DEBUG
225 # define g_marshal_value_peek_int(v)      g_value_get_int (v)
226 #else
227 # define g_marshal_value_peek_int(v)      (v)->data[0].v_int
228 #endif
229
230
231 /* VOID:INT,INT,INT */
232 void
233 marshaller_VOID__INT_INT_INT (GClosure     *closure,
234                         GValue       *return_value,
235                         guint         n_param_values,
236                         const GValue *param_values,
237                         gpointer      invocation_hint,
238                         gpointer      marshal_data)
239 {
240   typedef void (*GMarshalFunc_VOID__INT_INT_INT) (gpointer     data1,
241                                                   gint         arg_1,
242                                                   gint         arg_2,
243                                                   gint         arg_3,
244                                                   gpointer     data2);
245   register GMarshalFunc_VOID__INT_INT_INT callback;
246   register GCClosure *cc = (GCClosure*) closure;
247   register gpointer data1, data2;
248
249   g_return_if_fail (n_param_values == 4);
250
251   if (G_CCLOSURE_SWAP_DATA (closure))
252     {
253       data1 = closure->data;
254       data2 = g_value_peek_pointer (param_values + 0);
255     }
256   else
257     {
258       data1 = g_value_peek_pointer (param_values + 0);
259       data2 = closure->data;
260     }
261   callback = (GMarshalFunc_VOID__INT_INT_INT) (marshal_data ? marshal_data : cc->callback);
262
263   callback (data1,
264             g_marshal_value_peek_int (param_values + 1),
265             g_marshal_value_peek_int (param_values + 2),
266             g_marshal_value_peek_int (param_values + 3),
267             data2);
268 }