1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-13 00:04:19 +00:00
JUCE/modules
reuk 2fc7d12ae7 TextEditor: Add option to dismiss the virtual keyboard on touches outside
Previously, individual components had to ask the peer to hide and show
the keyboard, by calling textInputRequired() and
dismissPendingTextInput() respectively. When an onscreen keyboard (OSK)
was required, most Peer implementation would directly hide/show the OSK
inside these function. However, the iOS ComponentPeer implementation
instead listened to the application's global keyboard focus, and only
opened the OSK when the focused component was also a TextInputTarget
with active input.

The iOS scheme seems like a better design, as it enforces that the OSK
hiding and showing is synced with the keyboard focus of the application.
In the other implementations, it was possible for a Component to call
textInputRequired even when it didn't have the keyboard focus, putting
the application into an inconsistent state. The iOS scheme also makes
the TextInputTarget interface more useful, as it enforces that the OSK
will only display for components that implement TextInputTarget, and
return true from isTextInputActive().

This patch changes all Peer implementations to match the iOS
implementation, improving consistency. Each time the global keyboard
focus changes, refreshTextInputTarget is called automatically, and the
OSK is shown if the focused component is a TextInputTarget that returns
true from isTextInputActive, and hidden otherwise. Components can also
call refreshTextInputTarget manually. This should be done whenever the
component updates the return value of isTextInputActive(). Effectively,
the Peer is now responsible for keeping track of the focused
TextInputTarget, rather than allowing individual components to hide and
show the OSK at will.

Additionally, this patch adds an option to the TextEditor to
automatically dismiss the OSK when the mouse is clicked outside of the
editor. This should improve user experience on mobile platforms, where
touches on sibling components may cause a TextEditor to gain keyboard
focus and unnecessarily display the OSK.
2022-06-08 19:51:11 +01:00
..
juce_analytics Bump version number to 6.1.6 2022-02-28 12:53:10 +00:00
juce_audio_basics FloatVectorOperations: Add method docstrings 2022-04-19 17:13:34 +01:00
juce_audio_devices macOS/iOS: Fix unguarded availability warnings 2022-04-19 11:54:55 +01:00
juce_audio_formats FlacAudioFormat: Correctly balance preprocessor pragmas 2022-05-20 12:44:08 +01:00
juce_audio_plugin_client VS2022: Work around a compiler bug 2022-05-23 21:12:20 +01:00
juce_audio_processors VST3: Fix a compiler warning in the VST3 SDK 2022-04-26 15:38:33 +01:00
juce_audio_utils macOS/iOS: Fix unguarded availability warnings 2022-04-19 11:54:55 +01:00
juce_box2d GCC: Fix some compiler warnings in GCC 11 2022-04-13 11:05:53 +01:00
juce_core Android: Improve complexity of ActivityLifecycleCallbacks::invoke 2022-06-06 21:21:42 +01:00
juce_cryptography Bump version number to 6.1.6 2022-02-28 12:53:10 +00:00
juce_data_structures Value: Update refersToSameSourceAs documentation 2022-04-27 12:49:06 +01:00
juce_dsp Fix a compilation error in Xcode 9.4 2022-04-21 11:30:24 +01:00
juce_events ConnectedChildProcess: Always cancel pending async updates before background thread stops 2022-05-20 12:44:08 +01:00
juce_graphics Linux: Adjust natively reported border size by the current scale factor 2022-05-18 18:41:14 +02:00
juce_gui_basics TextEditor: Add option to dismiss the virtual keyboard on touches outside 2022-06-08 19:51:11 +01:00
juce_gui_extra macOS/iOS: Fix unguarded availability warnings 2022-04-19 11:54:55 +01:00
juce_opengl Bump version number to 6.1.6 2022-02-28 12:53:10 +00:00
juce_osc Bump version number to 6.1.6 2022-02-28 12:53:10 +00:00
juce_product_unlocking InAppPurchases: Add support for Android BillingClient 5.0.0 2022-06-06 21:21:41 +01:00
juce_video macOS/iOS: Fix unguarded availability warnings 2022-04-19 11:54:55 +01:00
CMakeLists.txt BLOCKS: Remove juce_blocks_basics module 2021-05-19 16:53:01 +01:00