summaryrefslogtreecommitdiff
path: root/scene/main/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/main/window.h')
-rw-r--r--scene/main/window.h25
1 files changed, 15 insertions, 10 deletions
diff --git a/scene/main/window.h b/scene/main/window.h
index 298a611575..04c077a550 100644
--- a/scene/main/window.h
+++ b/scene/main/window.h
@@ -103,20 +103,13 @@ private:
void _clear_window();
void _update_from_window();
- void _resize_callback(const Size2i &p_callback);
- void _event_callback(DisplayServer::WindowEvent p_event);
-
- void _update_size();
+ void _update_viewport_size();
+ void _update_window_size();
void _propagate_window_notification(Node *p_node, int p_notification);
virtual DisplayServer::WindowID get_window_id() const;
- void _window_input(const Ref<InputEvent> &p_ev);
- void _window_input_text(const String &p_text);
- void _window_drop_files(const Vector<String> &p_files);
-
- void _window_unhandled_input(const Ref<InputEvent> &p_ev);
void _update_window_callbacks();
void _clear_transient();
@@ -130,6 +123,18 @@ private:
Control *theme_owner = nullptr;
Window *theme_owner_window = nullptr;
+ Viewport *_get_embedder() const;
+
+ Viewport *embedder = nullptr;
+
+ friend class Viewport; //friend back, can call the methods below
+
+ void _window_input(const Ref<InputEvent> &p_ev);
+ void _window_input_text(const String &p_text);
+ void _window_drop_files(const Vector<String> &p_files);
+ void _rect_changed_callback(const Rect2i &p_callback);
+ void _event_callback(DisplayServer::WindowEvent p_event);
+
protected:
virtual void _post_popup() {}
virtual Size2 _get_contents_minimum_size() const;
@@ -243,7 +248,7 @@ public:
bool has_theme_color(const StringName &p_name, const StringName &p_type = StringName()) const;
bool has_theme_constant(const StringName &p_name, const StringName &p_type = StringName()) const;
- Rect2i get_screen_rect() const;
+ Rect2i get_parent_rect() const;
Window();
~Window();