Struct imgui::InputText [] [src]

#[must_use]
pub struct InputText<'ui, 'p> {
    // some fields omitted
}

Methods

impl<'ui, 'p> InputText<'ui, 'p>
[src]

fn new(label: ImStr<'p>, buf: &'p mut str) -> Self

fn flags(self, flags: ImGuiInputTextFlags) -> Self

fn chars_decimal(self, value: bool) -> Self

fn chars_hexadecimal(self, value: bool) -> Self

fn chars_uppercase(self, value: bool) -> Self

fn chars_noblank(self, value: bool) -> Self

fn auto_select_all(self, value: bool) -> Self

fn enter_returns_true(self, value: bool) -> Self

fn callback_completion(self, value: bool) -> Self

fn callback_history(self, value: bool) -> Self

fn callback_always(self, value: bool) -> Self

fn callback_char_filter(self, value: bool) -> Self

fn allow_tab_input(self, value: bool) -> Self

fn no_horizontal_scroll(self, value: bool) -> Self

fn always_insert_mode(self, value: bool) -> Self

fn build(self) -> bool