Struct iui::controls::Button [−][src]
A textual button which users can click on, causing a callback to run.
Methods
impl Button
[src]
[−]
impl Button
pub 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(uiButton: *mut uiButton) -> Button
[src]
[−]
pub unsafe fn from_raw(uiButton: *mut uiButton) -> Button
Create 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 uiButton
[src]
[−]
pub fn ptr(&self) -> *mut uiButton
Return the underlying pointer for this control.
impl Button
[src]
[−]
impl Button
pub fn new(_ctx: &UI, text: &str) -> Button
[src]
[−]
pub fn new(_ctx: &UI, text: &str) -> Button
Create a new button with the given text as its label.
pub fn text(&self, _ctx: &UI) -> String
[src]
[−]
pub fn text(&self, _ctx: &UI) -> String
Get a copy of the existing text on the button.
pub fn text_ref(&self, _ctx: &UI) -> &CStr
[src]
[−]
pub fn text_ref(&self, _ctx: &UI) -> &CStr
Get a reference to the existing text on the button.
pub fn set_text(&mut self, _ctx: &UI, text: &str)
[src]
[−]
pub fn set_text(&mut self, _ctx: &UI, text: &str)
Set the text on the button.
pub fn on_clicked<F: FnMut(&mut Button)>(&mut self, _ctx: &UI, callback: F)
[src]
[−]
pub fn on_clicked<F: FnMut(&mut Button)>(&mut self, _ctx: &UI, callback: F)
Run the given callback when the button is clicked.