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

pub struct CircularFocus<T> where
    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.

Implementations

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

pub fn new(view: T, wrap_tab: bool, wrap_arrows: bool) -> CircularFocus<T>[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) -> CircularFocus<T>[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) -> CircularFocus<T>[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> ViewWrapper for CircularFocus<T> where
    T: View
[src]

type V = T

Type that this view wraps.

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> AnyView for T where
    T: View
[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

Downcast self to a Any.

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]

Downcast self to a mutable Any.

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

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

impl<T> Erased for T

impl<T> Finder for T where
    T: View
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoBoxedView for T where
    T: View
[src]

impl<T> Nameable for T where
    T: View
[src]

impl<T> Resizable for T where
    T: View
[src]

impl<T> Scrollable for T where
    T: View
[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> View for T where
    T: ViewWrapper
[src]

impl<T> With for T[src]