Struct zng_app::widget::info::WidgetInfoBuilder
source · pub struct WidgetInfoBuilder { /* private fields */ }
Expand description
Widget info tree builder.
See WidgetInfoTree
for more details.
Implementations§
source§impl WidgetInfoBuilder
impl WidgetInfoBuilder
sourcepub fn access(&mut self) -> Option<WidgetAccessInfoBuilder<'_>>
pub fn access(&mut self) -> Option<WidgetAccessInfoBuilder<'_>>
Accessibility metadata builder.
Only available if accessibility info is required for the window.
source§impl WidgetInfoBuilder
impl WidgetInfoBuilder
sourcepub fn new(
info_widgets: Arc<InfoUpdates>,
window_id: WindowId,
access_enabled: AccessEnabled,
root_id: WidgetId,
root_bounds_info: WidgetBoundsInfo,
root_border_info: WidgetBorderInfo,
scale_factor: Factor,
) -> Self
pub fn new( info_widgets: Arc<InfoUpdates>, window_id: WindowId, access_enabled: AccessEnabled, root_id: WidgetId, root_bounds_info: WidgetBoundsInfo, root_border_info: WidgetBorderInfo, scale_factor: Factor, ) -> Self
Starts building a info tree with the root information.
sourcepub fn with_build_meta<R>(
&mut self,
visitor: impl FnOnce(StateMapMut<'_, WidgetInfoMeta>) -> R,
) -> R
pub fn with_build_meta<R>( &mut self, visitor: impl FnOnce(StateMapMut<'_, WidgetInfoMeta>) -> R, ) -> R
Widget info tree build metadata.
This metadata can be modified only by pushed widgets, not by the reused widgets.
sourcepub fn set_build_meta<T: StateValue>(
&mut self,
id: impl Into<StateId<T>>,
value: impl Into<T>,
)
pub fn set_build_meta<T: StateValue>( &mut self, id: impl Into<StateId<T>>, value: impl Into<T>, )
Set the info tree build metadata id
to value
.
sourcepub fn flag_build_meta(&mut self, id: impl Into<StateId<()>>)
pub fn flag_build_meta(&mut self, id: impl Into<StateId<()>>)
Sets the info tree build metadata id
without value.
sourcepub fn with_meta<R>(
&mut self,
visitor: impl FnOnce(StateMapMut<'_, WidgetInfoMeta>) -> R,
) -> R
pub fn with_meta<R>( &mut self, visitor: impl FnOnce(StateMapMut<'_, WidgetInfoMeta>) -> R, ) -> R
Current widget info metadata.
sourcepub fn set_meta<T: StateValue>(
&mut self,
id: impl Into<StateId<T>>,
value: impl Into<T>,
)
pub fn set_meta<T: StateValue>( &mut self, id: impl Into<StateId<T>>, value: impl Into<T>, )
Set the widget info metadata id
to value
.
Returns the previous set value.
sourcepub fn flag_meta(&mut self, id: impl Into<StateId<()>>)
pub fn flag_meta(&mut self, id: impl Into<StateId<()>>)
Sets the widget info metadata id
without value.
sourcepub fn push_widget(&mut self, f: impl FnOnce(&mut Self))
pub fn push_widget(&mut self, f: impl FnOnce(&mut Self))
Calls f
to build the context widget info.
Note that f
is only called if the widget info cannot be reused.
sourcepub fn push_interactivity(&mut self, interactivity: Interactivity)
pub fn push_interactivity(&mut self, interactivity: Interactivity)
Add the interactivity
bits to the current widget’s interactivity, it will affect the widget and all descendants.
Also see push_interactivity_filter
to affect the interactivity of widgets outside the current one.
sourcepub fn push_interactivity_filter(
&mut self,
filter: impl Fn(&InteractivityFilterArgs) -> Interactivity + Send + Sync + 'static,
)
pub fn push_interactivity_filter( &mut self, filter: impl Fn(&InteractivityFilterArgs) -> Interactivity + Send + Sync + 'static, )
Register a closure that returns the Interactivity
allowed for each widget.
Widgets interactivity
is computed from all interactivity filters and parents. Interactivity filters are global to the
widget tree, and are re-registered for the tree if the current widget is reused.
Note that the filter can make the assumption that parent widgets affect all descendants and if the filter is intended to
affect only the current widget and descendants you can use push_interactivity
instead.
sourcepub fn with_children_range(
&mut self,
info: impl FnOnce(&mut Self),
) -> Range<usize>
pub fn with_children_range( &mut self, info: impl FnOnce(&mut Self), ) -> Range<usize>
Calls the info
closure and returns the range of children inserted by it.
sourcepub fn parallel_split(&self) -> ParallelBuilder<Self>
pub fn parallel_split(&self) -> ParallelBuilder<Self>
Create a new info builder that can be built in parallel and merged back onto this one using parallel_fold
.
sourcepub fn parallel_fold(&mut self, split: ParallelBuilder<Self>)
pub fn parallel_fold(&mut self, split: ParallelBuilder<Self>)
Collect info from split
into self
.
sourcepub fn finalize(
self,
previous_tree: Option<WidgetInfoTree>,
notify: bool,
) -> WidgetInfoTree
pub fn finalize( self, previous_tree: Option<WidgetInfoTree>, notify: bool, ) -> WidgetInfoTree
Build the info tree.
Also notifies WIDGET_INFO_CHANGED_EVENT
and INTERACTIVITY_CHANGED_EVENT
if notify
is true.
Auto Trait Implementations§
impl Freeze for WidgetInfoBuilder
impl !RefUnwindSafe for WidgetInfoBuilder
impl Send for WidgetInfoBuilder
impl Sync for WidgetInfoBuilder
impl Unpin for WidgetInfoBuilder
impl !UnwindSafe for WidgetInfoBuilder
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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