[][src]Struct cursive::views::OnEventView

pub struct OnEventView<T: View> { /* fields omitted */ }

A wrapper view that can react to events.

This view registers a set of callbacks tied to specific events, to be run in certain conditions.

  • Some callbacks are called only for events ignored by the wrapped view.

    (those registered by on_event or on_event_inner)

  • Others are processed first, and can control whether the child view should be given the event (those registered by on_pre_event or on_pre_event_inner).

"Inner" callbacks (on_event_inner and on_pre_event_inner) are given a reference to the inner wrapped view (but not to the Cursive root). They can then return another callback, taking only a &mut Cursive root as argument.

"Simple" callbacks (on_event and on_pre_event) skip this first phase and are only called with a &mut Cursive.

Examples

let view = OnEventView::new(TextView::new("This view has an event!"))
                        .on_event('q', |s| s.quit())
                        .on_event(event::Key::Esc, |s| s.quit());

Methods

impl<T: View> OnEventView<T>[src]

pub fn new(view: T) -> Self[src]

Wraps the given view in a new OnEventView.

pub fn on_event<F, E>(self, trigger: E, cb: F) -> Self where
    E: Into<EventTrigger>,
    F: 'static + Fn(&mut Cursive), 
[src]

Registers a callback when the given event is ignored by the child.

Chainable variant.

Examples

let view = OnEventView::new(DummyView)
    .on_event('q', |s| s.quit())
    .on_event(Key::Esc, |s| {
        s.pop_layer();
    })
    .on_event(EventTrigger::mouse(), |s| {
        s.add_layer(DummyView);
    });

pub fn on_pre_event<F, E>(self, trigger: E, cb: F) -> Self where
    E: Into<EventTrigger>,
    F: 'static + Fn(&mut Cursive), 
[src]

Registers a callback when the given event is received.

The child will never receive this event.

Chainable variant.

pub fn on_pre_event_inner<F, E>(self, trigger: E, cb: F) -> Self where
    E: Into<EventTrigger>,
    F: Fn(&mut T, &Event) -> Option<EventResult> + 'static, 
[src]

Registers a callback when the given event is received.

The given callback will be run before the child view sees the event.

  • If the result is None, then the child view is given the event as usual.
  • Otherwise, it bypasses the child view and directly processes the result.

Chainable variant.

pub fn on_event_inner<F, E>(self, trigger: E, cb: F) -> Self where
    E: Into<EventTrigger>,
    F: Fn(&mut T, &Event) -> Option<EventResult> + 'static, 
[src]

Registers a callback when the given event is ignored by the child.

This is an advanced method to get more control. on_event may be easier to use.

If the child view ignores the event, cb will be called with the child view as argument. If the result is not None, it will be processed as well.

Chainable variant.

Examples

let view = OnEventView::new(DummyView)
    .on_event_inner(
        EventTrigger::mouse(),
        |d: &mut DummyView, e: &Event| {
            if let &Event::Mouse { event: MouseEvent::Press(_), .. } = e {
                // Do something on mouse press
                Some(EventResult::with_cb(|s| {
                    s.pop_layer();
                }))
            } else {
                // Otherwise, don't do anything
                None
            }
        }
    );

pub fn set_on_event<F, E>(&mut self, trigger: E, cb: F) where
    E: Into<EventTrigger>,
    F: Fn(&mut Cursive) + 'static, 
[src]

Registers a callback when the given event is ignored by the child.

pub fn set_on_pre_event<F, E>(&mut self, trigger: E, cb: F) where
    E: Into<EventTrigger>,
    F: 'static + Fn(&mut Cursive), 
[src]

Registers a callback when the given event is received.

The child will never receive this event.

pub fn set_on_pre_event_inner<F, E>(&mut self, trigger: E, cb: F) where
    E: Into<EventTrigger>,
    F: Fn(&mut T, &Event) -> Option<EventResult> + 'static, 
[src]

Registers a callback when the given event is received.

The given callback will be run before the child view sees the event.

  • If the result is None, then the child view is given the event as usual.
  • Otherwise, it bypasses the child view and directly processes the result.

pub fn set_on_event_inner<F, E>(&mut self, trigger: E, cb: F) where
    E: Into<EventTrigger>,
    F: Fn(&mut T, &Event) -> Option<EventResult> + 'static, 
[src]

Registers a callback when the given event is ignored by the child.

If the child view ignores the event, cb will be called with the child view as argument. If the result is not None, it will be processed as well.

pub fn clear_callbacks(&mut self)[src]

Remove any callbacks defined for this view.

pub fn get_inner(&self) -> &T[src]

Gets access to the inner view.

pub fn get_inner_mut(&mut self) -> &mut T[src]

Gets mutable access to the inner view.

Trait Implementations

impl<T: View> ViewWrapper for OnEventView<T>[src]

type V = T

Type that this view wraps.

fn wrap_draw(&self, printer: &Printer)[src]

Wraps the draw method.

fn wrap_required_size(&mut self, req: Vec2) -> Vec2[src]

Wraps the required_size method.

fn wrap_layout(&mut self, size: Vec2)[src]

Wraps the layout method.

fn wrap_take_focus(&mut self, source: Direction) -> bool[src]

Wraps the take_focus method.

fn wrap_call_on_any<'a>(&mut self, selector: &Selector, callback: AnyCb<'a>)[src]

Wraps the find method.

fn wrap_focus_view(&mut self, selector: &Selector) -> Result<(), ()>[src]

Wraps the focus_view method.

fn wrap_needs_relayout(&self) -> bool[src]

Wraps the needs_relayout method.

fn wrap_important_area(&self, size: Vec2) -> Rect[src]

Wraps the important_area method.

Auto Trait Implementations

impl<T> Unpin for OnEventView<T> where
    T: Unpin

impl<T> !Sync for OnEventView<T>

impl<T> !Send for OnEventView<T>

impl<T> !UnwindSafe for OnEventView<T>

impl<T> !RefUnwindSafe for OnEventView<T>

Blanket Implementations

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

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

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

impl<T> Erased for T[src]