diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2023-01-06 21:48:20 +0100 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2023-08-01 13:28:49 +0200 |
commit | 1c3c17c608df7f05ba27a95f4a5ceb5e67f935d7 (patch) | |
tree | f0b8ba5b310cdddcf81e1e09613737517cea81db /scene/main/window.h | |
parent | da81ca62a5f6d615516929896caa0b6b09ceccfc (diff) | |
download | redot-engine-1c3c17c608df7f05ba27a95f4a5ceb5e67f935d7.tar.gz |
Refactor mouse_entered and mouse_exited notifications
The previous implementation for signals mouse_entered and mouse_exited
had shortcomings that relate to focused windows and pressed mouse buttons.
For example a Control can be hovered by mouse, even if it is occluded by
an embedded window.
This patch changes the behavior, so that Control and Viewport send
their mouse-enter/exit-notifications based solely on mouse position,
visible area, and input restrictions and not on which window has
focus or which mouse buttons are pressed. This implicitly also
changes when the mouse_entered and mouse_exited signals are sent.
This functionality can not be implemented as a part of
Viewport::_gui_input_event, because of its interplay with Windows and
because Viewport::_gui_input_event is based on input and not on
visibility.
Diffstat (limited to 'scene/main/window.h')
-rw-r--r-- | scene/main/window.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/main/window.h b/scene/main/window.h index 7a10499d9b..24142b8a91 100644 --- a/scene/main/window.h +++ b/scene/main/window.h @@ -404,6 +404,7 @@ public: virtual Transform2D get_screen_transform_internal(bool p_absolute_position = false) const override; virtual Transform2D get_popup_base_transform() const override; virtual bool is_directly_attached_to_screen() const override; + virtual bool is_attached_in_viewport() const override; Rect2i get_parent_rect() const; virtual DisplayServer::WindowID get_window_id() const override; |