X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fhelper.h;h=a0c36bd68bb6f84518e2bb0363c430dfefdbf37a;hb=a7fb79e81f6e2a0dfddc61e91f207609e31a4632;hp=407773b1c28bfd1141ed079c59bfc386096343f8;hpb=cf63d499efd5e6ca3a7dcc6386b3b87bd31bfda9;p=pspp-builds.git diff --git a/src/ui/gui/helper.h b/src/ui/gui/helper.h index 407773b1..a0c36bd6 100644 --- a/src/ui/gui/helper.h +++ b/src/ui/gui/helper.h @@ -29,16 +29,24 @@ /* 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); +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); #endif