diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-04 19:11:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 19:11:40 +0200 |
commit | e9f8b2d1908f3dcfda945d20bb6cb86654d80277 (patch) | |
tree | a61f35ca2841cf224194b93a2a57da43c42a7be6 /platform/uwp/os_uwp.h | |
parent | bed2482ce20fb9efdf4caed73df8032c5c6dea04 (diff) | |
parent | 103c0fa6e6ea85779e5de965b5b353833926732f (diff) |
Merge pull request #58536 from winterpixelgames/feature/virtual-keyboard-types
Add support for multiple virtual keyboard types
Diffstat (limited to 'platform/uwp/os_uwp.h')
-rw-r--r-- | platform/uwp/os_uwp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h index b9d035ff41..fe61f60548 100644 --- a/platform/uwp/os_uwp.h +++ b/platform/uwp/os_uwp.h @@ -231,7 +231,7 @@ public: virtual bool has_touchscreen_ui_hint() const; virtual bool has_virtual_keyboard() const; - virtual void show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect = Rect2(), bool p_multiline = false, int p_max_input_length = -1, int p_cursor_start = -1, int p_cursor_end = -1); + virtual void show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect = Rect2(), VirtualKeyboardType p_type = KEYBOARD_TYPE_DEFAULT, int p_max_input_length = -1, int p_cursor_start = -1, int p_cursor_end = -1); virtual void hide_virtual_keyboard(); virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false, String *r_resolved_path = nullptr); |