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

pub struct EditView { /* 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::new()
    .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.call_on_id("name", |view: &mut EditView| view.get_content())
            .unwrap();
        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::around(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 mutable callback to be called whenever the content is modified.

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

Warning: this callback cannot be called recursively. If you somehow trigger this callback again in the given closure, it will be ignored.

If you don't need a mutable closure but want the possibility of recursive calls, see set_on_edit.

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

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

This callback can safely trigger itself recursively if needed (for instance if you call on_event on this view from the callback).

If you need a mutable closure and don't care about the recursive aspect, see set_on_edit_mut.

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

Chainable variant. See set_on_edit_mut.

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

Chainable variant. See set_on_edit.

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

callback will be given the content of the view.

Warning: this callback cannot be called recursively. If you somehow trigger this callback again in the given closure, it will be ignored.

If you don't need a mutable closure but want the possibility of recursive calls, see set_on_submit.

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

callback will be given the content of the view.

This callback can safely trigger itself recursively if needed (for instance if you call on_event on this view from the callback).

If you need a mutable closure and don't care about the recursive aspect, see set_on_submit_mut.

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

Chainable variant.

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

Chainable variant.

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.

Sets the cursor position.

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. Read more

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 identified by the given selector. Read more

Moves the focus to the view identified by the given selector. Read more