[][src]Struct cursive::views::Button

pub struct Button { /* fields omitted */ }

Simple text label with a callback when is pressed.

A button shows its content in a single line and has a fixed size.

Examples

let quit_button = Button::new("Quit", |s| s.quit());

Methods

impl Button[src]

pub fn new<F, S>(label: S, cb: F) -> Self where
    F: 'static + Fn(&mut Cursive),
    S: Into<String>, 
[src]

Creates a new button with the given content and callback.

pub fn new_raw<F, S: Into<String>>(label: S, cb: F) -> Self where
    F: 'static + Fn(&mut Cursive), 
[src]

Creates a new button without angle brackets.

pub fn set_callback<F>(&mut self, cb: F) where
    F: Fn(&mut Cursive) + 'static, 
[src]

Sets the function to be called when the button is pressed.

Replaces the previous callback.

pub fn disable(&mut self)[src]

Disables this view.

A disabled view cannot be selected.

pub fn disabled(self) -> Self[src]

Disables this view.

Chainable variant.

pub fn enable(&mut self)[src]

Re-enables this view.

pub fn set_enabled(&mut self, enabled: bool)[src]

Enable or disable this view.

pub fn is_enabled(&self) -> bool[src]

Returns true if this view is enabled.

pub fn label(&self) -> &str[src]

Returns the label for this button.

Includes brackets.

Examples

let button = Button::new("Quit", |s| s.quit());
assert_eq!(button.label(), "<Quit>");

pub fn set_label<S>(&mut self, label: S) where
    S: Into<String>, 
[src]

Sets the label to the given value.

This will include brackets.

pub fn set_label_raw<S>(&mut self, label: S) where
    S: Into<String>, 
[src]

Sets the label exactly to the given value.

This will not include brackets.

Trait Implementations

impl View for Button[src]

fn call_on_any<'a>(&mut self, _: &Selector, _: AnyCb<'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

Auto Trait Implementations

impl !Send for Button

impl !Sync for Button

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]