Struct gtk4::builders::GridLayoutBuilder
source · pub struct GridLayoutBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct GridLayout
objects.
Implementations§
source§impl GridLayoutBuilder
impl GridLayoutBuilder
sourcepub fn baseline_row(self, baseline_row: i32) -> Self
pub fn baseline_row(self, baseline_row: i32) -> Self
The row to align to the baseline, when GtkWidget:valign
is set
to Align::Baseline
.
sourcepub fn column_homogeneous(self, column_homogeneous: bool) -> Self
pub fn column_homogeneous(self, column_homogeneous: bool) -> Self
Whether all the columns in the grid have the same width.
sourcepub fn column_spacing(self, column_spacing: i32) -> Self
pub fn column_spacing(self, column_spacing: i32) -> Self
The amount of space between to consecutive columns.
sourcepub fn row_homogeneous(self, row_homogeneous: bool) -> Self
pub fn row_homogeneous(self, row_homogeneous: bool) -> Self
Whether all the rows in the grid have the same height.
sourcepub fn row_spacing(self, row_spacing: i32) -> Self
pub fn row_spacing(self, row_spacing: i32) -> Self
The amount of space between to consecutive rows.
sourcepub fn build(self) -> GridLayout
pub fn build(self) -> GridLayout
Build the GridLayout
.
Auto Trait Implementations§
impl RefUnwindSafe for GridLayoutBuilder
impl !Send for GridLayoutBuilder
impl !Sync for GridLayoutBuilder
impl Unpin for GridLayoutBuilder
impl UnwindSafe for GridLayoutBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more