forked from millenomi/muikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
L0Keyboard.m
416 lines (323 loc) · 10 KB
/
L0Keyboard.m
1
2
3
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
//
// L0Keyboard.m
// MuiKit
//
// Created by ∞ on 30/01/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#if TARGET_OS_IPHONE && __IPHONE_OS_VERSION_MAX_ALLOWED < 30200
#import "L0Keyboard.h"
@implementation L0Keyboard
+ sharedInstance;
{
static id me = nil; if (!me)
me = [self new];
return me;
}
- (id) init
{
self = [super init];
if (self != nil) {
observers = [NSMutableSet new];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidShow:) name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDidHide:) name:UIKeyboardDidHideNotification object:nil];
}
return self;
}
@synthesize shown, animating, bounds, center, animationStartCenter, animationDuration, animationCurve, barHeight;
- (void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
[observers release];
[super dealloc];
}
- (CGPoint) animationStartOrigin;
{
return CGPointMake(animationStartCenter.x - bounds.size.width / 2,
animationStartCenter.y - bounds.size.height / 2);
}
- (CGPoint) origin;
{
return CGPointMake(center.x - bounds.size.width / 2,
center.y - bounds.size.height / 2);
}
- (void) addObserver:(id <L0KeyboardObserver>) o;
{
[observers addObject:o];
if ([o respondsToSelector:@selector(keyboardDidAddObserver:)])
[o keyboardDidAddObserver:self];
}
- (void) removeObserver:(id <L0KeyboardObserver>) o;
{
[observers removeObject:o];
if ([o respondsToSelector:@selector(keyboardDidRemoveObserver:)])
[o keyboardDidRemoveObserver:self];
}
#define L0KeyboardDispatch(selector) \
for (id <L0KeyboardObserver> o in observers) { \
if ([o respondsToSelector:selector]) \
[o performSelector:selector withObject:self]; \
}
#define L0KeyboardSetFromUserInfoKey(variable, key, message, default) \
id variable ## Object = [[n userInfo] objectForKey:key]; \
variable = !variable ## Object? default : [variable ## Object message];
#define L0KeyboardSetVariablesFromCommonKeys() \
L0KeyboardSetFromUserInfoKey(bounds, UIKeyboardBoundsUserInfoKey, CGRectValue, CGRectZero) \
L0KeyboardSetFromUserInfoKey(center, UIKeyboardCenterEndUserInfoKey, CGPointValue, CGPointZero)
#define L0KeyboardSetVariablesFromAnimationKeys() \
L0KeyboardSetFromUserInfoKey(animationDuration, UIKeyboardAnimationDurationUserInfoKey, doubleValue, 0.0) \
L0KeyboardSetFromUserInfoKey(animationCurve, UIKeyboardAnimationCurveUserInfoKey, unsignedIntegerValue, UIViewAnimationCurveLinear) \
L0KeyboardSetFromUserInfoKey(animationStartCenter, UIKeyboardCenterBeginUserInfoKey, CGPointValue, CGPointZero)
- (void) keyboardWillShow:(NSNotification*) n;
{
L0KeyboardSetVariablesFromCommonKeys();
L0KeyboardSetVariablesFromAnimationKeys();
shown = YES;
animating = YES;
L0KeyboardDispatch(@selector(keyboardWillAppear:));
}
- (void) keyboardWillHide:(NSNotification*) n;
{
L0KeyboardSetVariablesFromCommonKeys();
L0KeyboardSetVariablesFromAnimationKeys();
shown = NO;
animating = YES;
L0KeyboardDispatch(@selector(keyboardWillDisappear:));
}
- (void) keyboardDidShow:(NSNotification*) n;
{
L0KeyboardSetVariablesFromCommonKeys();
shown = YES;
animating = NO;
L0KeyboardDispatch(@selector(keyboardDidAppear:));
}
- (void) keyboardDidHide:(NSNotification*) n;
{
L0KeyboardSetVariablesFromCommonKeys();
shown = NO;
animating = NO;
L0KeyboardDispatch(@selector(keyboardDidDisappear:));
}
- (CGRect) resizedFrameOfViewToPreventCovering:(UIView*) v originalFrame:(CGRect) original;
{
if (!self.shown || !self.animating)
return original;
NSAssert(v.superview, @"To calculate the intersection between a view and the keyboard, the view MUST be in a view hierarchy (added to a superview)!");
CGRect frame = self.bounds;
frame.origin = self.origin;
frame.origin.y -= barHeight;
frame.size.height += barHeight;
CGRect adjustedFrame = [v.superview convertRect:frame fromView:nil];
CGRect r = CGRectIntersection(adjustedFrame, original);
if (!CGRectIsEmpty(r))
original.size.height -= r.size.height;
return original;
}
- (void) resizeViewToPreventCovering:(UIView*) v originalFrame:(CGRect) original animated:(BOOL) ani;
{
CGRect newFrame = [self resizedFrameOfViewToPreventCovering:v originalFrame:original];
if (CGRectEqualToRect(v.frame, newFrame))
return;
if (ani)
[self beginViewAnimationsAlongsideKeyboard:nil context:NULL];
v.frame = newFrame;
if (ani)
[UIView commitAnimations];
}
- (void) beginViewAnimationsAlongsideKeyboard:(NSString*) name context:(void*) context;
{
[UIView beginAnimations:nil context:NULL];
if (self.animating) {
[UIView setAnimationDuration:self.animationDuration];
[UIView setAnimationCurve:self.animationCurve];
[UIView setAnimationBeginsFromCurrentState:YES];
}
}
- (void) setBarHeight:(CGFloat) f;
{
if (f != barHeight) {
barHeight = f;
L0KeyboardDispatch(@selector(keyboardDidChangeBarHeight:));
}
}
@end
@implementation L0KeyboardRubberBand
@synthesize originalFrame, view, animated;
- (void) dealloc
{
[view release];
[super dealloc];
}
- (void) keyboardWillAppear:(L0Keyboard *)k;
{
if (animated && self.view.superview)
[k resizeViewToPreventCovering:self.view originalFrame:self.originalFrame animated:YES];
}
- (void) keyboardDidAppear:(L0Keyboard *)k;
{
if (!animated && self.view.superview)
[k resizeViewToPreventCovering:self.view originalFrame:self.originalFrame animated:NO];
}
- (void) keyboardWillDisappear:(L0Keyboard*) k;
{
if (self.view.superview)
[k resizeViewToPreventCovering:self.view originalFrame:self.originalFrame animated:self.animated];
}
- (void) keyboardDidAddObserver:(L0Keyboard *)k;
{
if (k.shown)
[k resizeViewToPreventCovering:self.view originalFrame:self.originalFrame animated:self.animated];
}
- (void) keyboardDidChangeBarHeight:(L0Keyboard *)k;
{
if (k.shown)
[k resizeViewToPreventCovering:self.view originalFrame:self.originalFrame animated:self.animated];
}
+ keyboardRubberBandForView:(UIView*) v;
{
return [self keyboardRubberBandForView:v originalFrame:v.frame];
}
+ keyboardRubberBandForView:(UIView*) v originalFrame:(CGRect) f;
{
L0KeyboardRubberBand* me = [[self new] autorelease];
me.view = v;
me.originalFrame = f;
me.animated = YES;
return me;
}
@end
@implementation L0KeyboardBarController
@synthesize view, inputResponder, window, overlapsContent;
- (void) dealloc
{
[view release];
[window release];
[super dealloc];
}
- (void) setView:(UIView*) v;
{
if (v != view) {
[view release];
view = [v retain];
[self updateBarHeight];
}
}
- (void) setViewHeight:(CGFloat) h;
{
CGRect frame = self.view.frame;
frame.size.height = h;
self.view.frame = frame;
[self updateBarHeight];
}
- (void) setOverlapsContent:(BOOL) c;
{
overlapsContent = c;
[self updateBarHeight];
}
- (void) updateBarHeight;
{
if (!active)
return;
L0Keyboard* k = [L0Keyboard sharedInstance];
CGRect r = self.view.frame;
CGFloat oldHeight = height;
height = r.size.height;
k.barHeight = overlapsContent? 0.0 : height;
if (k.shown) {
r.origin.y += oldHeight;
r.origin.y -= height;
self.view.frame = r;
}
}
- (void) keyboardDidAddObserver:(L0Keyboard *)k;
{
active = YES;
[self updateBarHeight];
}
- (void) keyboardDidRemoveObserver:(L0Keyboard *)k;
{
active = NO;
k.barHeight = 0.0;
[self.view removeFromSuperview];
}
- (void) keyboardWillAppear:(L0Keyboard *)k;
{
[self updateBarHeight];
CGRect r = self.view.frame;
r.size.width = k.bounds.size.width;
r.origin = k.animating? k.animationStartOrigin : k.origin;
self.view.frame = r;
if (!self.view.superview) {
UIWindow* w = self.window;
if (!w)
w = [[UIApplication sharedApplication] keyWindow];
BOOL aniOn = [UIView areAnimationsEnabled];
[UIView setAnimationsEnabled:NO];
[w addSubview:self.view];
[UIView setAnimationsEnabled:aniOn];
}
[self.view.superview bringSubviewToFront:self.view];
[k beginViewAnimationsAlongsideKeyboard:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:hasEverAnimated];
hasEverAnimated = YES;
r.origin = k.origin;
r.origin.y -= r.size.height;
self.view.frame = r;
[UIView commitAnimations];
}
- (void) keyboardWillDisappear:(L0Keyboard *)k;
{
[k beginViewAnimationsAlongsideKeyboard:nil context:NULL];
[self retain]; // balanced in the stop selector
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(disappearAnimation:finished:context:)];
CGRect r = self.view.frame;
r.origin = k.origin;
self.view.frame = r;
[UIView commitAnimations];
}
- (void) disappearAnimation:(NSString*) ani finished:(BOOL) fin context:(void*) none;
{
if (![L0Keyboard sharedInstance].shown && ![L0Keyboard sharedInstance].animating)
[self.view removeFromSuperview];
[self autorelease]; // balances the one in keyboardWillDisappear:
}
+ keyboardBarControllerWithView:(UIView*) v;
{
return [self keyboardBarControllerWithView:v window:nil];
}
+ keyboardBarControllerWithView:(UIView *)v window:(UIWindow *)w;
{
L0KeyboardBarController* me = [[self new] autorelease];
me.view = v;
me.window = w;
if (v.superview)
[v removeFromSuperview];
me.overlapsContent =
([v isKindOfClass:[UIToolbar class]] || [v isKindOfClass:[UINavigationBar class]] || [v isKindOfClass:[UISearchBar class]]) && [(id)v isTranslucent];
return me;
}
- (void) makeInputResponderFirst;
{
if ([self.inputResponder isFirstResponder])
return;
UIWindow* w = self.window;
if (!w)
w = [[UIApplication sharedApplication] keyWindow];
CGRect r = self.view.frame;
r.origin = CGPointMake(0, w.bounds.size.height);
self.view.frame = r;
if (self.view.superview != w) {
if (self.view.superview)
[view removeFromSuperview];
BOOL aniOn = [UIView areAnimationsEnabled];
[UIView setAnimationsEnabled:NO];
[w addSubview:self.view];
[UIView setAnimationsEnabled:aniOn];
}
[self.inputResponder becomeFirstResponder];
}
@end
#endif