summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-09-22 12:06:11 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-09-22 23:09:56 +0300
commit0dab11afa4dca6bba7aba554ec4097de30200f73 (patch)
tree739cf5adb01fdaabbc14f6fa72800920a8f10462 /doc/classes
parent62792eeb9fac4f44272f59f95ec8eb3abc0432a7 (diff)
[macOS extend-to-title] Add scene/project name to the editor title, fix incorrect window button position/order when system primary language is RTL.
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/DisplayServer.xml2
-rw-r--r--doc/classes/Window.xml5
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml
index f93a14b4ac..6d3f3a7362 100644
--- a/doc/classes/DisplayServer.xml
+++ b/doc/classes/DisplayServer.xml
@@ -1548,6 +1548,8 @@
</constant>
<constant name="WINDOW_EVENT_DPI_CHANGE" value="6" enum="WindowEvent">
</constant>
+ <constant name="WINDOW_EVENT_TITLEBAR_CHANGE" value="7" enum="WindowEvent">
+ </constant>
<constant name="VSYNC_DISABLED" value="0" enum="VSyncMode">
No vertical synchronization, which means the engine will display frames as fast as possible (tearing may be visible).
</constant>
diff --git a/doc/classes/Window.xml b/doc/classes/Window.xml
index 2bae2d9592..c585b54ee1 100644
--- a/doc/classes/Window.xml
+++ b/doc/classes/Window.xml
@@ -455,6 +455,11 @@
Emitted when the [constant NOTIFICATION_THEME_CHANGED] notification is sent.
</description>
</signal>
+ <signal name="titlebar_changed">
+ <description>
+ Emitted when window title bar decorations are changed, e.g., macOS window enter/exit full screen mode, or extend-to-title flag is changed.
+ </description>
+ </signal>
<signal name="visibility_changed">
<description>
Emitted when [Window] is made visible or disappears.