Struct cursive::views::TrackedView [] [src]

pub struct TrackedView<T: View> {
    pub view: T,
    // some fields omitted
}

Wrapper around a view that remembers its position.

Fields

view: T

Wrapped view.

Methods

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

fn offset(&self) -> Vec2

Return the last offset at which the view was drawn.

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

fn new(view: T) -> Self

Creates a new TrackedView around view.

fn with_id(self, id: &str) -> IdView<Self>

Wraps itself in a IdView for easy retrieval.

Trait Implementations

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

fn get_view(&self) -> &View

Get an immutable reference to the wrapped view.

fn get_view_mut(&mut self) -> &mut View

Get a mutable reference to the wrapped view.

fn wrap_draw(&self, printer: &Printer)

Wraps the draw method.

fn wrap_get_min_size(&mut self, req: Vec2) -> Vec2

Wraps the get_min_size method.

fn wrap_on_event(&mut self, ch: Event) -> EventResult

Wraps the on_event method.

fn wrap_layout(&mut self, size: Vec2)

Wraps the layout method.

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

Wraps the take_focus method.

fn wrap_find(&mut self, selector: &Selector) -> Option<&mut Any>

Wraps the find method.

fn wrap_needs_relayout(&self) -> bool

Wraps the needs_relayout method.