1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2004 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/>. */
21 #include "relocatable.h"
23 #include <data/value.h>
26 #include <glade/glade.h>
29 GtkRecentChooserMenu was added in 2.10.0
30 but it didn't support GtkRecentFilters until
33 #define RECENT_LISTS_AVAILABLE GTK_CHECK_VERSION (2, 10, 2)
37 /* Formats a value according to FORMAT
38 The returned string must be freed when no longer required */
39 gchar * value_to_text (union value v, struct fmt_spec format);
42 gboolean text_to_value (const gchar *text, union value *v,
43 struct fmt_spec format);
45 GtkWidget * get_widget_assert (GladeXML *xml, const gchar *name);
47 /* Converts a string in the pspp locale to utf-8 */
48 char * pspp_locale_to_utf8 (const gchar *text, gssize len, GError **err);
51 void connect_help (GladeXML *);
53 void reference_manual (GtkMenuItem *, gpointer);
55 struct getl_interface;
56 gboolean execute_syntax (struct getl_interface *sss);
58 #define XML_NEW(FILE) \
59 glade_xml_new (relocate(PKGDATADIR "/" FILE), NULL, NULL)
62 void marshaller_VOID__INT_INT_INT (GClosure *closure,
65 const GValue *param_values,
66 gpointer invocation_hint,
67 gpointer marshal_data);
70 /* Create a deep copy of SRC */
71 GtkListStore * clone_list_store (const GtkListStore *src);