:right-sidebar: True
ConstraintLayout
===================================================================
.. currentmodule:: gi.repository.Gtk
.. class:: ConstraintLayout(**properties: ~typing.Any)
:no-contents-entry:
Superclasses: :class:`~gi.repository.Gtk.LayoutManager`, :class:`~gi.repository.GObject.Object`
Implemented Interfaces: :class:`~gi.repository.Gtk.Buildable`
A layout manager using constraints to describe relations between widgets.
``GtkConstraintLayout`` is a layout manager that uses relations between
widget attributes, expressed via :obj:`~gi.repository.Gtk.Constraint` instances, to
measure and allocate widgets.
How do constraints work
--------------------------------------------------------------------------------
Constraints are objects defining the relationship between attributes
of a widget; you can read the description of the :obj:`~gi.repository.Gtk.Constraint`
class to have a more in depth definition.
By taking multiple constraints and applying them to the children of
a widget using ``GtkConstraintLayout``\, it's possible to describe
complex layout policies; each constraint applied to a child or to the parent
widgets contributes to the full description of the layout, in terms of
parameters for resolving the value of each attribute.
It is important to note that a layout is defined by the totality of
constraints; removing a child, or a constraint, from an existing layout
without changing the remaining constraints may result in an unstable
or unsolvable layout.
Constraints have an implicit "reading order"; you should start describing
each edge of each child, as well as their relationship with the parent
container, from the top left (or top right, in RTL languages), horizontally
first, and then vertically.
A constraint-based layout with too few constraints can become "unstable",
that is: have more than one solution. The behavior of an unstable layout
is undefined.
A constraint-based layout with conflicting constraints may be unsolvable,
and lead to an unstable layout. You can use the :obj:`~gi.repository.Gtk.Constraint.props.strength`
property of :obj:`~gi.repository.Gtk.Constraint` to "nudge" the layout towards a solution.
GtkConstraintLayout as GtkBuildable
--------------------------------------------------------------------------------
``GtkConstraintLayout`` implements the :obj:`~gi.repository.Gtk.Buildable` interface and
has a custom "constraints" element which allows describing constraints in
a :obj:`~gi.repository.Gtk.Builder` UI file.
An example of a UI definition fragment specifying a constraint:
.. code-block:: xml
:dedent:
The definition above will add two constraints to the GtkConstraintLayout:
- a required constraint between the leading edge of "button" and
the leading edge of the widget using the constraint layout, plus
12 pixels
- a strong, constant constraint making the width of "button" greater
than, or equal to 250 pixels
The "target" and "target-attribute" attributes are required.
The "source" and "source-attribute" attributes of the "constraint"
element are optional; if they are not specified, the constraint is
assumed to be a constant.
The "relation" attribute is optional; if not specified, the constraint
is assumed to be an equality.
The "strength" attribute is optional; if not specified, the constraint
is assumed to be required.
The "source" and "target" attributes can be set to "super" to indicate
that the constraint target is the widget using the GtkConstraintLayout.
There can be "constant" and "multiplier" attributes.
Additionally, the "constraints" element can also contain a description
of the ``GtkConstraintGuides`` used by the layout:
.. code-block:: xml
:dedent:
The "guide" element has the following optional attributes:
- "min-width", "nat-width", and "max-width", describe the minimum,
natural, and maximum width of the guide, respectively
- "min-height", "nat-height", and "max-height", describe the minimum,
natural, and maximum height of the guide, respectively
- "strength" describes the strength of the constraint on the natural
size of the guide; if not specified, the constraint is assumed to
have a medium strength
- "name" describes a name for the guide, useful when debugging
Using the Visual Format Language
--------------------------------------------------------------------------------
Complex constraints can be described using a compact syntax called VFL,
or *Visual Format Language*\.
The Visual Format Language describes all the constraints on a row or
column, typically starting from the leading edge towards the trailing
one. Each element of the layout is composed by "views", which identify
a :obj:`~gi.repository.Gtk.ConstraintTarget`\.
For instance:
.. code-block::
:dedent:
[button]-[textField]
Describes a constraint that binds the trailing edge of "button" to the
leading edge of "textField", leaving a default space between the two.
Using VFL is also possible to specify predicates that describe constraints
on attributes like width and height:
.. code-block::
:dedent:
// Width must be greater than, or equal to 50
[button(>=50)]
// Width of button1 must be equal to width of button2
[button1(==button2)]
The default orientation for a VFL description is horizontal, unless
otherwise specified:
.. code-block::
:dedent:
// horizontal orientation, default attribute: width
H:[button(>=150)]
// vertical orientation, default attribute: height
V:[button1(==button2)]
It's also possible to specify multiple predicates, as well as their
strength:
.. code-block::
:dedent:
// minimum width of button must be 150
// natural width of button can be 250
[button(>=150@required, ==250@medium)]
Finally, it's also possible to use simple arithmetic operators:
.. code-block::
:dedent:
// width of button1 must be equal to width of button2
// divided by 2 plus 12
[button1(button2 / 2 + 12)]
Constructors
------------
.. rst-class:: interim-class
.. class:: ConstraintLayout
:no-index:
.. classmethod:: new() -> ~gi.repository.Gtk.LayoutManager
Creates a new ``GtkConstraintLayout`` layout manager.
Methods
-------
.. rst-class:: interim-class
.. class:: ConstraintLayout
:no-index:
.. method:: add_constraint(constraint: ~gi.repository.Gtk.Constraint) -> None
Adds a constraint to the layout manager.
The :obj:`~gi.repository.Gtk.Constraint.props.source` and :obj:`~gi.repository.Gtk.Constraint.props.target`
properties of ``constraint`` can be:
- set to ``NULL`` to indicate that the constraint refers to the
widget using ``layout``
- set to the :obj:`~gi.repository.Gtk.Widget` using ``layout``
- set to a child of the :obj:`~gi.repository.Gtk.Widget` using ``layout``
- set to a :obj:`~gi.repository.Gtk.ConstraintGuide` that is part of ``layout``
The ``layout`` acquires the ownership of ``constraint`` after calling
this function.
:param constraint: a :obj:`~gi.repository.Gtk.Constraint`
.. method:: add_constraints_from_description(lines: list[str], hspacing: int, vspacing: int, views: dict[str, ~gi.repository.Gtk.ConstraintTarget]) -> list[~gi.repository.Gtk.Constraint]
Creates a list of constraints from a VFL description.
This function is a convenience wrapper around
:obj:`~gi.repository.Gtk.ConstraintLayout.add_constraints_from_descriptionv`\, using
variadic arguments to populate the view/target map.
:param lines: an array of Visual Format Language lines
defining a set of constraints
:param hspacing: default horizontal spacing value, or -1 for the fallback value
:param vspacing: default vertical spacing value, or -1 for the fallback value
:param views:
.. method:: add_guide(guide: ~gi.repository.Gtk.ConstraintGuide) -> None
Adds a guide to ``layout``\.
A guide can be used as the source or target of constraints,
like a widget, but it is not visible.
The ``layout`` acquires the ownership of ``guide`` after calling
this function.
:param guide: a :obj:`~gi.repository.Gtk.ConstraintGuide` object
.. method:: observe_constraints() -> ~gi.repository.Gio.ListModel
Returns a ``GListModel`` to track the constraints that are
part of the layout.
Calling this function will enable extra internal bookkeeping
to track constraints and emit signals on the returned listmodel.
It may slow down operations a lot.
Applications should try hard to avoid calling this function
because of the slowdowns.
.. method:: observe_guides() -> ~gi.repository.Gio.ListModel
Returns a ``GListModel`` to track the guides that are
part of the layout.
Calling this function will enable extra internal bookkeeping
to track guides and emit signals on the returned listmodel.
It may slow down operations a lot.
Applications should try hard to avoid calling this function
because of the slowdowns.
.. method:: remove_all_constraints() -> None
Removes all constraints from the layout manager.
.. method:: remove_constraint(constraint: ~gi.repository.Gtk.Constraint) -> None
Removes ``constraint`` from the layout manager,
so that it no longer influences the layout.
:param constraint: a :obj:`~gi.repository.Gtk.Constraint`
.. method:: remove_guide(guide: ~gi.repository.Gtk.ConstraintGuide) -> None
Removes ``guide`` from the layout manager,
so that it no longer influences the layout.
:param guide: a :obj:`~gi.repository.Gtk.ConstraintGuide` object