X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog.h;h=6c175cfb8a690d0de4632f5daabacfc12bf754e5;hb=6b562f8a8263930b8d1ed1862efec76f2511ed08;hp=05215ce984e2b14bd332aad5bb02f86ffd25d2ef;hpb=c65449a628d13f4683e7dc7125874608c7152017;p=pspp-builds.git diff --git a/src/ui/gui/psppire-dialog.h b/src/ui/gui/psppire-dialog.h index 05215ce9..6c175cfb 100644 --- a/src/ui/gui/psppire-dialog.h +++ b/src/ui/gui/psppire-dialog.h @@ -42,6 +42,14 @@ typedef struct _PsppireDialogClass PsppireDialogClass; typedef gboolean (*ContentsAreValid) (gpointer); +typedef enum + { + PSPPIRE_HORIZONTAL, + PSPPIRE_VERTICAL, + PSPPIRE_TABULAR + } PsppireOrientation; + + struct _PsppireDialog { @@ -54,6 +62,8 @@ struct _PsppireDialog ContentsAreValid contents_are_valid; gpointer validity_data; + gboolean slidable; + PsppireOrientation orientation; }; struct _PsppireDialogClass @@ -77,14 +87,7 @@ void psppire_dialog_notify_change (PsppireDialog *); GType psppire_orientation_get_type (void); -typedef enum - { - PSPPIRE_HORIZONTAL, - PSPPIRE_VERTICAL, - PSPPIRE_TABULAR - } PsppireOrientation; - -#define G_TYPE_PSPPIRE_ORIENTATION (psppire_orientation_get_type ()) +#define PSPPIRE_TYPE_ORIENTATION (psppire_orientation_get_type ()) G_END_DECLS