GtkFixed
a container which supports fixed sizes and positions of its children.
The #GtkFixed widget is a container which can place child widgets at fixed
positions and with fixed sizes, given in pixels.
The #GtkFixed-struct struct contains the following fields.
(These fields should be considered read-only. They should never be set by
an application.)
#GList *children;
a list of #GtkFixedChild elements, containing the child widgets and
their positions.
The #GtkFixedChild-struct struct contains the following fields.
(These fields should be considered read-only. They should never be set by
an application.)
#GtkWidget *widget;
the child #GtkWidget.
#gint16 x;
the horizontal position of the widget within the #GtkFixed
container.
#gint16 y;
the vertical position of the widget within the #GtkFixed
container.
@widget:
@x:
@y:
Creates a new #GtkFixed.
@Returns: a new #GtkFixed.
Adds a widget to a #GtkFixed container at the given position.
@fixed: a #GtkFixed.
@widget: the widget to add.
@x: the horizontal position to place the widget at.
@y: the vertical position to place the widget at.
Moves a child of a #GtkFixed container to the given position.
@fixed: a #GtkFixed.
@widget: the child widget.
@x: the horizontal position to move the widget to.
@y: the vertical position to move the widget to.