[][src]Struct coffee::ui::widget::checkbox::Checkbox

pub struct Checkbox<Message> { /* fields omitted */ }

A box that can be checked.

It implements Widget when the core::Renderer implements the checkbox::Renderer trait.

Example

use coffee::graphics::Color;
use coffee::ui::Checkbox;

pub enum Message {
    CheckboxToggled(bool),
}

let is_checked = true;

Checkbox::new(is_checked, "Toggle me!", Message::CheckboxToggled)
    .label_color(Color::BLACK);

Checkbox drawn by the built-in renderer

Methods

impl<Message> Checkbox<Message>[src]

pub fn new<F>(is_checked: bool, label: &str, f: F) -> Self where
    F: 'static + Fn(bool) -> Message, 
[src]

Creates a new Checkbox.

It expects:

  • a boolean describing whether the Checkbox is checked or not
  • the label of the Checkbox
  • a function that will be called when the Checkbox is toggled. It receives the new state of the Checkbox and must produce a Message.

pub fn label_color(self, color: Color) -> Self[src]

Sets the Color of the label of the Checkbox.

Trait Implementations

impl<Message> Debug for Checkbox<Message>[src]

impl<'a, Message, Renderer> From<Checkbox<Message>> for Element<'a, Message, Renderer> where
    Renderer: Renderer + Renderer,
    Message: 'static, 
[src]

impl<Message, Renderer> Widget<Message, Renderer> for Checkbox<Message> where
    Renderer: Renderer + Renderer
[src]

Auto Trait Implementations

impl<Message> !RefUnwindSafe for Checkbox<Message>

impl<Message> !Send for Checkbox<Message>

impl<Message> !Sync for Checkbox<Message>

impl<Message> Unpin for Checkbox<Message>

impl<Message> !UnwindSafe for Checkbox<Message>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,