diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-08-08 11:31:56 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-10-03 16:13:52 +0300 |
commit | 72e2e4705942dd01d4befea3380df5d0fe77c363 (patch) | |
tree | 87637de32cd7156141c7bbe9594c0d6f12da23df /servers/display_server.cpp | |
parent | a2f90d565ad29edcb3bdab77bc7df51cdde8514a (diff) | |
download | redot-engine-72e2e4705942dd01d4befea3380df5d0fe77c363.tar.gz |
[DisplayServer] Add method to estimate window title bar size.
Diffstat (limited to 'servers/display_server.cpp')
-rw-r--r-- | servers/display_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/display_server.cpp b/servers/display_server.cpp index f41238b075..c8516a0966 100644 --- a/servers/display_server.cpp +++ b/servers/display_server.cpp @@ -696,6 +696,7 @@ void DisplayServer::_bind_methods() { ClassDB::bind_method(D_METHOD("window_get_popup_safe_rect", "window"), &DisplayServer::window_get_popup_safe_rect); ClassDB::bind_method(D_METHOD("window_set_title", "title", "window_id"), &DisplayServer::window_set_title, DEFVAL(MAIN_WINDOW_ID)); + ClassDB::bind_method(D_METHOD("window_get_title_size", "title", "window_id"), &DisplayServer::window_get_title_size, DEFVAL(MAIN_WINDOW_ID)); ClassDB::bind_method(D_METHOD("window_set_mouse_passthrough", "region", "window_id"), &DisplayServer::window_set_mouse_passthrough, DEFVAL(MAIN_WINDOW_ID)); ClassDB::bind_method(D_METHOD("window_get_current_screen", "window_id"), &DisplayServer::window_get_current_screen, DEFVAL(MAIN_WINDOW_ID)); |