[][src]Struct native_windows_gui::CheckBoxT

pub struct CheckBoxT<S: Clone + Into<String>, ID: Hash + Clone> {
    pub text: S,
    pub position: (i32, i32),
    pub size: (u32, u32),
    pub visible: bool,
    pub disabled: bool,
    pub parent: ID,
    pub checkstate: CheckState,
    pub tristate: bool,
    pub font: Option<ID>,
}

A template that creates a standard checkbox

Available events:
Event::Destroyed, Event::Click, Event::DoubleClick, Event::Focus, Event::Moved, Event::Resized, Event::Raw

Members:
text: The text of the checkbox
position: The start position of the checkbox
size: The start size of the checkbox
visible: If the checkbox should be visible to the user32
disabled: If the user can or can't click on the checkbox
parent: The checkbox parent
checkstate: The starting checkstate
tristate: If the checkbox should have three states
font: The checkbox font. If None, use the system default

Fields

text: Sposition: (i32, i32)size: (u32, u32)visible: booldisabled: boolparent: IDcheckstate: CheckStatetristate: boolfont: Option<ID>

Trait Implementations

impl<S: Clone + Into<String>, ID: Hash + Clone> ControlT<ID> for CheckBoxT<S, ID>[src]

impl<S: Clone + Clone + Into<String>, ID: Clone + Hash + Clone> Clone for CheckBoxT<S, ID>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<S, ID> Send for CheckBoxT<S, ID> where
    ID: Send,
    S: Send

impl<S, ID> Sync for CheckBoxT<S, ID> where
    ID: Sync,
    S: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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