X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fhelper.h;h=038eeb2f4c09e0e7faeda5f153519e1936be12b8;hb=0e9db36b34555b194714aa3f2af19e51907e8426;hp=6ca188fc57779c38674079e24cce19e44740f509;hpb=356c1209257f91eb08791e6b9ca72393fca6fcd0;p=pspp diff --git a/src/ui/gui/helper.h b/src/ui/gui/helper.h index 6ca188fc57..038eeb2f4c 100644 --- a/src/ui/gui/helper.h +++ b/src/ui/gui/helper.h @@ -21,12 +21,23 @@ #ifndef __MISC_H__ #define __MISC_H__ +#include "relocatable.h" + #include #include #include #include + +/* + 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); @@ -41,6 +52,17 @@ GtkWidget * get_widget_assert (GladeXML *xml, const gchar *name); char * pspp_locale_to_utf8 (const gchar *text, gssize len, GError **err); -void connect_help (GladeXML *xml); +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