Frequencies Piecharts (gui): Emit 'NOMISSING' when appropriate.
[pspp] / src / ui / gui / psppire-scanf.h
index 4d22aafcb9ecc0069d75fd078a49c4759a35cbe8..d81d54cc74e612c2aa996cc629b5cf685d44e7a7 100644 (file)
@@ -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