Module: Gtk::ButtonBoxStyle

Defined in:
(unknown)

Constant Summary collapse

SPREAD =

Buttons are evenly spread across the box.

1 or :spread
EDGE =

Buttons are placed at the edges of the box.

2 or :edge
START =

Buttons are grouped towards the start of the box,

(on the left for a HBox, or the top for a VBox).
3 or :start
END =

Buttons are grouped towards the end of the box,

(on the right for a HBox, or the bottom for a VBox).
4 or :end
CENTER =

Buttons are centered in the box. Since 2.12.

5 or :center
EXPAND =

Buttons expand to fill the box. This entails giving

buttons a "linked" appearance, making button sizes homogeneous, and
setting spacing to 0 (same as calling gtk_box_set_homogeneous() and
gtk_box_set_spacing() manually). Since 3.12.
6 or :expand