summaryrefslogtreecommitdiff
path: root/doc/classes/DisplayServer.xml
diff options
context:
space:
mode:
authorDeeJayLSP <60024671+DeeJayLSP@users.noreply.github.com>2021-10-06 17:52:52 -0300
committerDouglas <djlsplays@gmail.com>2021-10-07 12:43:00 -0300
commit17e3c9a4e30bc5b3117cb2c913e67589668c2379 (patch)
tree1d0b535bd84c3478d638de9ec0a0955b6f4a57a4 /doc/classes/DisplayServer.xml
parent26f4848d013c5a234c2399717372ef72985cb655 (diff)
DisplayServer: Add multiple descriptions for methods.
Added multiple descriptions for clipboard, mouse and window methods.
Diffstat (limited to 'doc/classes/DisplayServer.xml')
-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">