[−][src]Struct native_windows_gui::GridLayoutBuilder
Builder for a GridLayout struct
Implementations
impl GridLayoutBuilder[src]
pub fn parent<W: Into<ControlHandle>>(mut self: Self, p: W) -> GridLayoutBuilder[src]
Set the layout parent. The handle must be a window object otherwise the function will panic
pub fn child<W: Into<ControlHandle>>(
mut self: Self,
col: u32,
row: u32,
c: W
) -> GridLayoutBuilder[src]
mut self: Self,
col: u32,
row: u32,
c: W
) -> GridLayoutBuilder
Add a children to the layout at the position col and row.
This is a shortcut over child_item for item with default span.
The handle must be a window object otherwise the function will panic
pub fn child_item(mut self: Self, item: GridLayoutItem) -> GridLayoutBuilder[src]
Add a children to the layout The handle must be a window object otherwise the function will panic
pub fn margin(mut self: Self, m: [u32; 4]) -> GridLayoutBuilder[src]
Set the margins of the layout. The four values are in this order: top, right, bottom, left.
pub fn spacing(mut self: Self, sp: u32) -> GridLayoutBuilder[src]
Set the size of the space between the children in the layout. Default value is 5.
pub fn min_size(mut self: Self, sz: [u32; 2]) -> GridLayoutBuilder[src]
Sets the minimum size of the layout
pub fn max_size(mut self: Self, sz: [u32; 2]) -> GridLayoutBuilder[src]
Sets the maximum size of the layout
pub fn max_column(mut self: Self, count: Option<u32>) -> GridLayoutBuilder[src]
Set the number of column in the layout
pub fn max_row(mut self: Self, count: Option<u32>) -> GridLayoutBuilder[src]
Set the number of row in the layout
pub fn build(self, layout: &GridLayout) -> Result<(), NwgError>[src]
Build the layout object and bind the callback. Children must only contains window object otherwise this method will panic.
Auto Trait Implementations
impl RefUnwindSafe for GridLayoutBuilder[src]
impl !Send for GridLayoutBuilder[src]
impl !Sync for GridLayoutBuilder[src]
impl Unpin for GridLayoutBuilder[src]
impl UnwindSafe for GridLayoutBuilder[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,