Expand description
Widget info tree and info builder.
§Examples
The example declares a new info state for widgets and a property that sets the new state. The new state is then used in a widget.
mod custom {
use zng::prelude_wgt::*;
static_id! {
static ref STATE_ID: StateId<bool>;
}
#[property(CONTEXT)]
pub fn flag_state(child: impl UiNode, state: impl IntoVar<bool>) -> impl UiNode {
let state = state.into_var();
match_node(child, move |_, op| match op {
UiNodeOp::Init => {
WIDGET.sub_var_info(&state);
}
UiNodeOp::Info { info } => {
info.set_meta(*STATE_ID, state.get());
}
_ => {}
})
}
pub trait StateExt {
fn state(&self) -> Option<bool>;
}
impl StateExt for WidgetInfo {
fn state(&self) -> Option<bool> {
self.meta().get_clone(*STATE_ID)
}
}
}
Wgt! {
custom::flag_state = true;
widget::on_info_init = hn!(|_| {
use custom::StateExt as _;
let info = WIDGET.info();
println!("state: {:?}", info.state());
});
}
Modules§
- access
- Accessibility metadata types.
- inspector
- Helper types for inspecting an UI tree.
- iter
- Widget info tree iterators.
Structs§
- HitInfo
- A hit-test hit.
- HitTest
Info - A hit-test result.
- Inline
Segment Info - Info about a segment in the first or last row of an inlined widget.
- Interaction
Path - Represents a
WidgetPath
annotated with each widget’sInteractivity
. - Interactivity
- Represents the level of interaction allowed for a widget.
- Interactivity
Changed Args INTERACTIVITY_CHANGED_EVENT
args.- Interactivity
Filter Args - Argument for a interactivity filter function.
- Parallel
Builder - Represents a builder split from the main builder that can be used in parallel and then folded back onto the main builder.
- Transform
Changed Args TRANSFORM_CHANGED_EVENT
args.- Visibility
Changed Args VISIBILITY_CHANGED_EVENT
args.- Widget
Border Info - Shared reference to the combined border and corner radius of a
WidgetInfo
. - Widget
Bounds Info - Shared reference to layout size, offsets, rendered transforms and bounds of a widget.
- Widget
Descendants Range - Represents the descendants of a widget, allows checking if widgets are descendant with O(1) time.
- Widget
Info - Reference to a widget info in a
WidgetInfoTree
. - Widget
Info Builder - Widget info tree builder.
- Widget
Info Changed Args WIDGET_INFO_CHANGED_EVENT
args.- Widget
Info Tree - A tree of
WidgetInfo
. - Widget
Info Tree Stats - Stats over the lifetime of a widget info tree.
- Widget
Inline Info - Info about the inlined rows of the widget.
- Widget
Inline Measure - Info about the input inline connecting rows of the widget.
- Widget
Path - Full address of a widget.
Enums§
- Relative
HitZ - Hit-test result on a widget relative to it’s descendants.
- Tree
Filter - Widget tree filter selected for a widget in the tree.
- Widget
Info Meta - Tag for the
WidgetInfo::meta
state-map.
Statics§
- INTERACTIVITY_
CHANGED_ EVENT - Widget interactivity has changed after an info update.
- TRANSFORM_
CHANGED_ EVENT - A widget global inner transform has changed after render.
- VISIBILITY_
CHANGED_ EVENT - Widget visibility has changed after render.
- WIDGET_
INFO_ CHANGED_ EVENT - A window widget tree was rebuild.