[][src]Struct cursive::views::ScrollView

pub struct ScrollView<V> { /* fields omitted */ }

Wraps a view in a scrollable area.

Methods

impl<V> ScrollView<V> where
    V: View
[src]

pub fn new(inner: V) -> Self[src]

Creates a new ScrollView around view.

pub fn content_viewport(&self) -> Rect[src]

Returns the viewport in the inner content.

pub fn set_scroll_strategy(&mut self, strategy: ScrollStrategy)[src]

Defines the way scrolling is adjusted on content or size change.

The scroll strategy defines how the scrolling position is adjusted when the size of the view or the content change.

It is reset to ScrollStrategy::KeepRow whenever the user scrolls manually.

pub fn scroll_strategy(self, strategy: ScrollStrategy) -> Self[src]

Defines the way scrolling is adjusted on content or size change.

Chainable variant.

pub fn set_show_scrollbars(&mut self, show_scrollbars: bool)[src]

Control whether scroll bars are visibile.

Defaults to true.

pub fn show_scrollbars(self, show_scrollbars: bool) -> Self[src]

Control whether scroll bars are visibile.

Chainable variant

pub fn set_offset<S>(&mut self, offset: S) where
    S: Into<Vec2>, 
[src]

Sets the scroll offset to the given value

pub fn set_scroll_y(&mut self, enabled: bool)[src]

Controls whether this view can scroll vertically.

Defaults to true.

pub fn set_scroll_x(&mut self, enabled: bool)[src]

Controls whether this view can scroll horizontally.

Defaults to false.

pub fn scroll_y(self, enabled: bool) -> Self[src]

Controls whether this view can scroll vertically.

Defaults to true.

Chainable variant.

pub fn scroll_x(self, enabled: bool) -> Self[src]

Controls whether this view can scroll horizontally.

Defaults to false.

Chainable variant.

pub fn scroll_to_top(&mut self)[src]

Programmatically scroll to the top of the view.

pub fn scroll_to_bottom(&mut self)[src]

Programmatically scroll to the bottom of the view.

pub fn scroll_to_left(&mut self)[src]

Programmatically scroll to the leftmost side of the view.

pub fn scroll_to_right(&mut self)[src]

Programmatically scroll to the rightmost side of the view.

pub fn into_inner(self) -> V[src]

Returns the wrapped view.

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

Gets access to the inner view.

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

Gets mutable access to the inner view.

Trait Implementations

impl<V> View for ScrollView<V> where
    V: View
[src]

Auto Trait Implementations

impl<V> Send for ScrollView<V> where
    V: Send

impl<V> Sync for ScrollView<V> where
    V: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T[src]