|
79 | 79 | <description> |
80 | 80 | Returns [code]1[/code] if a screen reader, Braille display or other assistive app is active, [code]0[/code] otherwise. Returns [code]-1[/code] if status is unknown. |
81 | 81 | [b]Note:[/b] This method is implemented on Linux, macOS, and Windows. |
82 | | - [b]Note:[/b] Accessibility debugging tools, such as Accessibility Insights for Windows, macOS Accessibility Inspector, or AT-SPI Browser do not count as assistive apps and will not affect this value. To test your app with these tools, set [member ProjectSettings.accessibility/general/accessibility_support] to [code]1[/code]. |
| 82 | + [b]Note:[/b] Accessibility debugging tools, such as Accessibility Insights for Windows, Accessibility Inspector (macOS), or AT-SPI Browser (Linux/BSD), do not count as assistive apps and will not affect this value. To test your project with these tools, set [member ProjectSettings.accessibility/general/accessibility_support] to [code]1[/code]. |
83 | 83 | </description> |
84 | 84 | </method> |
85 | 85 | <method name="accessibility_set_window_focused"> |
|
1845 | 1845 | <return type="void" /> |
1846 | 1846 | <param index="0" name="callable" type="Callable" /> |
1847 | 1847 | <description> |
1848 | | - Sets the [param callable] that should be called when hardware keyboard is connected/disconnected. [param callable] should accept a single [bool] parameter indicating whether the keyboard is connected (true) or disconnected (false). |
| 1848 | + Sets the callback that should be called when a hardware keyboard is connected or disconnected. [param callable] should accept a single [bool] argument indicating whether the keyboard has been connected ([code]true[/code]) or disconnected ([code]false[/code]). |
1849 | 1849 | [b]Note:[/b] This method is only implemented on Android. |
1850 | 1850 | </description> |
1851 | 1851 | </method> |
|
1869 | 1869 | <return type="void" /> |
1870 | 1870 | <param index="0" name="callable" type="Callable" /> |
1871 | 1871 | <description> |
1872 | | - Sets the [param callable] that should be called when system theme settings are changed. Callback method should have zero arguments. |
| 1872 | + Sets the callback that should be called when the system's theme settings are changed. [param callable] should accept zero arguments. |
1873 | 1873 | [b]Note:[/b] This method is implemented on Android, iOS, macOS, Windows, and Linux (X11/Wayland). |
1874 | 1874 | </description> |
1875 | 1875 | </method> |
|
2058 | 2058 | <method name="virtual_keyboard_get_height" qualifiers="const"> |
2059 | 2059 | <return type="int" /> |
2060 | 2060 | <description> |
2061 | | - Returns the on-screen keyboard's height in pixels. Returns 0 if there is no keyboard or if it is currently hidden. |
2062 | | - [b]Note:[/b] On Android 7 and 8, the keyboard height may return 0 the first time the keyboard is opened in non-immersive mode. This behavior does not occur in immersive mode. |
| 2061 | + Returns the on-screen keyboard's height in pixels. Returns [code]0[/code] if there is no keyboard or if it is currently hidden. |
| 2062 | + [b]Note:[/b] On Android 7 and 8, the keyboard height may return [code]0[/code] the first time the keyboard is opened in non-immersive mode. This behavior does not occur in immersive mode. |
2063 | 2063 | </description> |
2064 | 2064 | </method> |
2065 | 2065 | <method name="virtual_keyboard_hide"> |
|
2236 | 2236 | <method name="window_maximize_on_title_dbl_click" qualifiers="const"> |
2237 | 2237 | <return type="bool" /> |
2238 | 2238 | <description> |
2239 | | - Returns [code]true[/code], if double-click on a window title should maximize it. |
| 2239 | + Returns [code]true[/code] if double-clicking on a window's title should maximize it. |
2240 | 2240 | [b]Note:[/b] This method is implemented only on macOS. |
2241 | 2241 | </description> |
2242 | 2242 | </method> |
2243 | 2243 | <method name="window_minimize_on_title_dbl_click" qualifiers="const"> |
2244 | 2244 | <return type="bool" /> |
2245 | 2245 | <description> |
2246 | | - Returns [code]true[/code], if double-click on a window title should minimize it. |
| 2246 | + Returns [code]true[/code] if double-clicking on a window's title should minimize it. |
2247 | 2247 | [b]Note:[/b] This method is implemented only on macOS. |
2248 | 2248 | </description> |
2249 | 2249 | </method> |
|
2774 | 2774 | Element is hidden for accessibility tools. |
2775 | 2775 | </constant> |
2776 | 2776 | <constant name="FLAG_MULTISELECTABLE" value="1" enum="AccessibilityFlags"> |
2777 | | - Element is support multiple item selection. |
| 2777 | + Element supports multiple item selection. |
2778 | 2778 | </constant> |
2779 | 2779 | <constant name="FLAG_REQUIRED" value="2" enum="AccessibilityFlags"> |
2780 | 2780 | Element require user input. |
|
3146 | 3146 | [b]Note:[/b] This flag is implemented on macOS and Windows. |
3147 | 3147 | </constant> |
3148 | 3148 | <constant name="WINDOW_FLAG_MAX" value="13" enum="WindowFlags"> |
3149 | | - Max value of the [enum WindowFlags]. |
| 3149 | + Represents the size of the [enum WindowFlags] enum. |
3150 | 3150 | </constant> |
3151 | 3151 | <constant name="WINDOW_EVENT_MOUSE_ENTER" value="0" enum="WindowEvent"> |
3152 | 3152 | Sent when the mouse pointer enters the window. |
|
3176 | 3176 | [b]Note:[/b] This flag is implemented only on macOS. |
3177 | 3177 | </constant> |
3178 | 3178 | <constant name="WINDOW_EVENT_FORCE_CLOSE" value="8" enum="WindowEvent"> |
3179 | | - Sent when the window has been forcibly closed by the Display Server. The window shall immediately hide and clean any internal rendering references. |
| 3179 | + Sent when the window has been forcibly closed by the display server. The window will immediately hide and clean any internal rendering references. |
3180 | 3180 | [b]Note:[/b] This flag is implemented only on Linux (Wayland). |
3181 | 3181 | </constant> |
3182 | 3182 | <constant name="WINDOW_EDGE_TOP_LEFT" value="0" enum="WindowResizeEdge"> |
|
0 commit comments