pub struct AdvancedSelectView<T = String>where
    T: 'static,{ /* private fields */ }
Expand description

A view that is a lot like a SelectView but allows mutable access to the selection and allows multiline items

Implementations§

source§

impl AdvancedSelectView

source

pub fn add_item_str<S: Display>(&mut self, label: S)

Add an item with the label as the value

source

pub fn item_str<S: Display>(self, label: S) -> Self

Add an item with the label as the value

Chainable version

source

pub fn insert_item_str<S: Display>(&mut self, index: usize, label: S)

Insert an item with the label as the value

source

pub fn add_all_str<S, I>(&mut self, iter: I)where S: Display, I: IntoIterator<Item = S>,

Add all the strings from a string iterator

source

pub fn with_all_str<S, I>(self, iter: I) -> Selfwhere S: Display, I: IntoIterator<Item = S>,

Add all the strings from a string iterator

Chainable version

source§

impl<T: Ord + 'static> AdvancedSelectView<T>

source

pub fn sort(&mut self)

Sort all the items by their ordering

source§

impl<T: 'static> AdvancedSelectView<T>

source

pub fn disable(&mut self)

Disables this view.

A disabled view cannot be selected.

source

pub fn disabled(self) -> Self

Disables this view.

Chainable variant.

source

pub fn enable(&mut self)

Re-enables this view.

source

pub fn set_enabled(&mut self, enabled: bool)

Enable or disable this view.

source

pub fn with_enabled(self, is_enabled: bool) -> Self

Enable or disable this view.

Chainable variant.

source

pub fn is_enabled(&self) -> bool

Returns true if this view is enabled.

source

pub fn new() -> AdvancedSelectView<T>

Create a new AdvancedSelectView

source

pub fn set_autojump(&mut self, autojump: bool)

Allow jumping to items starting with the the pressed letter key

source

pub fn autojump(self) -> Self

Allow jumping to items starting with the the pressed letter key

Chainable version

source

pub fn set_popup(&mut self, popup: bool)

Show this view as a pop up view

source

pub fn popup(self) -> Self

Show this view as a pop up view

Chainable version

source

pub fn set_on_select<F: Fn(&mut Cursive, &T) + 'static>(&mut self, cb: F)

Set the select callback

source

pub fn on_select<F: Fn(&mut Cursive, &T) + 'static>(self, cb: F) -> Self

Set the select callback

Chainable version

source

pub fn set_on_submit<F: Fn(&mut Cursive, &T) + 'static>(&mut self, cb: F)

Set the callback when Enter is pressed

source

pub fn on_submit<F: Fn(&mut Cursive, &T) + 'static>(self, cb: F) -> Self

Set the callback when Enter is pressed

Chainable version

source

pub fn selection(&self) -> Option<&T>

The current selection

Returns None if the view is empty

source

pub fn selection_mut(&mut self) -> Option<&mut T>

The current selection as a mutable reference

Returns None if the view is empty

source

pub fn selected_index(&self) -> usize

The index of the current selection

source

pub fn selected_label(&self) -> Option<&StyledString>

The label of the current selected item

source

pub fn selected_label_mut(&mut self) -> Option<&mut StyledString>

The label of the current selected item

source

pub fn set_selection(&mut self, index: usize)

Set the selected item index

source

pub fn selected(self, index: usize) -> Self

Set the selected item ID

Chainable version

source

pub fn move_down(&mut self) -> bool

Move the selection down

Returns true if successful

source

pub fn move_up(&mut self) -> bool

Move the selection up

Returns true if successful

source

pub fn clear(&mut self)

Clear all items

source

pub fn len(&self) -> usize

How many items are in this view?

source

pub fn is_empty(&self) -> bool

Is this view empty?

source

pub fn add_item<L: Into<StyledString>>(&mut self, label: L, item: T)

Add an item to this view

source

pub fn add_all<L, I>(&mut self, iter: I)where L: Into<StyledString>, I: IntoIterator<Item = (L, T)>,

Add all items from an iterator

source

pub fn with_all<L, I>(self, iter: I) -> Selfwhere L: Into<StyledString>, I: IntoIterator<Item = (L, T)>,

Add all items from an iterator

Chainable version

source

pub fn item<L: Into<StyledString>>(self, label: L, item: T) -> Self

Add an item to this view

Chainable version

source

pub fn get_item(&self, index: usize) -> Option<(&StyledString, &T)>

Get an item at the index

source

pub fn get_item_mut( &mut self, index: usize ) -> Option<(&mut StyledString, &mut T)>

Get an item (mutable reference) at the index

source

pub fn iter( &self ) -> impl Iterator<Item = (&StyledString, &T)> + DoubleEndedIterator + ExactSizeIterator

Iterate over all the items

source

pub fn iter_mut( &mut self ) -> impl Iterator<Item = (&mut StyledString, &mut T)> + DoubleEndedIterator + ExactSizeIteratorwhere T: Clone,

Iterate over all the items with mutability

source

pub fn remove_item(&mut self, index: usize)

Remove an item at a specific index

source

pub fn insert_item<L: Into<StyledString>>( &mut self, index: usize, label: L, item: T )

Insert an item at a specific index

source

pub fn label_sort(&mut self)

Sort the view by label

source

pub fn sort_by<F>(&mut self, compare: F)where F: FnMut(&T, &T) -> Ordering,

Sort the view with the specified comparator function

source

pub fn sort_by_key<K, F>(&mut self, key_of: F)where F: FnMut(&T) -> K, K: Ord,

Sort the view with a key extraction function

source

pub fn move_item_up(&mut self, index: usize)

