Struct cursive::views::Checkbox
[−]
[src]
pub struct Checkbox { /* fields omitted */ }Checkable box.
Methods
impl Checkbox[src]
fn disable(&mut self)[src]
Disables this view.
A disabled view cannot be selected.
fn disabled(self) -> Self[src]
Disables this view.
Chainable variant.
fn enable(&mut self)[src]
Re-enables this view.
fn set_enabled(&mut self, enabled: bool)[src]
Enable or disable this view.
fn is_enabled(&self) -> bool[src]
Returns true if this view is enabled.
fn new() -> Self[src]
Creates a new, unchecked checkbox.
fn set_on_change<F: 'static + Fn(&mut Cursive, bool)>(&mut self, on_change: F)[src]
Sets a callback to be used when the state changes.
fn on_change<F: 'static + Fn(&mut Cursive, bool)>(self, on_change: F) -> Self[src]
Sets a callback to be used when the state changes.
Chainable variant.
fn toggle(&mut self) -> EventResult[src]
Toggles the checkbox state.
fn check(&mut self) -> EventResult[src]
Check the checkbox.
fn checked(self) -> Self[src]
Check the checkbox.
Chainable variant.
fn is_checked(&self) -> bool[src]
Returns true if the checkbox is checked.
fn uncheck(&mut self) -> EventResult[src]
Uncheck the checkbox.
fn unchecked(self) -> Self[src]
Uncheck the checkbox.
Chainable variant.
fn set_checked(&mut self, checked: bool) -> EventResult[src]
Sets the checkbox state.
Trait Implementations
impl Default for Checkbox[src]
impl View for Checkbox[src]
fn required_size(&mut self, _: Vec2) -> Vec2[src]
Returns the minimum size the view requires with the given restrictions. Read more
fn take_focus(&mut self, _: Direction) -> bool[src]
This view is offered focus. Will it take it? Read more
fn draw(&self, printer: &Printer)[src]
Draws the view with the given printer (includes bounds) and focus.
fn on_event(&mut self, event: Event) -> EventResult[src]
Called when a key was pressed. Read more
fn needs_relayout(&self) -> bool[src]
Returns true if the view content changed since last layout phase. Read more
fn layout(&mut self, Vec2)[src]
Called once the size for this view has been decided, Read more
fn call_on_any<'a>(&mut self, _: &Selector, _: Box<FnMut(&mut Any) + 'a>)[src]
Runs a closure on the view identified by the given selector. Read more
fn focus_view(&mut self, &Selector) -> Result<(), ()>[src]
Moves the focus to the view identified by the given selector. Read more