pub struct ClampLayoutBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct ClampLayout
objects.
Implementations§
source§impl ClampLayoutBuilder
impl ClampLayoutBuilder
sourcepub fn maximum_size(self, maximum_size: i32) -> Self
pub fn maximum_size(self, maximum_size: i32) -> Self
The maximum size to allocate to the children.
It is the width if the layout is horizontal, or the height if it is vertical.
sourcepub fn tightening_threshold(self, tightening_threshold: i32) -> Self
pub fn tightening_threshold(self, tightening_threshold: i32) -> Self
The size above which the children are clamped.
Starting from this size, the layout will tighten its grip on the children, slowly allocating less and less of the available size up to the maximum allocated size. Below that threshold and below the maximum size, the children will be allocated all the available size.
If the threshold is greater than the maximum size to allocate to the children, they will be allocated the whole size up to the maximum. If the threshold is lower than the minimum size to allocate to the children, that size will be used as the tightening threshold.
Effectively, tightening the grip on a child before it reaches its maximum size makes transitions to and from the maximum size smoother when resizing.
sourcepub fn unit(self, unit: LengthUnit) -> Self
Available on crate feature v1_4
only.
pub fn unit(self, unit: LengthUnit) -> Self
v1_4
only.The length unit for maximum size and tightening threshold.
Allows the sizes to vary depending on the text scale factor.
sourcepub fn orientation(self, orientation: Orientation) -> Self
pub fn orientation(self, orientation: Orientation) -> Self
The orientation of the orientable.
sourcepub fn build(self) -> ClampLayout
pub fn build(self) -> ClampLayout
Build the ClampLayout
.