Struct iui::controls::HorizontalBox [−][src]
pub struct HorizontalBox { /* fields omitted */ }Lays out its children horizontally.
Methods
impl HorizontalBox[src]
impl HorizontalBoxpub fn show(&mut self, _ctx: &UI)[src]
pub fn show(&mut self, _ctx: &UI)pub fn hide(&mut self, _ctx: &UI)[src]
pub fn hide(&mut self, _ctx: &UI)pub unsafe fn from_raw(uiBox: *mut uiBox) -> HorizontalBox[src]
pub unsafe fn from_raw(uiBox: *mut uiBox) -> HorizontalBoxCreate an iui struct for this control from the raw pointer for it.
Unsafety
The given pointer must point to a valid control or memory unsafety may result.
pub fn ptr(&self) -> *mut uiBox[src]
pub fn ptr(&self) -> *mut uiBoxReturn the underlying pointer for this control.
impl HorizontalBox[src]
impl HorizontalBoxpub fn new(_ctx: &UI) -> HorizontalBox[src]
pub fn new(_ctx: &UI) -> HorizontalBoxCreate a new horizontal box layout.
impl HorizontalBox[src]
impl HorizontalBoxpub fn append<T: Into<Control>>(
&mut self,
_ctx: &UI,
child: T,
strategy: LayoutStrategy
)[src]
pub fn append<T: Into<Control>>(
&mut self,
_ctx: &UI,
child: T,
strategy: LayoutStrategy
)Add a control to the end of the box, sized by the given layout strategy.
pub fn padded(&self, _ctx: &UI) -> bool[src]
pub fn padded(&self, _ctx: &UI) -> boolDetermine whenther the box provides padding around its children.
pub fn set_padded(&mut self, _ctx: &UI, padded: bool)[src]
pub fn set_padded(&mut self, _ctx: &UI, padded: bool)Set whether or not the box should provide padding around its children.
Trait Implementations
impl Drop for HorizontalBox[src]
impl Drop for HorizontalBoximpl Clone for HorizontalBox[src]
impl Clone for HorizontalBoxfn clone(&self) -> HorizontalBox[src]
fn clone(&self) -> HorizontalBoxReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Into<Control> for HorizontalBox[src]
impl Into<Control> for HorizontalBoxAuto Trait Implementations
impl !Send for HorizontalBox
impl !Send for HorizontalBoximpl !Sync for HorizontalBox
impl !Sync for HorizontalBox