X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-scanf.h;h=d81d54cc74e612c2aa996cc629b5cf685d44e7a7;hb=6f1454ecbda2740057c831e333abca038f7e9710;hp=4d22aafcb9ecc0069d75fd078a49c4759a35cbe8;hpb=efcd93af16dfc6c6c9f60b71d94cc091d2417e17;p=pspp diff --git a/src/ui/gui/psppire-scanf.h b/src/ui/gui/psppire-scanf.h index 4d22aafcb9..d81d54cc74 100644 --- a/src/ui/gui/psppire-scanf.h +++ b/src/ui/gui/psppire-scanf.h @@ -41,24 +41,29 @@ typedef struct _PsppireScanfClass PsppireScanfClass; /* All members are private. */ struct _PsppireScanf { - GtkHBox parent; + GtkBox parent; const gchar *format; GtkWidget **widgets; char_directives d; + gboolean use_underline; + GtkWidget *mnemonic_widget; + gboolean dispose_has_run; }; struct _PsppireScanfClass { - GtkHBoxClass parent_class; + GtkBoxClass parent_class; }; GType psppire_scanf_get_type (void); GtkWidget* psppire_scanf_new (const gchar *fmt, ...); +GtkWidget * psppire_scanf_get_child (PsppireScanf *w, gint n); + G_END_DECLS