[][src]Struct cursive::views::CircularFocus

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

Adds circular focus to a wrapped view.

Wrap a view in CircularFocus to enable wrap-around focus (when the focus exits this view, it will come back the other side).

It can be configured to wrap Tab (and Shift+Tab) keys, and/or Arrow keys.

Methods

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

pub fn new(view: T, wrap_tab: bool, wrap_arrows: bool) -> Self[src]

Creates a new CircularFocus around the given view.

If wrap_tab is true, Tab keys will cause focus to wrap around. If wrap_arrows is true, Arrow keys will cause focus to wrap around.

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

Creates a new CircularFocus view which will wrap around Tab-based focus changes.

Whenever Tab would leave focus from this view, the focus will be brought back to the beginning of the view.

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

Creates a new CircularFocus view which will wrap around Tab-based focus changes.

Whenever an arrow key

pub fn wraps_tab(&self) -> bool[src]

Returns true if Tab key cause focus to wrap around.

pub fn wraps_arrows(&self) -> bool[src]

Returns true if Arrow keys cause focus to wrap around.

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 CircularFocus<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> Sync for CircularFocus<T> where
    T: Sync

impl<T> Send for CircularFocus<T> where
    T: Send

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

impl<T> RefUnwindSafe for CircularFocus<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for CircularFocus<T> where
    T: UnwindSafe

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

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

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

impl<T> Erased for T[src]