Move an item up in the view

source

pub fn move_item_down(&mut self, index: usize)

Move an item down in the view

Trait Implementations§

source§

impl<T: 'static> Default for AdvancedSelectView<T>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T: 'static> View for AdvancedSelectView<T>

source§

fn draw(&self, printer: &Printer<'_, '_>)

Draws the view with the given printer (includes bounds) and focus. Read more
source§

fn required_size(&mut self, bound: Vec2) -> Vec2

Returns the minimum size the view requires with the given restrictions. Read more
source§

fn layout(&mut self, size: Vec2)

Called once the size for this view has been decided. Read more
source§

fn take_focus(&mut self, dir: Direction) -> Result<EventResult, CannotFocus>

Attempt to give this view the focus. Read more
source§

fn on_event(&mut self, event: Event) -> EventResult

Called when an event is received (key press, mouse event, …). Read more
source§

fn important_area(&self, size: Vec2) -> Rect

What part of the view is important and should be visible? Read more
source§

fn needs_relayout(&self) -> bool

Should return true if the view content changed since the last call to layout(). Read more
source§

fn call_on_any( &mut self, _: &Selector<'_>, _: &mut dyn FnMut(&mut (dyn View + 'static)) )

Runs a closure on the view identified by the given selector. Read more
source§

fn focus_view(&mut self, _: &Selector<'_>) -> Result<EventResult, ViewNotFound>

Moves the focus to the view identified by the given selector. Read more
source§

fn type_name(&self) -> &'static str

Returns the type of this view. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AnyView for Twhere T: View,

source§

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

Downcast self to a Any.

source§

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

Downcast self to a mutable Any.

source§

fn as_boxed_any(self: Box<T, Global>) -> Box<dyn Any, Global>

Returns a boxed any from a boxed self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Finder for Twhere T: View,

source§

fn call_on_all<V, F>(&mut self, sel: &Selector<'_>, callback: F)where V: View, F: FnMut(&mut V),

Runs a callback on all views identified by sel. Read more
source§

fn call_on<V, F, R>(&mut self, sel: &Selector<'_>, callback: F) -> Option<R>where V: View, F: FnOnce(&mut V) -> R,

Runs a callback on the view identified by sel. Read more
source§

fn call_on_name<V, F, R>(&mut self, name: &str, callback: F) -> Option<R>where V: View, F: FnOnce(&mut V) -> R,

Convenient method to use call_on with a view::Selector::Name.
source§

fn find_name<V>( &mut self, name: &str ) -> Option<OwningHandle<OwningRef<Rc<RefCell<V>, Global>, RefCell<V>>, RefMut<'static, V>>>where V: View,

Convenient method to find a view wrapped in an NamedView.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoBoxedView for Twhere T: View,

source§

fn into_boxed_view(self) -> Box<dyn View, Global>

Returns a Box<View>.
source§

impl<T> Nameable for Twhere T: View,

source§

fn with_name<S>(self, name: S) -> NamedView<Self>where S: Into<String>,

Wraps this view into an NamedView with the given id. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,

source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
source§

impl<T> Resizable for Twhere T: View,

source§

fn resized( self, width: SizeConstraint, height: SizeConstraint ) -> ResizedView<Self>

Wraps self in a ResizedView with the given size constraints.
source§

fn fixed_size<S>(self, size: S) -> ResizedView<Self>where S: Into<XY<usize>>,

Wraps self into a fixed-size ResizedView.
source§

fn fixed_width(self, width: usize) -> ResizedView<Self>

Wraps self into a fixed-width ResizedView.
source§

fn fixed_height(self, height: usize) -> ResizedView<Self>

Wraps self into a fixed-width ResizedView.
source§

fn full_screen(self) -> ResizedView<Self>

Wraps self into a full-screen ResizedView.
source§

fn full_width(self) -> ResizedView<Self>

Wraps self into a full-width ResizedView.
source§

fn full_height(self) -> ResizedView<Self>

Wraps self into a full-height ResizedView.
source§

fn max_size<S>(self, size: S) -> ResizedView<Self>where S: Into<XY<usize>>,

Wraps self into a limited-size ResizedView.
source§

fn max_width(self, max_width: usize) -> ResizedView<Self>

Wraps self into a limited-width ResizedView.
source§

fn max_height(self, max_height: usize) -> ResizedView<Self>

Wraps self into a limited-height ResizedView.
source§

fn min_size<S>(self, size: S) -> ResizedView<Self>where S: Into<XY<usize>>,

Wraps self into a ResizedView at least sized size.
source§

fn min_width(self, min_width: usize) -> ResizedView<Self>

Wraps self in a ResizedView at least min_width wide.
source§

fn min_height(self, min_height: usize) -> ResizedView<Self>

Wraps self in a ResizedView at least min_height tall.
source§

impl<T> Scrollable for Twhere T: View,

source§

fn scrollable(self) -> ScrollView<Self>

Wraps self in a ScrollView.
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> With for T

source§

fn wrap_with<U, F>(self, f: F) -> Uwhere F: FnOnce(Self) -> U,

Calls the given closure and return the result. Read more
source§

fn with<F>(self, f: F) -> Selfwhere F: FnOnce(&mut Self),

Calls the given closure on self.
source§

fn try_with<E, F>(self, f: F) -> Result<Self, E>where F: FnOnce(&mut Self) -> Result<(), E>,

Calls the given closure on self.
source§

fn with_if<F>(self, condition: bool, f: F) -> Selfwhere F: FnOnce(&mut Self),

Calls the given closure if condition == true.
§

impl<T> Erased for T