summaryrefslogtreecommitdiff
path: root/gtk/gtkenums.h
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-11 20:27:42 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-01-17 17:52:07 -0500
commit00326d3362feacadec3e7b81aa1dfcfd56b6b2cb (patch)
treecdaa6f1844a5e418e7ea4f7a57edd8bbbe225512 /gtk/gtkenums.h
parent8db2ba425aaff107faaa4c7468be63f8ef2fa8e9 (diff)
downloadgtk+-00326d3362feacadec3e7b81aa1dfcfd56b6b2cb.tar.gz
Add an expand button box type
https://bugzilla.gnome.org/show_bug.cgi?id=720059
Diffstat (limited to 'gtk/gtkenums.h')
-rw-r--r--gtk/gtkenums.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtkenums.h b/gtk/gtkenums.h
index e87c983fc9..dbd74bebdb 100644
--- a/gtk/gtkenums.h
+++ b/gtk/gtkenums.h
@@ -162,6 +162,7 @@ typedef enum
* @GTK_BUTTONBOX_END: Buttons are grouped towards the end of the box,
* (on the right for a HBox, or the bottom for a VBox).
* @GTK_BUTTONBOX_CENTER: Buttons are centered in the box. Since 2.12.
+ * @GTK_BUTTONBOX_EXPAND: Buttons expand to fill the box. Since 3.12.
*
* Used to dictate the style that a #GtkButtonBox uses to layout the buttons it
* contains. (See also: #GtkVButtonBox and #GtkHButtonBox).
@@ -172,7 +173,8 @@ typedef enum
GTK_BUTTONBOX_EDGE,
GTK_BUTTONBOX_START,
GTK_BUTTONBOX_END,
- GTK_BUTTONBOX_CENTER
+ GTK_BUTTONBOX_CENTER,
+ GTK_BUTTONBOX_EXPAND
} GtkButtonBoxStyle;