diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-12 16:46:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 16:46:55 +0100 |
commit | d3a6b6daaab4c8dfb7bdf35cc2fe2145ae6c22a1 (patch) | |
tree | 0f2638ed2188d1de074dc33829c6891c1f1019cf /servers/display_server.cpp | |
parent | 498805282a61bb8bc29fa81f5bf06678293e6bfc (diff) | |
parent | 7d59b81d79236ea82c72cfa5cb6a0ee341762fc6 (diff) | |
download | redot-engine-d3a6b6daaab4c8dfb7bdf35cc2fe2145ae6c22a1.tar.gz |
Merge pull request #56953 from bruvzg/ex_wnd
Diffstat (limited to 'servers/display_server.cpp')
-rw-r--r-- | servers/display_server.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/servers/display_server.cpp b/servers/display_server.cpp index d880df2a9b..4d7e2b4d9f 100644 --- a/servers/display_server.cpp +++ b/servers/display_server.cpp @@ -204,6 +204,10 @@ void DisplayServer::delete_sub_window(WindowID p_id) { ERR_FAIL_MSG("Sub-windows not supported by this display server."); } +void DisplayServer::window_set_exclusive(WindowID p_window, bool p_exclusive) { + // Do nothing, if not supported. +} + void DisplayServer::window_set_mouse_passthrough(const Vector<Vector2> &p_region, WindowID p_window) { ERR_FAIL_MSG("Mouse passthrough not supported by this display server."); } @@ -436,6 +440,7 @@ void DisplayServer::_bind_methods() { ClassDB::bind_method(D_METHOD("window_can_draw", "window_id"), &DisplayServer::window_can_draw, DEFVAL(MAIN_WINDOW_ID)); ClassDB::bind_method(D_METHOD("window_set_transient", "window_id", "parent_window_id"), &DisplayServer::window_set_transient); + ClassDB::bind_method(D_METHOD("window_set_exclusive", "window_id", "exclusive"), &DisplayServer::window_set_exclusive); ClassDB::bind_method(D_METHOD("window_set_ime_active", "active", "window_id"), &DisplayServer::window_set_ime_active, DEFVAL(MAIN_WINDOW_ID)); ClassDB::bind_method(D_METHOD("window_set_ime_position", "position", "window_id"), &DisplayServer::window_set_ime_position, DEFVAL(MAIN_WINDOW_ID)); |