Package: gtk

Class gtk-alignment

Superclasses

gtk-bin, gtk-container, gtk-widget, gtk-buildable, g-object, common-lisp:standard-object, common-lisp:t

Documented Subclasses

None

Direct Slots

bottom-padding
The bottom-padding property of type :uint (Read / Write)
The padding to insert at the bottom of the child widget.
Allowed values: < G_MAXINT
Default value: 0
left-padding
The left-padding property of type :uint (Read / Write)
The padding to insert at the left of the child widget.
Allowed values: < G_MAXINT
Default value: 0
right-padding
The right-padding property of type :uint (Read / Write)
The padding to insert at the right of the child widget.
Allowed values: < G_MAXINT
Default value: 0
top-padding
The top-padding property of type :uint (Read / Write)
The padding to insert at the top of the child widget.
Allowed values: < G_MAXINT
Default value: 0
xalign
The xalign property of type :float (Read / Write)
Horizontal position of the child widget in available space. 0.0 is left aligned, 1.0 is right aligned.
Allowed values: [0.0, 1.0]
Default value: 0.5
xscale
The xscale property :float (Read / Write)
If available horizontal space is bigger than needed for the child widget, how much of it to use for the child. 0.0 means none, 1.0 means all.
Allowed values: [0.0, 1.0]
Default value: 1.0
yalign
The yalign property of type :float (Read / Write)
Vertical position of the child widget in available space. 0.0 is top aligned, 1.0 is bottom aligned.
Allowed values: [0.0, 1.0]
Default value: 0.5
yscale
The yscale property of type :float (Read / Write)
If available vertical space is bigger than needed for the child widget, how much of it to use for the child. 0.0 means none, 1.0 means all.
Allowed values: [0.0, 1.0]
Default value: 1.0

Details

The gtk-alignment widget controls the alignment and size of its child widget. It has four settings: xscale, yscale, xalign, and yalign.

The scale settings are used to specify how much the child widget should expand to fill the space allocated to the alignment. The values can range from 0.0, meaning the child does not expand at all, to 1.0, meaning the child expands to fill all of the available space.

The align settings are used to place the child widget within the available area. The values range from 0.0, top or left, to 1.0, bottom or right. Of course, if the scale settings are both set to 1.0, the alignment settings have no effect.

Warning

The gtk-alignment widget has been deprecated in 3.14 and should not be used in newly written code. The desired effect can be achieved by using the halign, valign and margin properties on the child widget.
 

Slot Access Functions

Inherited Slot Access Functions

See also

*2021-7-25