aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ios7/ios7_video.h
diff options
context:
space:
mode:
authorThierry Crozat2019-02-12 23:48:14 +0000
committerThierry Crozat2019-02-16 17:20:57 +0000
commit4795f2b68a4fd7023c2f85a79c1b7686b9226747 (patch)
tree9f107ee21e2b6bb2357249c99729d116dccbc09e /backends/platform/ios7/ios7_video.h
parent63a6a3c3debce1bc843906bf8fa277a1fb75b2d4 (diff)
downloadscummvm-rg350-4795f2b68a4fd7023c2f85a79c1b7686b9226747.tar.gz
scummvm-rg350-4795f2b68a4fd7023c2f85a79c1b7686b9226747.tar.bz2
scummvm-rg350-4795f2b68a4fd7023c2f85a79c1b7686b9226747.zip
IOS: Implement kFeatureVirtualKeyboard to show/hide the keyboard
Diffstat (limited to 'backends/platform/ios7/ios7_video.h')
-rw-r--r--backends/platform/ios7/ios7_video.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/ios7/ios7_video.h b/backends/platform/ios7/ios7_video.h
index 9c5d92a970..a26213f28e 100644
--- a/backends/platform/ios7/ios7_video.h
+++ b/backends/platform/ios7/ios7_video.h
@@ -48,6 +48,7 @@ typedef struct {
Common::List<InternalEvent> _events;
NSLock *_eventLock;
SoftKeyboard *_keyboardView;
+ BOOL _keyboardVisible;
EAGLContext *_context;
GLuint _viewRenderbuffer;
@@ -120,6 +121,10 @@ typedef struct {
- (void)deviceOrientationChanged:(UIDeviceOrientation)orientation;
+- (void)showKeyboard;
+- (void)hideKeyboard;
+- (BOOL)isKeyboardShown;
+
- (void)applicationSuspend;
- (void)applicationResume;