:right-sidebar: True BreakpointBin =================================================================== .. currentmodule:: gi.repository.Adw .. versionadded:: 1.4 .. class:: BreakpointBin(**properties: ~typing.Any) :no-contents-entry: Superclasses: :class:`~gi.repository.Gtk.Widget`, :class:`~gi.repository.GObject.InitiallyUnowned`, :class:`~gi.repository.GObject.Object` Implemented Interfaces: :class:`~gi.repository.Gtk.Accessible`, :class:`~gi.repository.Gtk.Buildable`, :class:`~gi.repository.Gtk.ConstraintTarget` A widget that changes layout based on available size. .. image:: https://gnome.pages.gitlab.gnome.org/libadwaita/doc/1-latest/breakpoint-bin.png ``AdwBreakpointBin`` provides a way to use breakpoints without :obj:`~gi.repository.Adw.Window`\, :obj:`~gi.repository.Adw.ApplicationWindow` or :obj:`~gi.repository.Adw.Dialog`\. It can be useful for limiting breakpoints to a single page and similar purposes. Most applications shouldn't need it. ``AdwBreakpointBin`` is similar to :obj:`~gi.repository.Adw.Bin`\. It has one child, set via the :obj:`~gi.repository.Adw.BreakpointBin.props.child` property. When ``AdwBreakpointBin`` is resized, its child widget can rearrange its layout at specific thresholds. The thresholds and layout changes are defined via :obj:`~gi.repository.Adw.Breakpoint` objects. They can be added using :obj:`~gi.repository.BreakpointBin.add_breakpoint`\. Each breakpoint has a condition, specifying the bin's size and/or aspect ratio, and setters that automatically set object properties when that happens. The :obj:`~gi.repository.Adw.Breakpoint.signals.apply` and :obj:`~gi.repository.Adw.Breakpoint.signals.unapply` can be used instead for more complex scenarios. Breakpoints are only allowed to modify widgets inside the ``AdwBreakpointBin``\, but not on the ``AdwBreakpointBin`` itself or any other widgets. If multiple breakpoints can be used for the current size, the last one is always picked. The current breakpoint can be tracked using the :obj:`~gi.repository.Adw.BreakpointBin.props.current_breakpoint` property. If none of the breakpoints can be used, that property will be set to ``NULL``\, and the original property values will be used instead. Minimum Size -------------------------------------------------------------------------------- Adding a breakpoint to ``AdwBreakpointBin`` will result in it having no minimum size. The :obj:`~gi.repository.Gtk.Widget.props.width_request` and :obj:`~gi.repository.Gtk.Widget.props.height_request` properties must always be set when using breakpoints, indicating the smallest size you want to support. The minimum size and breakpoint conditions must be carefully selected so that the child widget completely fits. If it doesn't, it will overflow and a warning message will be printed. When choosing minimum size, consider translations and text scale factor changes. Make sure to leave enough space for text labels, and enable ellipsizing or wrapping if they might not fit. For :obj:`~gi.repository.Gtk.Label` this can be done via :obj:`~gi.repository.Gtk.Label.props.ellipsize`\, or via :obj:`~gi.repository.Gtk.Label.props.wrap` together with :obj:`~gi.repository.Gtk.Label.props.wrap_mode`\. For buttons, use :obj:`~gi.repository.Gtk.Button.props.can_shrink`\, :obj:`~gi.repository.Gtk.MenuButton.props.can_shrink`\, :obj:`~gi.repository.Adw.SplitButton.props.can_shrink`\, or :obj:`~gi.repository.Adw.ButtonContent.props.can_shrink`\. Example -------------------------------------------------------------------------------- .. code-block:: c :dedent: GtkWidget *bin, *child; AdwBreakpoint *breakpoint; bin = adw_breakpoint_bin_new (); gtk_widget_set_size_request (bin, 150, 150); child = gtk_label_new ("Wide"); gtk_label_set_ellipsize (GTK_LABEL (label), PANGO_ELLIPSIZE_END); gtk_widget_add_css_class (child, "title-1"); adw_breakpoint_bin_set_child (ADW_BREAKPOINT_BIN (bin), child); breakpoint = adw_breakpoint_new (adw_breakpoint_condition_parse ("max-width: 200px")); adw_breakpoint_add_setters (breakpoint, G_OBJECT (child), "label", "Narrow", NULL); adw_breakpoint_bin_add_breakpoint (ADW_BREAKPOINT_BIN (bin), breakpoint); The bin has a single label inside it, displaying "Wide". When the bin's width is smaller than or equal to 200px, it changes to "Narrow". -------------------------------------------------------------------------------- ``AdwBreakpointBin`` allows adding ``AdwBreakpoint`` objects as children. Example of an ``AdwBreakpointBin`` UI definition: .. code-block:: xml :dedent: 150 150 Wide end max-width: 200px Narrow See :obj:`~gi.repository.Adw.Breakpoint` documentation for details. Constructors ------------ .. rst-class:: interim-class .. class:: BreakpointBin :no-index: .. classmethod:: new() -> ~gi.repository.Gtk.Widget Creates a new ``AdwBreakpointBin``\. .. versionadded:: 1.4 Methods ------- .. rst-class:: interim-class .. class:: BreakpointBin :no-index: .. method:: add_breakpoint(breakpoint: ~gi.repository.Adw.Breakpoint) -> None Adds ``breakpoint`` to ``self``\. .. versionadded:: 1.4 :param breakpoint: the breakpoint to add .. method:: get_child() -> ~gi.repository.Gtk.Widget | None Gets the child widget of ``self``\. .. versionadded:: 1.4 .. method:: get_current_breakpoint() -> ~gi.repository.Adw.Breakpoint | None Gets the current breakpoint. .. versionadded:: 1.4 .. method:: remove_breakpoint(breakpoint: ~gi.repository.Adw.Breakpoint) -> None Removes ``breakpoint`` from ``self``\. .. versionadded:: 1.5 :param breakpoint: a breakpoint to remove .. method:: set_child(child: ~gi.repository.Gtk.Widget | None = None) -> None Sets the child widget of ``self``\. .. versionadded:: 1.4 :param child: the child widget Properties ---------- .. rst-class:: interim-class .. class:: BreakpointBin :no-index: .. attribute:: props.child :type: ~gi.repository.Gtk.Widget The type of the None singleton. .. versionadded:: 1.4 .. attribute:: props.current_breakpoint :type: ~gi.repository.Adw.Breakpoint The type of the None singleton. .. versionadded:: 1.4 Fields ------ .. rst-class:: interim-class .. class:: BreakpointBin :no-index: .. attribute:: parent_instance