Struct cursive::views::EditView [] [src]

pub struct EditView {
    // some fields omitted
}

Input box where the user can enter and edit text.

Examples

From the edit example.

let mut siv = Cursive::new();

// Create a dialog with an edit text and a button.
// The user can either hit the <Ok> button,
// or press Enter on the edit text.
siv.add_layer(Dialog::empty()
    .title("Enter your name")
    .padding((1, 1, 1, 0))
    .content(EditView::new()
        .on_submit(show_popup)
        .with_id("name")
        .fixed_width(20))
    .button("Ok", |s| {
        let name = s.find_id::<EditView>("name")
            .unwrap()
            .get_content();
        show_popup(s, &name);
    }));

fn show_popup(s: &mut Cursive, name: &str) {
    if name.is_empty() {
        s.add_layer(Dialog::info("Please enter a name!"));
    } else {
        let content = format!("Hello {}!", name);
        s.pop_layer();
        s.add_layer(Dialog::new(TextView::new(content))
            .button("Quit", |s| s.quit()));
    }
}

Methods

impl EditView
[src]

Creates a new, empty edit view.

If secret is true, the content won't be displayed in clear.

Only * will be shown.

Hides the content of the view.

Only * will be shown.

Disables this view.

A disabled view cannot be selected.

Disables this view.

Chainable variant.

Re-enables this view.

Sets a callback to be called whenever the content is modified.

callback will be called with the view content and the current cursor position.

Sets a callback to be called when <Enter> is pressed.

callback will be given the content of the view.

Enable or disable this view.

Returns true if this view is enabled.

Replace the entire content of the view with the given one.

Get the current text.

Sets the current content to the given value.

Convenient chainable method.

Insert ch at the current cursor position.

Remove the character at the current cursor position.

Trait Implementations

impl Default for EditView
[src]

Returns the "default value" for a type. Read more

impl View for EditView
[src]

Draws the view with the given printer (includes bounds) and focus.

Called once the size for this view has been decided, Read more

This view is offered focus. Will it take it? Read more

Called when a key was pressed. Default implementation just ignores it.

Returns the minimum size the view requires with the given restrictions. Read more

Returns true if the view content changed since last layout phase. Read more

Finds the view pointed to by the given path. Read more