summaryrefslogtreecommitdiff
path: root/gtk/gtkenums.h
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2010-10-13 22:26:08 +0900
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2010-10-13 22:26:44 +0900
commite3cc39cb9813de101d35611e761ccc1571a3267c (patch)
treef59050a99577609b8deb29f7e9079c5bf259eb79 /gtk/gtkenums.h
parent5e1d8814ca005e2e28fdd579e060191d0db23cdc (diff)
downloadgtk+-e3cc39cb9813de101d35611e761ccc1571a3267c.tar.gz
Removed all traces of GtkWrapBox from GTK+.
Diffstat (limited to 'gtk/gtkenums.h')
-rw-r--r--gtk/gtkenums.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/gtk/gtkenums.h b/gtk/gtkenums.h
index 98cd0a5257..515881e9e4 100644
--- a/gtk/gtkenums.h
+++ b/gtk/gtkenums.h
@@ -541,60 +541,6 @@ typedef enum
GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT
} GtkSizeRequestMode;
-
-/**
- * GtkWrapAllocationMode:
- * @GTK_WRAP_ALLOCATE_FREE: Items wrap freely in the box's orientation
- * @GTK_WRAP_ALLOCATE_ALIGNED: Items are aligned into rows and columns
- * @GTK_WRAP_ALLOCATE_HOMOGENEOUS: Items are all allocated the same size
- *
- * Describes how an #GtkWrapBox positions its children.
- */
-typedef enum {
- GTK_WRAP_ALLOCATE_FREE = 0,
- GTK_WRAP_ALLOCATE_ALIGNED,
- GTK_WRAP_ALLOCATE_HOMOGENEOUS
-} GtkWrapAllocationMode;
-
-/**
- * GtkWrapBoxSpreading:
- * @GTK_WRAP_BOX_SPREAD_START: Children are allocated no more than their natural size
- * in the given orientation and any extra space is left trailing at
- * the end of each row/column.
- * @GTK_WRAP_BOX_SPREAD_END: Children are allocated no more than their natural size
- * in the given orientation and any extra space skipped at the beginning
- * of each row/column.
- * @GTK_WRAP_BOX_SPREAD_EVEN: Children are allocated no more than their natural size
- * in the given orientation and any extra space is evenly distributed
- * as empty space between children.
- * @GTK_WRAP_BOX_SPREAD_EXPAND: Extra space is given to children which asked to expand in the given
- * orientation (or columns/rows which contain children who asked to expand).
- * If no children asked to expand; extra space is distributed evenly.
- *
- * Describes how a #GtkWrapBox deals with extra space in a given orientation when allocating children.
- */
-typedef enum {
- GTK_WRAP_BOX_SPREAD_START = 0,
- GTK_WRAP_BOX_SPREAD_END,
- GTK_WRAP_BOX_SPREAD_EVEN,
- GTK_WRAP_BOX_SPREAD_EXPAND
-} GtkWrapBoxSpreading;
-
-/**
- * GtkWrapBoxPacking:
- * @GTK_WRAP_BOX_H_EXPAND: Whether the child expands horizontally.
- * @GTK_WRAP_BOX_V_EXPAND: Whether the child expands vertically.
- *
- * Specifies how widgets will expand vertically and
- * horizontally when placed inside a #GtkWrapBox.
- */
-typedef enum
-{
- GTK_WRAP_BOX_H_EXPAND = 1 << 0,
- GTK_WRAP_BOX_V_EXPAND = 1 << 1
-} GtkWrapBoxPacking;
-
-
G_END_DECLS
#endif /* __GTK_ENUMS_H__ */