aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ios7/ios7_keyboard.h
diff options
context:
space:
mode:
authorThierry Crozat2019-06-30 01:22:32 +0100
committerThierry Crozat2019-06-30 12:36:43 +0100
commit25ff69c250f603d2b6cee6fb1437e859c9ab37a4 (patch)
tree1acd39212a4cd431d997a632e4697a64771b0016 /backends/platform/ios7/ios7_keyboard.h
parentce9e77662988f0bdaeb7f02f9b6d9ce9981fee48 (diff)
downloadscummvm-rg350-25ff69c250f603d2b6cee6fb1437e859c9ab37a4.tar.gz
scummvm-rg350-25ff69c250f603d2b6cee6fb1437e859c9ab37a4.tar.bz2
scummvm-rg350-25ff69c250f603d2b6cee6fb1437e859c9ab37a4.zip
IOS7: Use scrollview for keyboard accessory view
This allows to have more buttons than what can be displayed on the screen, and now to have all the same buttons on iPhone and on iPad.
Diffstat (limited to 'backends/platform/ios7/ios7_keyboard.h')
-rw-r--r--backends/platform/ios7/ios7_keyboard.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/platform/ios7/ios7_keyboard.h b/backends/platform/ios7/ios7_keyboard.h
index 51e1ba9c3f..af9e5be0be 100644
--- a/backends/platform/ios7/ios7_keyboard.h
+++ b/backends/platform/ios7/ios7_keyboard.h
@@ -26,9 +26,11 @@
#include <UIKit/UIKit.h>
#include <UIKit/UITextView.h>
+@class TextInputHandler;
+
@interface SoftKeyboard : UIView<UITextViewDelegate> {
id inputDelegate;
- UITextView *inputView;
+ TextInputHandler *inputView;
}
- (id)initWithFrame:(CGRect)frame;