pub struct ListState<D: ListDelegate> { /* private fields */ }Expand description
The state for List.
Implementations§
Source§impl<D> ListState<D>where
D: ListDelegate,
impl<D> ListState<D>where
D: ListDelegate,
pub fn new(delegate: D, window: &mut Window, cx: &mut Context<'_, Self>) -> Self
Sourcepub fn searchable(self, searchable: bool) -> Self
pub fn searchable(self, searchable: bool) -> Self
Sets whether the list is searchable, default is false.
When true, there will be a search input at the top of the list.
pub fn set_searchable(&mut self, searchable: bool, cx: &mut Context<'_, Self>)
Sourcepub fn selectable(self, selectable: bool) -> Self
pub fn selectable(self, selectable: bool) -> Self
Sets whether the list is selectable, default is true.
Sourcepub fn set_selectable(&mut self, selectable: bool, cx: &mut Context<'_, Self>)
pub fn set_selectable(&mut self, selectable: bool, cx: &mut Context<'_, Self>)
Sets whether the list is selectable, default is true.
pub fn delegate(&self) -> &D
pub fn delegate_mut(&mut self) -> &mut D
Sourcepub fn focus(&mut self, window: &mut Window, cx: &mut App)
pub fn focus(&mut self, window: &mut Window, cx: &mut App)
Focus the list, if the list is searchable, focus the search input.
Sourcepub fn set_selected_index(
&mut self,
ix: Option<IndexPath>,
window: &mut Window,
cx: &mut Context<'_, Self>,
)
pub fn set_selected_index( &mut self, ix: Option<IndexPath>, window: &mut Window, cx: &mut Context<'_, Self>, )
Set the selected index of the list, this method will not scroll to the selected item.
pub fn selected_index(&self) -> Option<IndexPath>
Sourcepub fn set_item_to_measure_index(
&mut self,
ix: IndexPath,
_: &mut Window,
cx: &mut Context<'_, Self>,
)
pub fn set_item_to_measure_index( &mut self, ix: IndexPath, _: &mut Window, cx: &mut Context<'_, Self>, )
Set a specific list item for measurement.
Sourcepub fn scroll_to_item(
&mut self,
ix: IndexPath,
strategy: ScrollStrategy,
_: &mut Window,
cx: &mut Context<'_, Self>,
)
pub fn scroll_to_item( &mut self, ix: IndexPath, strategy: ScrollStrategy, _: &mut Window, cx: &mut Context<'_, Self>, )
Scroll to the item at the given index.
Sourcepub fn scroll_handle(&self) -> &VirtualListScrollHandle
pub fn scroll_handle(&self) -> &VirtualListScrollHandle
Get scroll handle
pub fn scroll_to_selected_item( &mut self, _: &mut Window, cx: &mut Context<'_, Self>, )
Trait Implementations§
Source§impl<D> Focusable for ListState<D>where
D: ListDelegate,
impl<D> Focusable for ListState<D>where
D: ListDelegate,
Source§fn focus_handle(&self, cx: &App) -> FocusHandle
fn focus_handle(&self, cx: &App) -> FocusHandle
Returns the focus handle associated with this view.
Source§impl<D> Render for ListState<D>where
D: ListDelegate,
impl<D> Render for ListState<D>where
D: ListDelegate,
impl<D> EventEmitter<ListEvent> for ListState<D>where
D: ListDelegate,
Auto Trait Implementations§
impl<D> Freeze for ListState<D>where
D: Freeze,
impl<D> !RefUnwindSafe for ListState<D>
impl<D> !Send for ListState<D>
impl<D> !Sync for ListState<D>
impl<D> Unpin for ListState<D>where
D: Unpin,
impl<D> !UnwindSafe for ListState<D>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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