-
public bool get_homogeneous ()
Returns whether the box is homogeneous (all children are the same size). See
set_homogeneous.
-
public int get_spacing ()
-
public void pack_end (Widget child, bool expand = true, bool fill = true, uint padding = 0)
Adds child to box, packed with reference to the end of box. The
child is packed after (away from end of) any other child packed with reference to the end of box.
-
public void pack_start (Widget child, bool expand = true, bool fill = true, uint padding = 0)
Adds child to box, packed with reference to the start of box.
The child is packed after any other child packed with reference to the start of box.
-
public void query_child_packing (Widget child, out bool expand, out bool fill, out uint padding, out PackType pack_type)
Obtains information about how child is packed into box.
-
public void reorder_child (Widget child, int position)
Moves child to a new position in the list of box children. The
list is the children field of Box-struct, and contains both widgets packed
START as well as widgets packed
END, in the order that these widgets were added to box.
-
public void set_child_packing (Widget child, bool expand, bool fill, uint padding, PackType pack_type)
Sets the way child is packed into box.
-
public void set_homogeneous (bool homogeneous)
Sets the homogeneous property of box
, controlling whether or not all children of box are given equal space in the box.
-
public void set_spacing (int spacing)
Sets the spacing property of box,
which is the number of pixels to place between children of box.