[][src]Struct native_windows_gui::TextBoxT

pub struct TextBoxT<S1: Clone + Into<String>, ID: Hash + Clone> {
    pub text: S1,
    pub position: (i32, i32),
    pub size: (u32, u32),
    pub visible: bool,
    pub disabled: bool,
    pub readonly: bool,
    pub limit: u32,
    pub scrollbars: (bool, bool),
    pub parent: ID,
    pub font: Option<ID>,
}

A template that creates a multi line textinput control

Events:
Event: Event::Destroyed, Event::Focus, Event::Char, Event::KeyDown, Event::KeyUp, Event::MouseDown, Event::MouseUp, Event::ValueChanged, Event::Moved, Event::Resized, Event::Raw

Members:
text: The text of the textbox
position: The start position of the textbox
size: The start size of the textbox
visible: If the textbox should be visible to the user
disabled: If the user can or can't click on the textbox
readonly: If the user can copty the text but can't edit the textbox content
limit: The maximum number of characters that the control can hold
scrollbars: A tuple to defined whether to show scrollbars or not (show horizontal, show vertical) • parent: The textbox parent
font: The textbox font. If None, use the system default

Fields

text: S1position: (i32, i32)size: (u32, u32)visible: booldisabled: boolreadonly: boollimit: u32scrollbars: (bool, bool)parent: IDfont: Option<ID>

Trait Implementations

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

impl<S1: Clone + Clone + Into<String>, ID: Clone + Hash + Clone> Clone for TextBoxT<S1, ID>[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<S1, ID> Send for TextBoxT<S1, ID> where
    ID: Send,
    S1: Send

impl<S1, ID> Sync for TextBoxT<S1, ID> where
    ID: Sync,
    S1: 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]