1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
#![doc(html_favicon_url = "https://raw.githubusercontent.com/zng-ui/zng/main/examples/image/res/zng-logo-icon.png")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/zng-ui/zng/main/examples/image/res/zng-logo.png")]
//!
//! Tooltip widget, properties and nodes.
//!
//! # Crate
//!
#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
#![warn(unused_extern_crates)]
#![warn(missing_docs)]
zng_wgt::enable_widget_macros!();
use std::time::Duration;
use zng_app::{
access::ACCESS_TOOLTIP_EVENT,
widget::{info::INTERACTIVITY_CHANGED_EVENT, OnVarArgs},
};
use zng_ext_input::{
focus::FOCUS_CHANGED_EVENT,
gesture::CLICK_EVENT,
keyboard::KEY_INPUT_EVENT,
mouse::{MOUSE, MOUSE_HOVERED_EVENT, MOUSE_INPUT_EVENT, MOUSE_WHEEL_EVENT},
};
use zng_wgt::{base_color, border, corner_radius, hit_test_mode, prelude::*, HitTestMode};
use zng_wgt_access::{access_role, AccessRole};
use zng_wgt_container::padding;
use zng_wgt_fill::background_color;
use zng_wgt_layer::{
popup::{ContextCapture, Popup, PopupState, POPUP},
AnchorMode,
};
use zng_wgt_style::{impl_style_fn, style_fn, Style};
/// Widget tooltip.
///
/// Any other widget can be used as tooltip, the recommended widget is the [`Tip!`] container, it provides the tooltip style. Note
/// that if the `tip` node is not a widget even after initializing it will not be shown.
///
/// This property can be configured by [`tooltip_anchor`], [`tooltip_delay`], [`tooltip_interval`] and [`tooltip_duration`].
///
/// This tooltip only opens if the widget is enabled, see [`disabled_tooltip`] for a tooltip that only shows when the widget is disabled.
///
/// [`Tip!`]: struct@crate::Tip
/// [`tooltip_anchor`]: fn@tooltip_anchor
/// [`tooltip_delay`]: fn@tooltip_delay
/// [`tooltip_interval`]: fn@tooltip_interval
/// [`tooltip_duration`]: fn@tooltip_duration
/// [`disabled_tooltip`]: fn@disabled_tooltip
#[property(EVENT)]
pub fn tooltip(child: impl UiNode, tip: impl UiNode) -> impl UiNode {
tooltip_fn(child, WidgetFn::singleton(tip))
}
/// Widget tooltip set as a widget function that is called every time the tooltip must be shown.
///
/// The `tip` widget function is used to instantiate a new tip widget when one needs to be shown, any widget
/// can be used as tooltip, the recommended widget is the [`Tip!`] container, it provides the tooltip style.
///
/// This property can be configured by [`tooltip_anchor`], [`tooltip_delay`], [`tooltip_interval`] and [`tooltip_duration`].
///
/// This tooltip only opens if the widget is enabled, see [`disabled_tooltip_fn`] for a tooltip that only shows when the widget is disabled.
///
/// [`Tip!`]: struct@crate::Tip
/// [`tooltip_anchor`]: fn@tooltip_anchor
/// [`tooltip_delay`]: fn@tooltip_delay
/// [`tooltip_interval`]: fn@tooltip_interval
/// [`tooltip_duration`]: fn@tooltip_duration
/// [`disabled_tooltip_fn`]: fn@disabled_tooltip_fn
#[property(EVENT, default(WidgetFn::nil()))]
pub fn tooltip_fn(child: impl UiNode, tip: impl IntoVar<WidgetFn<TooltipArgs>>) -> impl UiNode {
tooltip_node(child, tip, false)
}
/// Disabled widget tooltip.
///
/// This property behaves like [`tooltip`], but the tooltip only opens if the widget is disabled.
///
/// [`tooltip`]: fn@tooltip
#[property(EVENT)]
pub fn disabled_tooltip(child: impl UiNode, tip: impl UiNode) -> impl UiNode {
disabled_tooltip_fn(child, WidgetFn::singleton(tip))
}
/// Disabled widget tooltip.
///
/// This property behaves like [`tooltip_fn`], but the tooltip only opens if the widget is disabled.
///
/// [`tooltip_fn`]: fn@tooltip
#[property(EVENT, default(WidgetFn::nil()))]
pub fn disabled_tooltip_fn(child: impl UiNode, tip: impl IntoVar<WidgetFn<TooltipArgs>>) -> impl UiNode {
tooltip_node(child, tip, true)
}
fn tooltip_node(child: impl UiNode, tip: impl IntoVar<WidgetFn<TooltipArgs>>, disabled_only: bool) -> impl UiNode {
let tip = tip.into_var();
let mut pop_state = var(PopupState::Closed).read_only();
let mut open_delay = None::<DeadlineVar>;
let mut check_cursor = false;
let mut auto_close = None::<DeadlineVar>;
let mut close_event_handles = vec![];
match_node(child, move |child, op| {
let mut open = false;
match op {
UiNodeOp::Init => {
WIDGET
.sub_var(&tip)
.sub_event(&MOUSE_HOVERED_EVENT)
.sub_event(&ACCESS_TOOLTIP_EVENT)
.sub_event(&INTERACTIVITY_CHANGED_EVENT);
}
UiNodeOp::Deinit => {
child.deinit();
open_delay = None;
auto_close = None;
close_event_handles.clear();
if let PopupState::Open(not_closed) = pop_state.get() {
POPUP.force_close_id(not_closed);
}
}
UiNodeOp::Event { update } => {
child.event(update);
let mut show_hide = None;
let mut hover_target = None;
if let Some(args) = MOUSE_HOVERED_EVENT.on(update) {
hover_target = args.target.as_ref();
if disabled_only {
if args.is_mouse_enter_disabled() {
show_hide = Some(true);
check_cursor = false;
} else if args.is_mouse_leave_disabled() {
show_hide = Some(false);
}
} else if args.is_mouse_enter() {
show_hide = Some(true);
check_cursor = false;
} else if args.is_mouse_leave() {
show_hide = Some(false);
}
} else if let Some(args) = ACCESS_TOOLTIP_EVENT.on(update) {
if disabled_only == WIDGET.info().interactivity().is_disabled() {
show_hide = Some(args.visible);
if args.visible {
check_cursor = true;
}
}
} else if let Some(args) = INTERACTIVITY_CHANGED_EVENT.on(update) {
if disabled_only != args.new_interactivity(WIDGET.id()).is_disabled() {
show_hide = Some(false);
}
}
if let Some(show) = show_hide {
let hide = !show;
if open_delay.is_some() && hide {
open_delay = None;
}
match pop_state.get() {
PopupState::Opening => {
if hide {
// cancel
pop_state
.on_pre_new(app_hn_once!(|a: &OnVarArgs<PopupState>| {
match a.value {
PopupState::Open(id) => {
POPUP.force_close_id(id);
}
PopupState::Closed => {}
PopupState::Opening => unreachable!(),
}
}))
.perm();
}
}
PopupState::Open(id) => {
if hide && !hover_target.map(|t| t.contains(id)).unwrap_or(false) {
// mouse not over self and tooltip
POPUP.close_id(id);
}
}
PopupState::Closed => {
if show {
// open
let mut delay = if hover_target.is_some()
&& TOOLTIP_LAST_CLOSED
.get()
.map(|t| t.elapsed() > TOOLTIP_INTERVAL_VAR.get())
.unwrap_or(true)
{
TOOLTIP_DELAY_VAR.get()
} else {
Duration::ZERO
};
if let Some(open) = OPEN_TOOLTIP.get() {
POPUP.force_close_id(open);
// yield an update for the close deinit
// the `tooltip` property is a singleton
// that takes the widget on init, this op
// only takes the widget immediately if it
// is already deinited
delay = 1.ms();
}
if delay == Duration::ZERO {
open = true;
} else {
let delay = TIMERS.deadline(delay);
delay.subscribe(UpdateOp::Update, WIDGET.id()).perm();
open_delay = Some(delay);
}
}
}
}
}
}
UiNodeOp::Update { .. } => {
if let Some(d) = &open_delay {
if d.get().has_elapsed() {
open = true;
open_delay = None;
}
}
if let Some(d) = &auto_close {
if d.get().has_elapsed() {
auto_close = None;
POPUP.close(&pop_state);
}
}
if let Some(PopupState::Closed) = pop_state.get_new() {
close_event_handles.clear();
}
}
_ => {}
}
if open {
let anchor_id = WIDGET.id();
let (is_access_open, anchor_var, duration_var) =
if check_cursor && !MOUSE.hovered().with(|p| matches!(p, Some(p) if p.contains(anchor_id))) {
(true, ACCESS_TOOLTIP_ANCHOR_VAR, ACCESS_TOOLTIP_DURATION_VAR)
} else {
(false, TOOLTIP_ANCHOR_VAR, TOOLTIP_DURATION_VAR)
};
let popup = tip.get()(TooltipArgs {
anchor_id: WIDGET.id(),
disabled: disabled_only,
});
let popup = match_widget(popup, move |c, op| match op {
UiNodeOp::Init => {
c.init();
c.with_context(WidgetUpdateMode::Bubble, || {
// if the tooltip is hit-testable and the mouse hovers it, the anchor widget
// will not receive mouse-leave, because it is not the logical parent of the tooltip,
// so we need to duplicate cleanup logic here.
WIDGET.sub_event(&MOUSE_HOVERED_EVENT);
let mut global = OPEN_TOOLTIP.write();
if let Some(id) = global.take() {
POPUP.force_close_id(id);
}
*global = Some(WIDGET.id());
});
}
UiNodeOp::Deinit => {
c.with_context(WidgetUpdateMode::Bubble, || {
let mut global = OPEN_TOOLTIP.write();
if *global == Some(WIDGET.id()) {
*global = None;
TOOLTIP_LAST_CLOSED.set(Some(INSTANT.now()));
}
});
c.deinit();
}
UiNodeOp::Event { update } => {
c.event(update);
if let Some(args) = MOUSE_HOVERED_EVENT.on(update) {
if is_access_open {
return;
}
let tooltip_id = match c.with_context(WidgetUpdateMode::Ignore, || WIDGET.id()) {
Some(id) => id,
None => {
// was widget on init, now is not,
// this can happen if child is an `ArcNode` that was moved
return;
}
};
if let Some(t) = &args.target {
if !t.contains(anchor_id) && !t.contains(tooltip_id) {
POPUP.close_id(tooltip_id);
}
}
}
}
_ => {}
});
pop_state = POPUP.open_config(popup, anchor_var, TOOLTIP_CONTEXT_CAPTURE_VAR.get());
pop_state.subscribe(UpdateOp::Update, anchor_id).perm();
let duration = duration_var.get();
if duration > Duration::ZERO {
let d = TIMERS.deadline(duration);
d.subscribe(UpdateOp::Update, WIDGET.id()).perm();
auto_close = Some(d);
} else {
auto_close = None;
}
let monitor_start = INSTANT.now();
// close tooltip when the user starts doing something else (after 200ms)
for event in [
MOUSE_INPUT_EVENT.as_any(),
CLICK_EVENT.as_any(),
FOCUS_CHANGED_EVENT.as_any(),
KEY_INPUT_EVENT.as_any(),
MOUSE_WHEEL_EVENT.as_any(),
] {
close_event_handles.push(event.hook(clmv!(pop_state, |_| {
let retain = monitor_start.elapsed() <= 200.ms();
if !retain {
POPUP.close(&pop_state);
}
retain
})));
}
}
})
}
/// Set the position of the tip widgets opened for the widget or its descendants.
///
/// Tips are inserted as [`POPUP`] when shown, this property defines how the tip layer
/// is aligned with the anchor widget, or the cursor.
///
/// By default tips are aligned below the cursor position at the time they are opened.
///
/// This position is used when the tip opens with cursor interaction, see
/// [`access_tooltip_anchor`] for position without the cursor.
///
/// This property sets the [`TOOLTIP_ANCHOR_VAR`].
///
/// [`access_tooltip_anchor`]: fn@access_tooltip_anchor
/// [`POPUP`]: zng_wgt_layer::popup::POPUP::force_close
#[property(CONTEXT, default(TOOLTIP_ANCHOR_VAR))]
pub fn tooltip_anchor(child: impl UiNode, mode: impl IntoVar<AnchorMode>) -> impl UiNode {
with_context_var(child, TOOLTIP_ANCHOR_VAR, mode)
}
/// Set the position of the tip widgets opened for the widget or its descendants without cursor interaction.
///
/// This position is used instead of [`tooltip_anchor`] when the tooltip is shown by commands such as [`ACCESS.show_tooltip`]
/// and the cursor is not over the widget.
///
/// This property sets the [`ACCESS_TOOLTIP_ANCHOR_VAR`].
///
/// [`tooltip_anchor`]: fn@tooltip_anchor
/// [`ACCESS.show_tooltip`]: zng_app::access::ACCESS::show_tooltip
#[property(CONTEXT, default(ACCESS_TOOLTIP_ANCHOR_VAR))]
pub fn access_tooltip_anchor(child: impl UiNode, mode: impl IntoVar<AnchorMode>) -> impl UiNode {
with_context_var(child, ACCESS_TOOLTIP_ANCHOR_VAR, mode)
}
/// Defines if the tooltip captures the build/instantiate context and sets it
/// in the node context.
///
/// This is disabled by default, it can be enabled to have the tooltip be affected by context properties
/// in the anchor widget.
///
/// Note that updates to this property do not affect tooltips already open, just subsequent tooltips.
///
/// This property sets the [`TOOLTIP_CONTEXT_CAPTURE_VAR`].
///
/// [`LAYERS`]: crate::window::layers::LAYERS
#[property(CONTEXT, default(TOOLTIP_CONTEXT_CAPTURE_VAR))]
pub fn tooltip_context_capture(child: impl UiNode, capture: impl IntoVar<ContextCapture>) -> impl UiNode {
with_context_var(child, TOOLTIP_CONTEXT_CAPTURE_VAR, capture)
}
/// Set the duration the cursor must be over the widget or its descendants before the tip widget is opened.
///
/// This delay applies when no other tooltip was opened within the [`tooltip_interval`] duration, otherwise the
/// tooltip opens instantly.
///
/// This property sets the [`TOOLTIP_DELAY_VAR`].
///
/// [`tooltip_interval`]: fn@tooltip_interval
#[property(CONTEXT, default(TOOLTIP_DELAY_VAR))]
pub fn tooltip_delay(child: impl UiNode, delay: impl IntoVar<Duration>) -> impl UiNode {
with_context_var(child, TOOLTIP_DELAY_VAR, delay)
}
/// Sets the maximum interval a second tooltip is opened instantly if a previous tip was just closed.
///
/// The config applies for tooltips opening on the widget or descendants, but considers previous tooltips opened on any widget.
///
/// This property sets the [`TOOLTIP_INTERVAL_VAR`].
#[property(CONTEXT, default(TOOLTIP_INTERVAL_VAR))]
pub fn tooltip_interval(child: impl UiNode, interval: impl IntoVar<Duration>) -> impl UiNode {
with_context_var(child, TOOLTIP_INTERVAL_VAR, interval)
}
/// Sets the maximum duration a tooltip stays open on the widget or descendants.
///
/// Note that the tooltip closes at the moment the cursor leaves the widget, this duration defines the
/// time the tooltip is closed even if the cursor is still hovering the widget. This duration is not used
/// if the tooltip is opened without cursor interaction, in that case the [`access_tooltip_duration`] is used.
///
/// Zero means indefinitely, is zero by default.
///
/// This property sets the [`TOOLTIP_DURATION_VAR`].
///
/// [`access_tooltip_duration`]: fn@access_tooltip_duration
#[property(CONTEXT, default(TOOLTIP_DURATION_VAR))]
pub fn tooltip_duration(child: impl UiNode, duration: impl IntoVar<Duration>) -> impl UiNode {
with_context_var(child, TOOLTIP_DURATION_VAR, duration)
}
/// Sets the maximum duration a tooltip stays open on the widget or descendants when it is opened without cursor interaction.
///
/// This duration is used instead of [`tooltip_duration`] when the tooltip is shown by commands such as [`ACCESS.show_tooltip`]
/// and the cursor is not over the widget.
///
/// Zero means until [`ACCESS.hide_tooltip`], is 5 seconds by default.
///
/// This property sets the [`ACCESS_TOOLTIP_DURATION_VAR`].
///
/// [`tooltip_duration`]: fn@tooltip_duration
/// [`ACCESS.show_tooltip`]: zng_app::access::ACCESS::show_tooltip
/// [`ACCESS.hide_tooltip`]: zng_app::access::ACCESS::hide_tooltip
#[property(CONTEXT, default(ACCESS_TOOLTIP_DURATION_VAR))]
pub fn access_tooltip_duration(child: impl UiNode, duration: impl IntoVar<Duration>) -> impl UiNode {
with_context_var(child, ACCESS_TOOLTIP_DURATION_VAR, duration)
}
/// Arguments for tooltip widget functions.
#[derive(Clone, Debug)]
pub struct TooltipArgs {
/// ID of the widget the tooltip is anchored to.
pub anchor_id: WidgetId,
/// Is `true` if the tooltip is for [`disabled_tooltip_fn`], is `false` for [`tooltip_fn`].
///
/// [`tooltip_fn`]: fn@tooltip_fn
/// [`disabled_tooltip_fn`]: fn@disabled_tooltip_fn
pub disabled: bool,
}
app_local! {
/// Tracks the instant the last tooltip was closed on the widget.
///
/// This value is used to implement the [`TOOLTIP_INTERVAL_VAR`], custom tooltip implementers must set it
/// to integrate with the [`tooltip`] implementation.
///
/// [`tooltip`]: fn@tooltip
pub static TOOLTIP_LAST_CLOSED: Option<DInstant> = None;
/// Id of the current open tooltip.
///
/// Custom tooltip implementers must take the ID and [`POPUP.force_close`] it to integrate with the [`tooltip`] implementation.
///
/// [`tooltip`]: fn@tooltip
/// [`POPUP.force_close`]: zng_wgt_layer::popup::POPUP::force_close
pub static OPEN_TOOLTIP: Option<WidgetId> = None;
}
context_var! {
/// Position of the tip widget in relation to the anchor widget, when opened with cursor interaction.
///
/// By default the tip widget is shown below the cursor.
pub static TOOLTIP_ANCHOR_VAR: AnchorMode = AnchorMode::tooltip();
/// Position of the tip widget in relation to the anchor widget, when opened without cursor interaction.
///
/// By default the tip widget is shown above the widget, centered.
pub static ACCESS_TOOLTIP_ANCHOR_VAR: AnchorMode = AnchorMode::tooltip_shortcut();
/// Duration the cursor must be over the anchor widget before the tip widget is opened.
pub static TOOLTIP_DELAY_VAR: Duration = 500.ms();
/// Maximum duration from the last time a tooltip was shown that a new tooltip opens instantly.
pub static TOOLTIP_INTERVAL_VAR: Duration = 200.ms();
/// Maximum time a tooltip stays open, when opened with cursor interaction.
///
/// Zero means indefinitely, is zero by default.
pub static TOOLTIP_DURATION_VAR: Duration = 0.ms();
/// Maximum time a tooltip stays open, when opened without cursor interaction.
///
/// Zero means indefinitely, is `5.secs()` by default.
pub static ACCESS_TOOLTIP_DURATION_VAR: Duration = 5.secs();
/// Tooltip context capture.
///
/// Is [`ContextCapture::NoCapture`] by default.
///
/// [`ContextCapture::NoCapture`]: zng_wgt_layer::popup::ContextCapture
pub static TOOLTIP_CONTEXT_CAPTURE_VAR: ContextCapture = ContextCapture::NoCapture;
}
/// A tooltip popup.
///
/// Can be set on the [`tooltip`] property.
///
/// [`tooltip`]: fn@tooltip
#[widget($crate::Tip {
($child:expr) => {
child = $child;
};
})]
pub struct Tip(Popup);
impl Tip {
fn widget_intrinsic(&mut self) {
self.style_intrinsic(STYLE_FN_VAR, property_id!(self::style_fn));
widget_set! {
self;
hit_test_mode = false;
access_role = AccessRole::ToolTip;
focusable = false;
focus_on_init = unset!;
style_base_fn = style_fn!(|_| DefaultStyle!());
}
}
widget_impl! {
/// If the tooltip can be interacted with the mouse.
///
/// This is disabled by default.
pub hit_test_mode(mode: impl IntoVar<HitTestMode>);
}
}
impl_style_fn!(Tip);
/// Tip default style.
#[widget($crate::DefaultStyle)]
pub struct DefaultStyle(Style);
impl DefaultStyle {
fn widget_intrinsic(&mut self) {
widget_set! {
self;
replace = true;
padding = (4, 6);
corner_radius = 3;
base_color = light_dark(rgb(235, 235, 235), rgb(20, 20, 20));
background_color = colors::BASE_COLOR_VAR.rgba();
zng_wgt_text::font_size = 10.pt();
border = {
widths: 1.px(),
sides: colors::BASE_COLOR_VAR.shade_into(1),
};
}
}
}