[][src]Trait kas::class::Editable

pub trait Editable: HasText {
    fn is_editable(&self) -> bool;
fn set_editable(&mut self, editable: bool); }

Additional functionality required by the EditBox widget.

Required methods

fn is_editable(&self) -> bool

Get whether this input field is editable.

fn set_editable(&mut self, editable: bool)

Set whether this input field is editable.

Loading content...

Implementors

impl<G> Editable for EditBox<G>[src]

impl<W: Editable + Widget> Editable for Frame<W>[src]

impl<W: Editable + Widget> Editable for MenuFrame<W>[src]

Loading content...