Struct cursive::prelude::Checkbox [] [src]

pub struct Checkbox {
    // some fields omitted
}

Checkable box.

Methods

impl Checkbox
[src]

fn new() -> Self

Creates a new, unchecked checkbox.

fn disable(&mut self)

Disables this view.

A disabled view cannot be selected.

fn disabled(self) -> Self

Disables this view.

Chainable variant.

fn enable(&mut self)

Re-enables this view.

fn set_enabled(&mut self, enabled: bool)

Enable or disable this view.

fn is_enabled(&self) -> bool

Returns true if this view is enabled.

fn set_on_change<F: 'static + Fn(&mut Cursive, bool)>(&mut self, on_change: F)

Sets a callback to be used when the state changes.

fn on_change<F: 'static + Fn(&mut Cursive, bool)>(self, on_change: F) -> Self

Sets a callback to be used when the state changes.

Chainable variant.

fn toggle(&mut self) -> EventResult

Toggles the checkbox state.

fn check(&mut self) -> EventResult

Check the checkbox.

fn checked(self) -> Self

Check the checkbox.

Chainable variant.

fn is_checked(&self) -> bool

Returns true if the checkbox is checked.

fn uncheck(&mut self) -> EventResult

Uncheck the checkbox.

fn unchecked(self) -> Self

Uncheck the checkbox.

Chainable variant.

fn set_checked(&mut self, checked: bool) -> EventResult

Sets the checkbox state.

Trait Implementations

impl Default for Checkbox
[src]

fn default() -> Self

Returns the "default value" for a type. Read more

impl View for Checkbox
[src]

fn get_min_size(&mut self, _: Vec2) -> Vec2

Returns the minimum size the view requires with the given restrictions. Read more

fn take_focus(&mut self, _: Direction) -> bool

This view is offered focus. Will it take it? Read more

fn draw(&self, printer: &Printer)

Draws the view with the given printer (includes bounds) and focus.

fn on_event(&mut self, event: Event) -> EventResult

Called when a key was pressed. Default implementation just ignores it.

fn needs_relayout(&self) -> bool

Returns true if the view content changed since last layout phase. Read more

fn layout(&mut self, Vec2)

Called once the size for this view has been decided, Read more

fn find(&mut self, &Selector) -> Option<&mut Any>

Finds the view pointed to by the given path. Read more