Package ch.bailu.gtk.adw
Klasse BreakpointBin
- Alle implementierten Schnittstellen:
PointerInterface
A widget that changes layout based on available size.
<picture>
<source srcset="breakpoint-bin-dark.png" media="(prefers-color-scheme: dark)">
<img src="breakpoint-bin.png" alt="breakpoint-bin">
</picture>
`AdwBreakpointBin` provides a way to use breakpoints without [class@Window],
[class@ApplicationWindow] or [class@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 [class@Bin]. It has one child, set via the
[property@BreakpointBin:child] property.
When `AdwBreakpointBin` is resized, its child widget can rearrange its layout
at specific thresholds.
The thresholds and layout changes are defined via [class@Breakpoint] objects.
They can be added using [method@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 [signal@Breakpoint::apply] and [signal@Breakpoint::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
[property@BreakpointBin: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 [property@Gtk.Widget:width-request] and
[property@Gtk.Widget: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 [class@Gtk.Label] this can be done via [property@Gtk.Label:ellipsize], or
via [property@Gtk.Label:wrap] together with [property@Gtk.Label:wrap-mode].
For buttons, use [property@Gtk.Button:can-shrink],
[property@Gtk.MenuButton:can-shrink], [property@Adw.SplitButton:can-shrink],
or [property@Adw.ButtonContent:can-shrink].
## Example
```c
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` as `GtkBuildable`
`AdwBreakpointBin` allows adding `AdwBreakpoint` objects as children.
Example of an `AdwBreakpointBin` UI definition:
```xml
<object class="AdwBreakpointBin">
<property name="width-request">150</property>
<property name="height-request">150</property>
<property name="child">
<object class="GtkLabel" id="child">
<property name="label">Wide</property>
<property name="ellipsize">end</property>
<style>
<class name="title-1"/>
</style>
</object>
</property>
<child>
<object class="AdwBreakpoint">
<condition>max-width: 200px</condition>
<setter object="child" property="label">Narrow</setter>
</object>
</child>
</object>
```
See [class@Breakpoint] documentation for details.
<picture>
<source srcset="breakpoint-bin-dark.png" media="(prefers-color-scheme: dark)">
<img src="breakpoint-bin.png" alt="breakpoint-bin">
</picture>
`AdwBreakpointBin` provides a way to use breakpoints without [class@Window],
[class@ApplicationWindow] or [class@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 [class@Bin]. It has one child, set via the
[property@BreakpointBin:child] property.
When `AdwBreakpointBin` is resized, its child widget can rearrange its layout
at specific thresholds.
The thresholds and layout changes are defined via [class@Breakpoint] objects.
They can be added using [method@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 [signal@Breakpoint::apply] and [signal@Breakpoint::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
[property@BreakpointBin: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 [property@Gtk.Widget:width-request] and
[property@Gtk.Widget: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 [class@Gtk.Label] this can be done via [property@Gtk.Label:ellipsize], or
via [property@Gtk.Label:wrap] together with [property@Gtk.Label:wrap-mode].
For buttons, use [property@Gtk.Button:can-shrink],
[property@Gtk.MenuButton:can-shrink], [property@Adw.SplitButton:can-shrink],
or [property@Adw.ButtonContent:can-shrink].
## Example
```c
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` as `GtkBuildable`
`AdwBreakpointBin` allows adding `AdwBreakpoint` objects as children.
Example of an `AdwBreakpointBin` UI definition:
```xml
<object class="AdwBreakpointBin">
<property name="width-request">150</property>
<property name="height-request">150</property>
<property name="child">
<object class="GtkLabel" id="child">
<property name="label">Wide</property>
<property name="ellipsize">end</property>
<style>
<class name="title-1"/>
</style>
</object>
</property>
<child>
<object class="AdwBreakpoint">
<condition>max-width: 200px</condition>
<setter object="child" property="label">Narrow</setter>
</object>
</child>
</object>
```
See [class@Breakpoint] documentation for details.
https://gnome.pages.gitlab.gnome.org/libadwaita/doc/main/class.BreakpointBin.html
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen ch.bailu.gtk.gtk.Widget
Widget.OnDestroy, Widget.OnDestroyNotify, Widget.OnDirectionChanged, Widget.OnHide, Widget.OnKeynavFailed, Widget.OnMap, Widget.OnMnemonicActivate, Widget.OnMoveFocus, Widget.OnQueryTooltip, Widget.OnRealize, Widget.OnShow, Widget.OnStateFlagsChanged, Widget.OnTickCallback, Widget.OnUnmap, Widget.OnUnrealize
Von Klasse geerbte verschachtelte Klassen/Schnittstellen ch.bailu.gtk.gobject.Object
Object.OnBindingTransformFunc, Object.OnDuplicateFunc, Object.OnNotify, Object.OnToggleNotify, Object.OnWeakNotify
-
Feldübersicht
Von Klasse geerbte Felder ch.bailu.gtk.gtk.Widget
SIGNAL_ON_DESTROY, SIGNAL_ON_DIRECTION_CHANGED, SIGNAL_ON_HIDE, SIGNAL_ON_KEYNAV_FAILED, SIGNAL_ON_MAP, SIGNAL_ON_MNEMONIC_ACTIVATE, SIGNAL_ON_MOVE_FOCUS, SIGNAL_ON_QUERY_TOOLTIP, SIGNAL_ON_REALIZE, SIGNAL_ON_SHOW, SIGNAL_ON_STATE_FLAGS_CHANGED, SIGNAL_ON_UNMAP, SIGNAL_ON_UNREALIZE
Von Klasse geerbte Felder ch.bailu.gtk.gobject.Object
SIGNAL_ON_NOTIFY
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
addBreakpoint
(Breakpoint breakpoint) Adds @breakpoint to @self.Implements interfaceAccessible
.Implements interfaceBuildable
.Implements interfaceConstraintTarget
.getChild()
Gets the child widget of @self.static ClassHandler
Gets the current breakpoint.static int
static long
static TypeSystem.TypeSize
static long
static TypeSystem.TypeSize
void
removeBreakpoint
(Breakpoint breakpoint) Removes @breakpoint from @self.void
Sets the child widget of @self.Von Klasse geerbte Methoden ch.bailu.gtk.gtk.Widget
actionSetEnabled, actionSetEnabled, activate, activateAction, activateAction, activateActionVariant, activateActionVariant, activateDefault, addController, addCssClass, addCssClass, addMnemonicLabel, addTickCallback, allocate, childFocus, computeBounds, computeExpand, computePoint, computeTransform, contains, createPangoContext, createPangoLayout, createPangoLayout, disposeTemplate, dragCheckThreshold, errorBell, getAllocatedBaseline, getAllocatedHeight, getAllocatedWidth, getAllocation, getAncestor, getBaseline, getCanFocus, getCanTarget, getChildVisible, getClipboard, getColor, getCssClasses, getCssName, getCursor, getDefaultDirection, getDirection, getDisplay, getFirstChild, getFocusable, getFocusChild, getFocusOnClick, getFontMap, getFontOptions, getFrameClock, getHalign, getHasTooltip, getHeight, getHexpand, getHexpandSet, getLastChild, getLayoutManager, getLimitEvents, getMapped, getMarginBottom, getMarginEnd, getMarginStart, getMarginTop, getName, getNative, getNextSibling, getOpacity, getOverflow, getPangoContext, getParent, getPreferredSize, getPrevSibling, getPrimaryClipboard, getRealized, getReceivesDefault, getRequestMode, getRoot, getScaleFactor, getSensitive, getSettings, getSize, getSizeRequest, getStateFlags, getStyleContext, getTemplateChild, getTemplateChild, getTooltipMarkup, getTooltipText, getValign, getVexpand, getVexpandSet, getVisible, getWidth, grabFocus, hasCssClass, hasCssClass, hasDefault, hasFocus, hasVisibleFocus, hide, inDestruction, initTemplate, insertActionGroup, insertActionGroup, insertAfter, insertBefore, isAncestor, isDrawable, isFocus, isSensitive, isVisible, keynavFailed, listMnemonicLabels, map, measure, mnemonicActivate, observeChildren, observeControllers, onDestroy, onDirectionChanged, onHide, onKeynavFailed, onMap, onMnemonicActivate, onMoveFocus, onQueryTooltip, onRealize, onShow, onStateFlagsChanged, onUnmap, onUnrealize, pick, queueAllocate, queueDraw, queueResize, realize, removeController, removeCssClass, removeCssClass, removeMnemonicLabel, removeTickCallback, setCanFocus, setCanTarget, setChildVisible, setCssClasses, setCursor, setCursorFromName, setCursorFromName, setDefaultDirection, setDirection, setFocusable, setFocusChild, setFocusOnClick, setFontMap, setFontOptions, setHalign, setHasTooltip, setHexpand, setHexpandSet, setLayoutManager, setLimitEvents, setMarginBottom, setMarginEnd, setMarginStart, setMarginTop, setName, setName, setOpacity, setOverflow, setParent, setReceivesDefault, setSensitive, setSizeRequest, setStateFlags, setTooltipMarkup, setTooltipMarkup, setTooltipText, setTooltipText, setValign, setVexpand, setVexpandSet, setVisible, shouldLayout, show, sizeAllocate, snapshotChild, triggerTooltipQuery, unmap, unparent, unrealize, unsetStateFlags
Von Klasse geerbte Methoden ch.bailu.gtk.type.PropertyHolder
getBooleanProperty, getIntProperty, getObjectProperty, getStringProperty, getStrProperty, setBooleanProperty, setIntProperty, setObjectProperty, setStringProperty, setStrProperty
Von Klasse geerbte Methoden ch.bailu.gtk.gobject.Object
addToggleRef, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, disconnect, disconnect, dupData, dupData, dupQdata, forceFloating, freezeNotify, get, get, getData, getData, getProperty, getProperty, getQdata, interfaceFindProperty, interfaceInstallProperty, isFloating, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, replaceData, replaceData, replaceQdata, runDispose, set, set, setData, setData, setDataFull, setDataFull, setProperty, setProperty, setQdata, setQdataFull, stealData, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref
Von Klasse geerbte Methoden ch.bailu.gtk.type.Pointer
asCPointer, cast, connectSignal, disconnectSignals, disconnectSignals, equals, hashCode, throwIfNull, throwNullPointerException, toString, unregisterCallbacks, unregisterCallbacks
Von Klasse geerbte Methoden ch.bailu.gtk.type.Type
asCPointer, asCPointer, asCPointerNotNull, asJnaPointer, asJnaPointer, asPointer, asPointer, cast, cast, throwIfNull
Von Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.bailu.gtk.type.PointerInterface
asCPointerNotNull, asJnaPointer, asPointer, isNotNull, isNull
-
Konstruktordetails
-
BreakpointBin
-
BreakpointBin
public BreakpointBin()Creates a new `AdwBreakpointBin`.
-
-
Methodendetails
-
getClassHandler
-
addBreakpoint
Adds @breakpoint to @self.- Parameter:
breakpoint
- the breakpoint to add
-
getChild
Gets the child widget of @self.- Gibt zurück:
- the child widget of @self
-
getCurrentBreakpoint
Gets the current breakpoint.- Gibt zurück:
- the current breakpoint
-
removeBreakpoint
Removes @breakpoint from @self.- Parameter:
breakpoint
- a breakpoint to remove
-
setChild
Sets the child widget of @self.- Parameter:
child
- the child widget
-
asAccessible
Implements interfaceAccessible
. Call this to get access to interface functions.- Setzt außer Kraft:
asAccessible
in KlasseWidget
- Gibt zurück:
Accessible
-
asBuildable
Implements interfaceBuildable
. Call this to get access to interface functions.- Setzt außer Kraft:
asBuildable
in KlasseWidget
- Gibt zurück:
Buildable
-
asConstraintTarget
Implements interfaceConstraintTarget
. Call this to get access to interface functions.- Setzt außer Kraft:
asConstraintTarget
in KlasseWidget
- Gibt zurück:
ConstraintTarget
-
getTypeID
public static long getTypeID() -
getParentTypeID
public static long getParentTypeID() -
getTypeSize
-
getParentTypeSize
-
getInstanceSize
public static int getInstanceSize()
-