pub struct Checkbox<'a> { /* private fields */ }Expand description
Boolean on/off control with text label.
Usually you’d use Ui::checkbox instead.
// These are equivalent:
ui.checkbox(&mut my_bool, "Checked");
ui.add(egui::Checkbox::new(&mut my_bool, "Checked"));Implementations§
Source§impl<'a> Checkbox<'a>
impl<'a> Checkbox<'a>
pub fn new(checked: &'a mut bool, atoms: impl IntoAtoms<'a>) -> Self
pub fn without_text(checked: &'a mut bool) -> Self
Sourcepub fn atoms(&self) -> &Atoms<'a>
pub fn atoms(&self) -> &Atoms<'a>
Output the checkbox’s Atoms.
This includes any images you have on the checkbox.
Sourcepub fn indeterminate(self, indeterminate: bool) -> Self
pub fn indeterminate(self, indeterminate: bool) -> Self
Display an indeterminate state (neither checked nor unchecked)
This only affects the checkbox’s appearance. It will still toggle its boolean value when clicked.
Trait Implementations§
Source§impl HasClasses for Checkbox<'_>
impl HasClasses for Checkbox<'_>
fn classes(&self) -> &Classes
fn classes_mut(&mut self) -> &mut Classes
Source§fn with_class(self, class: impl Into<ClassName>) -> Selfwhere
Self: Sized,
fn with_class(self, class: impl Into<ClassName>) -> Selfwhere
Self: Sized,
Add the given class by consuming
selfSource§fn with_class_if(self, class: impl Into<ClassName>, condition: bool) -> Selfwhere
Self: Sized,
fn with_class_if(self, class: impl Into<ClassName>, condition: bool) -> Selfwhere
Self: Sized,
Add the given class by consuming
self if the condition is trueSource§fn add_class(&mut self, class: impl Into<ClassName>) -> &mut Selfwhere
Self: Sized,
fn add_class(&mut self, class: impl Into<ClassName>) -> &mut Selfwhere
Self: Sized,
Add the given class in-place
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Checkbox<'a>
impl<'a> !Send for Checkbox<'a>
impl<'a> !Sync for Checkbox<'a>
impl<'a> !UnwindSafe for Checkbox<'a>
impl<'a> Freeze for Checkbox<'a>
impl<'a> Unpin for Checkbox<'a>
impl<'a> UnsafeUnpin for Checkbox<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more