ZIm/crates/gpui/src/elements
Michael Sloan 9086784038
gpui: Support hitbox blocking mouse interaction except scrolling (#31712)
tl;dr: This adds `.block_mouse_except_scroll()` which should typically
be used instead of `.occlude()` for cases when the mouse shouldn't
interact with elements drawn below an element. The rationale for
treating scroll events differently:

* Mouse move / click / styles / tooltips are for elements the user is
interacting with directly.
* Mouse scroll events are about finding the current outer scroll
container.

Most use of `occlude` should probably be switched to this, but I figured
I'd derisk this change by minimizing behavior changes to just the 3 uses
of `block_mouse_except_scroll`.

GPUI changes:

* Added `InteractiveElement::block_mouse_except_scroll()`, and removes
`stop_mouse_events_except_scroll()`

* Added `Hitbox::should_handle_scroll()` to be used when handling scroll
wheel events.

* `Window::insert_hitbox` now takes `HitboxBehavior` instead of
`occlude: bool`.

    - `false` for that bool is now `HitboxBehavior::Normal`.

    - `true` for that bool is now `HitboxBehavior::BlockMouse`.
    
    - The new mode is `HitboxBehavior::BlockMouseExceptScroll`.

* Removes `Default` impl for `HitboxId` since applications should not
manually create `HitboxId(0)`.

Release Notes:

- N/A
2025-05-29 21:41:15 +00:00
..
anchored.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
animation.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
canvas.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
deferred.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
div.rs gpui: Support hitbox blocking mouse interaction except scrolling (#31712) 2025-05-29 21:41:15 +00:00
image_cache.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
img.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
list.rs gpui: Support hitbox blocking mouse interaction except scrolling (#31712) 2025-05-29 21:41:15 +00:00
mod.rs gpui: Add a standard text example (#30747) 2025-05-16 17:35:44 +02:00
surface.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
svg.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00
text.rs gpui: Support hitbox blocking mouse interaction except scrolling (#31712) 2025-05-29 21:41:15 +00:00
uniform_list.rs Add initial element inspector for Zed development (#31315) 2025-05-23 23:08:59 +00:00