1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007 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 /* This file is a rubbish bin where stuff gets put when it doesn't seem to
23 #include <glib-object.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>
33 #include <libpspp/i18n.h>
37 #include <data/settings.h>
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"
48 /* Formats a value according to FORMAT
49 The returned string must be freed when no longer required */
51 value_to_text (union value v, struct fmt_spec format)
55 s = g_new (gchar, format.w + 1);
56 data_out (&v, &format, s);
66 text_to_value (const gchar *text, union value *v,
67 struct fmt_spec format)
71 if ( format.type != FMT_A)
73 if ( ! text ) return FALSE;
76 const gchar *s = text;
84 if ( !*s) return FALSE;
89 ok = data_in (ss_cstr (text), format.type, 0, 0,
90 v, fmt_var_width (&format));
98 get_widget_assert (GladeXML *xml, const gchar *name)
104 w = glade_xml_get_widget (xml, name);
107 g_critical ("Widget \"%s\" could not be found\n", name);
112 /* Converts a string in the pspp locale to utf-8.
113 The return value must be freed when no longer required*/
115 pspp_locale_to_utf8 (const gchar *text, gssize len, GError **err)
117 return recode_string (CONV_PSPP_TO_UTF8, text, len);
120 #define _(msgid) gettext (msgid)
121 #define N_(msgid) msgid
127 static struct msg m = {
135 m.text=g_strdup (_("Sorry. The help system hasn't yet been implemented."));
141 connect_help (GladeXML *xml)
143 GList *helps = glade_xml_get_widget_prefix (xml, "help_button_");
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);
153 reference_manual (GtkMenuItem *menu, gpointer data)
156 if ( ! g_spawn_command_line_async ("yelp info:pspp", &err) )
158 msg (ME, _("Cannot open reference manual: %s"), err->message);
160 g_clear_error (&err);
164 extern struct dataset *the_dataset;
165 extern struct source_stream *the_source_stream;
166 extern PsppireDataStore *the_data_store;
169 execute_syntax (struct getl_interface *sss)
173 struct casereader *reader = psppire_data_store_get_reader (the_data_store);
175 proc_set_active_file_data (the_dataset, reader);
177 g_return_if_fail (proc_has_active_file (the_dataset));
179 lexer = lex_create (the_source_stream);
181 getl_append_source (the_source_stream, sss);
185 int result = cmd_parse (lexer, the_dataset);
187 if (result == CMD_EOF || result == CMD_FINISH)
191 getl_abort_noninteractive (the_source_stream);
195 psppire_dict_replace_dictionary (the_data_store->dict,
196 dataset_dict (the_dataset));
199 PsppireCaseFile *pcf = psppire_case_file_new (dataset_source (the_dataset));
201 psppire_data_store_set_case_file (the_data_store, pcf);
204 proc_set_active_file_data (the_dataset, NULL);
208 reload_the_viewer ();
213 #ifdef G_ENABLE_DEBUG
214 # define g_marshal_value_peek_int(v) g_value_get_int (v)
216 # define g_marshal_value_peek_int(v) (v)->data[0].v_int
220 /* VOID:INT,INT,INT */
222 marshaller_VOID__INT_INT_INT (GClosure *closure,
223 GValue *return_value,
224 guint n_param_values,
225 const GValue *param_values,
226 gpointer invocation_hint,
227 gpointer marshal_data)
229 typedef void (*GMarshalFunc_VOID__INT_INT_INT) (gpointer data1,
234 register GMarshalFunc_VOID__INT_INT_INT callback;
235 register GCClosure *cc = (GCClosure*) closure;
236 register gpointer data1, data2;
238 g_return_if_fail (n_param_values == 4);
240 if (G_CCLOSURE_SWAP_DATA (closure))
242 data1 = closure->data;
243 data2 = g_value_peek_pointer (param_values + 0);
247 data1 = g_value_peek_pointer (param_values + 0);
248 data2 = closure->data;
250 callback = (GMarshalFunc_VOID__INT_INT_INT) (marshal_data ? marshal_data : cc->callback);
253 g_marshal_value_peek_int (param_values + 1),
254 g_marshal_value_peek_int (param_values + 2),
255 g_marshal_value_peek_int (param_values + 3),