summaryrefslogtreecommitdiffstats
path: root/scene/main/window.h
diff options
context:
space:
mode:
authorMarkus Sauermann <6299227+Sauermann@users.noreply.github.com>2023-01-20 00:21:11 +0100
committerMarkus Sauermann <6299227+Sauermann@users.noreply.github.com>2024-09-15 01:06:02 +0200
commit60aaa017ff3dc026d89cc8a0eb7817f2b7eac727 (patch)
tree2c595af228282e28e5c0c64be0c951486c7236ba /scene/main/window.h
parent6681f2563b99e14929a8acb27f4908fece398ef1 (diff)
downloadredot-engine-60aaa017ff3dc026d89cc8a0eb7817f2b7eac727.tar.gz
Enable Drag and Drop for SubViewports and Windows
Make Drag and Drop an application-wide operation. This allows do drop on Controls in other Viewports/Windows. In order to achieve this, `Viewport::_update_mouse_over` is adjusted to remember the Control, that the mouse is over (possibly within nested viewports). This Control is used as a basis for the Drop-operation, which replaces the previous algorithm, which was only aware of the topmost Viewport. Also now all nodes in the SceneTree are notified about the Drag and Drop operation, with the exception of SubViewports that are not children of SubViewportContainers.
Diffstat (limited to 'scene/main/window.h')
-rw-r--r--scene/main/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/window.h b/scene/main/window.h
index 84d2febe51..47aaf73728 100644
--- a/scene/main/window.h
+++ b/scene/main/window.h
@@ -469,7 +469,7 @@ public:
virtual Transform2D get_final_transform() const override;
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 Viewport *get_section_root_viewport() const override;
virtual bool is_attached_in_viewport() const override;
Rect2i get_parent_rect() const;