Skip to content

Latest commit

 

History

History
598 lines (508 loc) · 17.8 KB

SDL_uikitviewcontroller.m

File metadata and controls

598 lines (508 loc) · 17.8 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 17, 2020
Jan 17, 2020
3
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"
#if SDL_VIDEO_DRIVER_UIKIT
#include "SDL_video.h"
#include "SDL_assert.h"
#include "SDL_hints.h"
#include "../SDL_sysvideo.h"
#include "../../events/SDL_events_c.h"
#import "SDL_uikitviewcontroller.h"
#import "SDL_uikitmessagebox.h"
#include "SDL_uikitvideo.h"
#include "SDL_uikitmodes.h"
#include "SDL_uikitwindow.h"
Apr 2, 2016
Apr 2, 2016
36
#include "SDL_uikitopengles.h"
37
38
39
40
41
#if SDL_IPHONE_KEYBOARD
#include "keyinfotable.h"
#endif
Sep 14, 2016
Sep 14, 2016
42
#if TARGET_OS_TV
Aug 14, 2017
Aug 14, 2017
43
static void SDLCALL
Sep 14, 2016
Sep 14, 2016
44
45
46
47
48
49
50
51
52
SDL_AppleTVControllerUIHintChanged(void *userdata, const char *name, const char *oldValue, const char *hint)
{
@autoreleasepool {
SDL_uikitviewcontroller *viewcontroller = (__bridge SDL_uikitviewcontroller *) userdata;
viewcontroller.controllerUserInteractionEnabled = hint && (*hint != '0');
}
}
#endif
Feb 1, 2018
Feb 1, 2018
53
54
55
56
57
58
59
#if !TARGET_OS_TV
static void SDLCALL
SDL_HideHomeIndicatorHintChanged(void *userdata, const char *name, const char *oldValue, const char *hint)
{
@autoreleasepool {
SDL_uikitviewcontroller *viewcontroller = (__bridge SDL_uikitviewcontroller *) userdata;
viewcontroller.homeIndicatorHidden = (hint && *hint) ? SDL_atoi(hint) : -1;
Jun 14, 2019
Jun 14, 2019
60
61
62
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunguarded-availability-new"
if ([viewcontroller respondsToSelector:@selector(setNeedsUpdateOfHomeIndicatorAutoHidden)]) {
Feb 1, 2018
Feb 1, 2018
63
64
65
[viewcontroller setNeedsUpdateOfHomeIndicatorAutoHidden];
[viewcontroller setNeedsUpdateOfScreenEdgesDeferringSystemGestures];
}
Jun 14, 2019
Jun 14, 2019
66
#pragma clang diagnostic pop
Feb 1, 2018
Feb 1, 2018
67
68
69
70
}
}
#endif
71
72
73
74
75
76
77
78
@implementation SDL_uikitviewcontroller {
CADisplayLink *displayLink;
int animationInterval;
void (*animationCallback)(void*);
void *animationCallbackParam;
#if SDL_IPHONE_KEYBOARD
UITextField *textField;
May 23, 2019
May 23, 2019
79
BOOL hardwareKeyboard;
May 20, 2019
May 20, 2019
80
BOOL showingKeyboard;
Dec 2, 2016
Dec 2, 2016
81
BOOL rotatingOrientation;
Sep 11, 2018
Sep 11, 2018
82
83
NSString *changeText;
NSString *obligateForBackspace;
84
85
86
87
88
89
90
91
92
93
94
95
#endif
}
@synthesize window;
- (instancetype)initWithSDLWindow:(SDL_Window *)_window
{
if (self = [super initWithNibName:nil bundle:nil]) {
self.window = _window;
#if SDL_IPHONE_KEYBOARD
[self initKeyboard];
May 23, 2019
May 23, 2019
96
97
98
hardwareKeyboard = NO;
showingKeyboard = NO;
rotatingOrientation = NO;
Sep 14, 2016
Sep 14, 2016
100
101
102
103
104
105
#if TARGET_OS_TV
SDL_AddHintCallback(SDL_HINT_APPLE_TV_CONTROLLER_UI_EVENTS,
SDL_AppleTVControllerUIHintChanged,
(__bridge void *) self);
#endif
Feb 1, 2018
Feb 1, 2018
106
107
108
109
110
111
#if !TARGET_OS_TV
SDL_AddHintCallback(SDL_HINT_IOS_HIDE_HOME_INDICATOR,
SDL_HideHomeIndicatorHintChanged,
(__bridge void *) self);
#endif
Feb 1, 2018
Feb 1, 2018
112
}
113
114
115
116
117
118
119
120
return self;
}
- (void)dealloc
{
#if SDL_IPHONE_KEYBOARD
[self deinitKeyboard];
#endif
Sep 14, 2016
Sep 14, 2016
121
122
123
124
125
126
#if TARGET_OS_TV
SDL_DelHintCallback(SDL_HINT_APPLE_TV_CONTROLLER_UI_EVENTS,
SDL_AppleTVControllerUIHintChanged,
(__bridge void *) self);
#endif
Feb 1, 2018
Feb 1, 2018
127
128
129
130
131
132
#if !TARGET_OS_TV
SDL_DelHintCallback(SDL_HINT_IOS_HIDE_HOME_INDICATOR,
SDL_HideHomeIndicatorHintChanged,
(__bridge void *) self);
#endif
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
}
- (void)setAnimationCallback:(int)interval
callback:(void (*)(void*))callback
callbackParam:(void*)callbackParam
{
[self stopAnimation];
animationInterval = interval;
animationCallback = callback;
animationCallbackParam = callbackParam;
if (animationCallback) {
[self startAnimation];
}
}
- (void)startAnimation
{
displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(doLoop:)];
Jul 15, 2017
Jul 15, 2017
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#ifdef __IPHONE_10_3
SDL_WindowData *data = (__bridge SDL_WindowData *) window->driverdata;
if ([displayLink respondsToSelector:@selector(preferredFramesPerSecond)]
&& data != nil && data.uiwindow != nil
&& [data.uiwindow.screen respondsToSelector:@selector(maximumFramesPerSecond)]) {
displayLink.preferredFramesPerSecond = data.uiwindow.screen.maximumFramesPerSecond / animationInterval;
} else
#endif
{
#if __IPHONE_OS_VERSION_MIN_REQUIRED < 100300
[displayLink setFrameInterval:animationInterval];
#endif
}
169
170
171
172
173
174
175
176
177
178
179
180
181
[displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
}
- (void)stopAnimation
{
[displayLink invalidate];
displayLink = nil;
}
- (void)doLoop:(CADisplayLink*)sender
{
/* Don't run the game loop while a messagebox is up */
if (!UIKit_ShowingMessageBox()) {
Apr 2, 2016
Apr 2, 2016
182
/* See the comment in the function definition. */
Dec 4, 2019
Dec 4, 2019
183
#if SDL_VIDEO_OPENGL_ES || SDL_VIDEO_OPENGL_ES2
Apr 2, 2016
Apr 2, 2016
184
UIKit_GL_RestoreCurrentContext();
Dec 4, 2019
Dec 4, 2019
185
#endif
Apr 2, 2016
Apr 2, 2016
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
animationCallback(animationCallbackParam);
}
}
- (void)loadView
{
/* Do nothing. */
}
- (void)viewDidLayoutSubviews
{
const CGSize size = self.view.bounds.size;
int w = (int) size.width;
int h = (int) size.height;
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESIZED, w, h);
}
Sep 14, 2016
Sep 14, 2016
205
#if !TARGET_OS_TV
206
207
208
209
210
- (NSUInteger)supportedInterfaceOrientations
{
return UIKit_GetSupportedOrientations(window);
}
Jul 15, 2017
Jul 15, 2017
211
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_7_0
212
213
214
215
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orient
{
return ([self supportedInterfaceOrientations] & (1 << orient)) != 0;
}
Jul 15, 2017
Jul 15, 2017
216
#endif
217
218
219
- (BOOL)prefersStatusBarHidden
{
Feb 1, 2018
Feb 1, 2018
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
BOOL hidden = (window->flags & (SDL_WINDOW_FULLSCREEN|SDL_WINDOW_BORDERLESS)) != 0;
return hidden;
}
- (BOOL)prefersHomeIndicatorAutoHidden
{
BOOL hidden = NO;
if (self.homeIndicatorHidden == 1) {
hidden = YES;
}
return hidden;
}
- (UIRectEdge)preferredScreenEdgesDeferringSystemGestures
{
if (self.homeIndicatorHidden >= 0) {
if (self.homeIndicatorHidden == 2) {
return UIRectEdgeAll;
} else {
return UIRectEdgeNone;
}
}
/* By default, fullscreen and borderless windows get all screen gestures */
if ((window->flags & (SDL_WINDOW_FULLSCREEN|SDL_WINDOW_BORDERLESS)) != 0) {
return UIRectEdgeAll;
} else {
return UIRectEdgeNone;
}
Sep 14, 2016
Sep 14, 2016
250
#endif
251
252
253
254
255
256
257
258
259
260
261
262
263
/*
---- Keyboard related functionality below this line ----
*/
#if SDL_IPHONE_KEYBOARD
@synthesize textInputRect;
@synthesize keyboardHeight;
@synthesize keyboardVisible;
/* Set ourselves up as a UITextFieldDelegate */
- (void)initKeyboard
{
Sep 11, 2018
Sep 11, 2018
264
265
changeText = nil;
obligateForBackspace = @" "; /* 64 space */
266
267
268
textField = [[UITextField alloc] initWithFrame:CGRectZero];
textField.delegate = self;
/* placeholder so there is something to delete! */
Sep 11, 2018
Sep 11, 2018
269
textField.text = obligateForBackspace;
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/* set UITextInputTrait properties, mostly to defaults */
textField.autocapitalizationType = UITextAutocapitalizationTypeNone;
textField.autocorrectionType = UITextAutocorrectionTypeNo;
textField.enablesReturnKeyAutomatically = NO;
textField.keyboardAppearance = UIKeyboardAppearanceDefault;
textField.keyboardType = UIKeyboardTypeDefault;
textField.returnKeyType = UIReturnKeyDefault;
textField.secureTextEntry = NO;
textField.hidden = YES;
keyboardVisible = NO;
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
Sep 11, 2018
Sep 11, 2018
284
#if !TARGET_OS_TV
285
286
[center addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[center addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
Sep 14, 2016
Sep 14, 2016
287
#endif
Sep 11, 2018
Sep 11, 2018
288
[center addObserver:self selector:@selector(textFieldTextDidChange:) name:UITextFieldTextDidChangeNotification object:nil];
Oct 27, 2019
Oct 27, 2019
291
292
- (NSArray *)keyCommands
{
May 23, 2019
May 23, 2019
293
294
295
296
297
298
299
300
301
NSMutableArray *commands = [[NSMutableArray alloc] init];
[commands addObject:[UIKeyCommand keyCommandWithInput:UIKeyInputUpArrow modifierFlags:kNilOptions action:@selector(handleCommand:)]];
[commands addObject:[UIKeyCommand keyCommandWithInput:UIKeyInputDownArrow modifierFlags:kNilOptions action:@selector(handleCommand:)]];
[commands addObject:[UIKeyCommand keyCommandWithInput:UIKeyInputLeftArrow modifierFlags:kNilOptions action:@selector(handleCommand:)]];
[commands addObject:[UIKeyCommand keyCommandWithInput:UIKeyInputRightArrow modifierFlags:kNilOptions action:@selector(handleCommand:)]];
[commands addObject:[UIKeyCommand keyCommandWithInput:UIKeyInputEscape modifierFlags:kNilOptions action:@selector(handleCommand:)]];
return [NSArray arrayWithArray:commands];
}
Oct 27, 2019
Oct 27, 2019
302
303
- (void)handleCommand:(UIKeyCommand *)keyCommand
{
May 23, 2019
May 23, 2019
304
SDL_Scancode scancode = SDL_SCANCODE_UNKNOWN;
Oct 27, 2019
Oct 27, 2019
305
NSString *input = keyCommand.input;
May 23, 2019
May 23, 2019
306
Oct 27, 2019
Oct 27, 2019
307
if (input == UIKeyInputUpArrow) {
May 23, 2019
May 23, 2019
308
scancode = SDL_SCANCODE_UP;
Oct 27, 2019
Oct 27, 2019
309
} else if (input == UIKeyInputDownArrow) {
May 23, 2019
May 23, 2019
310
scancode = SDL_SCANCODE_DOWN;
Oct 27, 2019
Oct 27, 2019
311
} else if (input == UIKeyInputLeftArrow) {
May 23, 2019
May 23, 2019
312
scancode = SDL_SCANCODE_LEFT;
Oct 27, 2019
Oct 27, 2019
313
} else if (input == UIKeyInputRightArrow) {
May 23, 2019
May 23, 2019
314
scancode = SDL_SCANCODE_RIGHT;
Oct 27, 2019
Oct 27, 2019
315
} else if (input == UIKeyInputEscape) {
May 23, 2019
May 23, 2019
316
317
318
319
scancode = SDL_SCANCODE_ESCAPE;
}
if (scancode != SDL_SCANCODE_UNKNOWN) {
Apr 9, 2020
Apr 9, 2020
320
SDL_SendKeyboardKeyAutoRelease(scancode);
May 23, 2019
May 23, 2019
321
322
323
}
}
324
325
326
327
328
329
330
331
332
333
334
- (void)setView:(UIView *)view
{
[super setView:view];
[view addSubview:textField];
if (keyboardVisible) {
[self showKeyboard];
}
}
Dec 2, 2016
Dec 2, 2016
335
336
337
338
339
/* willRotateToInterfaceOrientation and didRotateFromInterfaceOrientation are deprecated in iOS 8+ in favor of viewWillTransitionToSize */
#if TARGET_OS_TV || __IPHONE_OS_VERSION_MIN_REQUIRED >= 80000
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
{
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
May 23, 2019
May 23, 2019
340
rotatingOrientation = YES;
Dec 2, 2016
Dec 2, 2016
341
342
[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context) {}
completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {
Jan 30, 2020
Jan 30, 2020
343
self->rotatingOrientation = NO;
Apr 9, 2020
Apr 9, 2020
344
}];
Dec 2, 2016
Dec 2, 2016
345
346
347
348
}
#else
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
May 23, 2019
May 23, 2019
349
rotatingOrientation = YES;
Dec 2, 2016
Dec 2, 2016
350
351
352
353
}
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
[super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
May 23, 2019
May 23, 2019
354
rotatingOrientation = NO;
Dec 2, 2016
Dec 2, 2016
355
356
357
}
#endif /* TARGET_OS_TV || __IPHONE_OS_VERSION_MIN_REQUIRED >= 80000 */
358
359
360
- (void)deinitKeyboard
{
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
Sep 11, 2018
Sep 11, 2018
361
#if !TARGET_OS_TV
362
363
[center removeObserver:self name:UIKeyboardWillShowNotification object:nil];
[center removeObserver:self name:UIKeyboardWillHideNotification object:nil];
Sep 14, 2016
Sep 14, 2016
364
#endif
Sep 11, 2018
Sep 11, 2018
365
[center removeObserver:self name:UITextFieldTextDidChangeNotification object:nil];
366
367
368
369
370
371
372
}
/* reveal onscreen virtual keyboard */
- (void)showKeyboard
{
keyboardVisible = YES;
if (textField.window) {
May 20, 2019
May 20, 2019
373
showingKeyboard = YES;
374
[textField becomeFirstResponder];
May 20, 2019
May 20, 2019
375
showingKeyboard = NO;
376
377
378
379
380
381
382
383
384
385
386
387
}
}
/* hide onscreen virtual keyboard */
- (void)hideKeyboard
{
keyboardVisible = NO;
[textField resignFirstResponder];
}
- (void)keyboardWillShow:(NSNotification *)notification
{
Sep 14, 2016
Sep 14, 2016
388
#if !TARGET_OS_TV
Sep 14, 2017
Sep 14, 2017
389
CGRect kbrect = [[notification userInfo][UIKeyboardFrameEndUserInfoKey] CGRectValue];
390
391
392
393
394
395
/* The keyboard rect is in the coordinate space of the screen/window, but we
* want its height in the coordinate space of the view. */
kbrect = [self.view convertRect:kbrect fromView:nil];
[self setKeyboardHeight:(int)kbrect.size.height];
Sep 14, 2016
Sep 14, 2016
396
#endif
397
398
399
400
}
- (void)keyboardWillHide:(NSNotification *)notification
{
May 20, 2019
May 20, 2019
401
if (!showingKeyboard && !rotatingOrientation) {
Dec 2, 2016
Dec 2, 2016
402
SDL_StopTextInput();
Aug 19, 2017
Aug 19, 2017
403
}
404
405
406
[self setKeyboardHeight:0];
}
Sep 11, 2018
Sep 11, 2018
407
408
409
410
411
412
- (void)textFieldTextDidChange:(NSNotification *)notification
{
if (changeText!=nil && textField.markedTextRange == nil)
{
NSUInteger len = changeText.length;
if (len > 0) {
Apr 9, 2020
Apr 9, 2020
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
if (!SDL_HardwareKeyboardKeyPressed()) {
/* Go through all the characters in the string we've been sent and
* convert them to key presses */
int i;
for (i = 0; i < len; i++) {
unichar c = [changeText characterAtIndex:i];
SDL_Scancode code;
Uint16 mod;
if (c < 127) {
/* Figure out the SDL_Scancode and SDL_keymod for this unichar */
code = unicharToUIKeyInfoTable[c].code;
mod = unicharToUIKeyInfoTable[c].mod;
} else {
/* We only deal with ASCII right now */
code = SDL_SCANCODE_UNKNOWN;
mod = 0;
}
if (mod & KMOD_SHIFT) {
/* If character uses shift, press shift down */
SDL_SendKeyboardKey(SDL_PRESSED, SDL_SCANCODE_LSHIFT);
}
/* send a keydown and keyup even for the character */
SDL_SendKeyboardKey(SDL_PRESSED, code);
SDL_SendKeyboardKey(SDL_RELEASED, code);
if (mod & KMOD_SHIFT) {
/* If character uses shift, press shift back up */
SDL_SendKeyboardKey(SDL_RELEASED, SDL_SCANCODE_LSHIFT);
}
Sep 11, 2018
Sep 11, 2018
445
446
447
448
449
450
451
452
}
}
SDL_SendKeyboardText([changeText UTF8String]);
}
changeText = nil;
}
}
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
- (void)updateKeyboard
{
CGAffineTransform t = self.view.transform;
CGPoint offset = CGPointMake(0.0, 0.0);
CGRect frame = UIKit_ComputeViewFrame(window, self.view.window.screen);
if (self.keyboardHeight) {
int rectbottom = self.textInputRect.y + self.textInputRect.h;
int keybottom = self.view.bounds.size.height - self.keyboardHeight;
if (keybottom < rectbottom) {
offset.y = keybottom - rectbottom;
}
}
/* Apply this view's transform (except any translation) to the offset, in
* order to orient it correctly relative to the frame's coordinate space. */
t.tx = 0.0;
t.ty = 0.0;
offset = CGPointApplyAffineTransform(offset, t);
/* Apply the updated offset to the view's frame. */
frame.origin.x += offset.x;
frame.origin.y += offset.y;
self.view.frame = frame;
}
- (void)setKeyboardHeight:(int)height
{
keyboardVisible = height > 0;
keyboardHeight = height;
[self updateKeyboard];
}
/* UITextFieldDelegate method. Invoked when user types something. */
- (BOOL)textField:(UITextField *)_textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
NSUInteger len = string.length;
if (len == 0) {
Sep 11, 2018
Sep 11, 2018
492
493
494
changeText = nil;
if (textField.markedTextRange == nil) {
/* it wants to replace text with nothing, ie a delete */
Apr 9, 2020
Apr 9, 2020
495
SDL_SendKeyboardKeyAutoRelease(SDL_SCANCODE_BACKSPACE);
Sep 11, 2018
Sep 11, 2018
497
498
499
500
501
if (textField.text.length < 16) {
textField.text = obligateForBackspace;
}
} else {
changeText = string;
Sep 11, 2018
Sep 11, 2018
503
return YES;
504
505
506
507
508
}
/* Terminates the editing session */
- (BOOL)textFieldShouldReturn:(UITextField*)_textField
{
Apr 9, 2020
Apr 9, 2020
509
SDL_SendKeyboardKeyAutoRelease(SDL_SCANCODE_RETURN);
May 23, 2019
May 23, 2019
510
511
if (keyboardVisible &&
SDL_GetHintBoolean(SDL_HINT_RETURN_KEY_HIDES_IME, SDL_FALSE)) {
Dec 19, 2017
Dec 19, 2017
512
513
SDL_StopTextInput();
}
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
return YES;
}
#endif
@end
/* iPhone keyboard addition functions */
#if SDL_IPHONE_KEYBOARD
static SDL_uikitviewcontroller *
GetWindowViewController(SDL_Window * window)
{
if (!window || !window->driverdata) {
SDL_SetError("Invalid window");
return nil;
}
SDL_WindowData *data = (__bridge SDL_WindowData *)window->driverdata;
return data.viewcontroller;
}
SDL_bool
UIKit_HasScreenKeyboardSupport(_THIS)
{
return SDL_TRUE;
}
void
UIKit_ShowScreenKeyboard(_THIS, SDL_Window *window)
{
@autoreleasepool {
SDL_uikitviewcontroller *vc = GetWindowViewController(window);
[vc showKeyboard];
}
}
void
UIKit_HideScreenKeyboard(_THIS, SDL_Window *window)
{
@autoreleasepool {
SDL_uikitviewcontroller *vc = GetWindowViewController(window);
[vc hideKeyboard];
}
}
SDL_bool
UIKit_IsScreenKeyboardShown(_THIS, SDL_Window *window)
{
@autoreleasepool {
SDL_uikitviewcontroller *vc = GetWindowViewController(window);
if (vc != nil) {
Sep 11, 2018
Sep 11, 2018
567
return vc.keyboardVisible;
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
}
return SDL_FALSE;
}
}
void
UIKit_SetTextInputRect(_THIS, SDL_Rect *rect)
{
if (!rect) {
SDL_InvalidParamError("rect");
return;
}
@autoreleasepool {
SDL_uikitviewcontroller *vc = GetWindowViewController(SDL_GetFocusWindow());
if (vc != nil) {
vc.textInputRect = *rect;
if (vc.keyboardVisible) {
[vc updateKeyboard];
}
}
}
}
#endif /* SDL_IPHONE_KEYBOARD */
#endif /* SDL_VIDEO_DRIVER_UIKIT */
/* vi: set ts=4 sw=4 expandtab: */