summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-07 22:35:55 +0200
committerGitHub <noreply@github.com>2021-10-07 22:35:55 +0200
commit9f9452a738054ce4495d71eec28c060980d210cf (patch)
tree7a229864dca30936ed1f0e8ea8dc031d4aab5b51 /doc
parent8aa55435b3397dcefb1edf0ae0de5be90e69fb47 (diff)
parent17e3c9a4e30bc5b3117cb2c913e67589668c2379 (diff)
Merge pull request #53493 from DeeJayLSP/patch-1
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/DisplayServer.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/classes/DisplayServer.xml b/doc/classes/DisplayServer.xml
index 01ca23c217..7a467c03c1 100644
--- a/doc/classes/DisplayServer.xml
+++ b/doc/classes/DisplayServer.xml
@@ -10,12 +10,14 @@
<method name="clipboard_get" qualifiers="const">
<return type="String" />
<description>
+ Returns the user's clipboard as a string if possible.
</description>
</method>
<method name="clipboard_set">
<return type="void" />
<argument index="0" name="clipboard" type="String" />
<description>
+ Sets the user's clipboard content to the given string.
</description>
</method>
<method name="console_set_visible">
@@ -333,6 +335,7 @@
<method name="mouse_get_position" qualifiers="const">
<return type="Vector2i" />
<description>
+ Returns the mouse cursor's current position.
</description>
</method>
<method name="mouse_set_mode">
@@ -345,6 +348,7 @@
<return type="void" />
<argument index="0" name="position" type="Vector2i" />
<description>
+ Sets the mouse cursor position to the given [code]position[/code].
</description>
</method>
<method name="process_events">
@@ -538,6 +542,7 @@
<argument index="0" name="flag" type="int" enum="DisplayServer.WindowFlags" />
<argument index="1" name="window_id" type="int" default="0" />
<description>
+ Returns the current value of the given window's [code]flag[/code].
</description>
</method>
<method name="window_get_max_size" qualifiers="const">
@@ -556,13 +561,14 @@
<return type="int" enum="DisplayServer.WindowMode" />
<argument index="0" name="window_id" type="int" default="0" />
<description>
- Returns the current window's mode.
+ Returns the mode of the given window.
</description>
</method>
<method name="window_get_position" qualifiers="const">
<return type="Vector2i" />
<argument index="0" name="window_id" type="int" default="0" />
<description>
+ Returns the position of the given window to on the screen.
</description>
</method>
<method name="window_get_real_size" qualifiers="const">
@@ -616,6 +622,7 @@
<argument index="1" name="enabled" type="bool" />
<argument index="2" name="window_id" type="int" default="0" />
<description>
+ Enables or disables the given window's given [code]flag[/code]. See [enum WindowFlags] for possible values and their behavior.
</description>
</method>
<method name="window_set_ime_active">
@@ -709,6 +716,7 @@
<argument index="0" name="position" type="Vector2i" />
<argument index="1" name="window_id" type="int" default="0" />
<description>
+ Sets the position of the given window to [code]position[/code].
</description>
</method>
<method name="window_set_rect_changed_callback">
@@ -723,6 +731,7 @@
<argument index="0" name="size" type="Vector2i" />
<argument index="1" name="window_id" type="int" default="0" />
<description>
+ Sets the size of the given window to [code]size[/code].
</description>
</method>
<method name="window_set_title">
@@ -730,6 +739,7 @@
<argument index="0" name="title" type="String" />
<argument index="1" name="window_id" type="int" default="0" />
<description>
+ Sets the title of the given window to [code]title[/code].
</description>
</method>
<method name="window_set_transient">