Struct AdvancedSelectView

Source
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<T> AdvancedSelectView<T>
where T: 'static,

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, autojump: bool) -> Self

Allow jumping to items starting with the the pressed letter key

Chainable variant

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 variant

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) -> Self
where 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: Send + Sync + '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_popup(&mut self, popup: bool)

Show this view as a pop up view

Source

pub fn popup(self, popup: bool) -> Self

Show this view as a pop up view

Chainable variant

Source

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

Set the select callback

Source

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

Set the select callback

Chainable variant

Source

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

Set the callback when Enter is pressed

Source

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

Set the callback when Enter is pressed

Chainable variant

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 variant

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 item<L: Into<StyledString>>(self, label: L, item: T) -> Self

Add an item to this view

Chainable variant

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) -> Self
where L: Into<StyledString>, I: IntoIterator<Item = (L, T)>,

Add all items from an iterator

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 + ExactSizeIterator
where 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> Clone for AdvancedSelectView<T>
where T: 'static + Clone,

Source§

fn clone(&self) -> AdvancedSelectView<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Send + Sync + 'static> Default for AdvancedSelectView<T>

Source§

fn default() -> Self

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

impl<T: Send + Sync + '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§

§

impl<T> Freeze for AdvancedSelectView<T>

§

impl<T = String> !RefUnwindSafe for AdvancedSelectView<T>

§

impl<T> Send for AdvancedSelectView<T>
where T: Sync + Send,

§

impl<T> Sync for AdvancedSelectView<T>
where T: Sync + Send,

§

impl<T> Unpin for AdvancedSelectView<T>

§

impl<T = String> !UnwindSafe for AdvancedSelectView<T>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AnyView for T
where 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>) -> Box<dyn Any>

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

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Finder for T
where 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<ViewRef<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 T
where 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 T
where T: View,

Source§

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

Returns a Box<View>.
Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Nameable for T
where 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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<R, P> ReadPrimitive<R> for P
where 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 T
where 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 T
where T: View,

Source§

fn scrollable(self) -> ScrollView<Self>

Wraps self in a ScrollView.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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) -> U
where F: FnOnce(Self) -> U,

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

fn with<F>(self, f: F) -> Self
where 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) -> Self
where F: FnOnce(&mut Self),

Calls the given closure if condition == true.