Made the datasheet number cases from 1 instead of zero.
[pspp-builds.git] / src / ui / gui / helper.h
index eef64213c2c229735af0f8b03db5c6a2a68523dd..038eeb2f4c09e0e7faeda5f153519e1936be12b8 100644 (file)
@@ -1,7 +1,6 @@
-/* 
+/*
     PSPPIRE --- A Graphical User Interface for PSPP
     Copyright (C) 2004  Free Software Foundation
-    Written by John Darrington
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #ifndef __MISC_H__
 #define __MISC_H__
 
+#include "relocatable.h"
+
 #include <data/value.h>
 #include <data/format.h>
 
 #include <gtk/gtk.h>
 #include <glade/glade.h>
 
-/* Formats a value according to FORMAT 
+
+/*
+   GtkRecentChooserMenu was added in 2.10.0
+   but it didn't support GtkRecentFilters until
+   2.10.2
+*/
+#define RECENT_LISTS_AVAILABLE GTK_CHECK_VERSION (2, 10, 2)
+
+
+/* Formats a value according to FORMAT
    The returned string must be freed when no longer required */
-gchar * value_to_text(union value v, struct fmt_spec format);
+gchar * value_to_text (union value v, struct fmt_spec format);
 
 
-gboolean text_to_value(const gchar *text, union value *v, 
+gboolean text_to_value (const gchar *text, union value *v,
                       struct fmt_spec format);
 
-GtkWidget * get_widget_assert(GladeXML *xml, const gchar *name);
+GtkWidget * get_widget_assert (GladeXML *xml, const gchar *name);
+
+/* Converts a string in the pspp locale to utf-8 */
+char * pspp_locale_to_utf8 (const gchar *text, gssize len, GError **err);
+
+
+void connect_help (GladeXML *);
+
+void reference_manual (GtkMenuItem *, gpointer);
+
+struct getl_interface;
+gboolean execute_syntax (struct getl_interface *sss);
+
+
+#define XML_NEW(FILE) \
+   glade_xml_new (relocate(PKGDATADIR "/" FILE), NULL, NULL)
+
+
 
 #endif