forked from hiediutley/HelloPhoneGap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNativeControls.m
More file actions
503 lines (397 loc) · 16.6 KB
/
Copy pathNativeControls.m
File metadata and controls
503 lines (397 loc) · 16.6 KB
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
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
445
446
447
448
449
450
451
452
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
492
493
494
495
496
497
498
499
500
501
502
503
//
// NativeControls.h
//
//
// Created by Jesse MacFadyen on 10-02-03.
// MIT Licensed
// Originally this code was developed my Michael Nachbaur
// Formerly -> PhoneGap :: UIControls.h
// Created by Michael Nachbaur on 13/04/09.
// Copyright 2009 Decaf Ninja Software. All rights reserved.
#import "NativeControls.h"
#import <QuartzCore/QuartzCore.h>
@implementation NativeControls
#ifndef __IPHONE_3_0
@synthesize webView;
#endif
-(PhoneGapCommand*) initWithWebView:(UIWebView*)theWebView
{
self = (NativeControls*)[super initWithWebView:theWebView];
if (self)
{
tabBarItems = [[NSMutableDictionary alloc] initWithCapacity:5];
originalWebViewBounds = theWebView.bounds;
}
return self;
}
- (void)dealloc
{
if (tabBar)
[tabBar release];
[super dealloc];
}
#pragma mark -
#pragma mark TabBar
/**
* Create a native tab bar at either the top or the bottom of the display.
* @brief creates a tab bar
* @param arguments unused
* @param options unused
*/
- (void)createTabBar:(NSArray*)arguments withDict:(NSDictionary*)options
{
tabBar = [UITabBar new];
[tabBar sizeToFit];
tabBar.delegate = self;
tabBar.multipleTouchEnabled = NO;
tabBar.autoresizesSubviews = YES;
tabBar.hidden = YES;
tabBar.userInteractionEnabled = YES;
tabBar.opaque = YES;
webView.superview.autoresizesSubviews = YES;
[ webView.superview addSubview:tabBar];
}
/**
* Show the tab bar after its been created.
* @brief show the tab bar
* @param arguments unused
* @param options used to indicate options for where and how the tab bar should be placed
* - \c height integer indicating the height of the tab bar (default: \c 49)
* - \c position specifies whether the tab bar will be placed at the \c top or \c bottom of the screen (default: \c bottom)
*/
- (void)showTabBar:(NSArray*)arguments withDict:(NSDictionary*)options
{
if (!tabBar)
[self createTabBar:nil withDict:nil];
// if we are calling this again when its shown, reset
if (!tabBar.hidden) {
return;
}
CGFloat height = 0.0f;
BOOL atBottom = YES;
CGRect offsetRect = [ [UIApplication sharedApplication] statusBarFrame];
if (options)
{
height = [[options objectForKey:@"height"] floatValue];
atBottom = [[options objectForKey:@"position"] isEqualToString:@"bottom"];
}
if(height == 0)
{
height = 49.0f;
}
tabBar.hidden = NO;
CGRect webViewBounds = originalWebViewBounds;
CGRect tabBarBounds;
NSNotification* notif = [NSNotification notificationWithName:@"PGLayoutSubviewAdded" object:tabBar];
[[NSNotificationQueue defaultQueue] enqueueNotification:notif postingStyle: NSPostASAP];
if (atBottom)
{
tabBarBounds = CGRectMake(
webViewBounds.origin.x,
webViewBounds.origin.y + webViewBounds.size.height - height - offsetRect.size.height,
webViewBounds.size.width,
height
);
webViewBounds = CGRectMake(
webViewBounds.origin.x,
webViewBounds.origin.y,
webViewBounds.size.width,
webViewBounds.size.height - height - offsetRect.size.height
);
}
else
{
tabBarBounds = CGRectMake(
webViewBounds.origin.x,
webViewBounds.origin.y,
webViewBounds.size.width,
height
);
webViewBounds = CGRectMake(
webViewBounds.origin.x,
webViewBounds.origin.y + height,
webViewBounds.size.width,
webViewBounds.size.height - height
);
}
[tabBar setFrame:tabBarBounds];
[webView setFrame:webViewBounds];
}
/**
* Hide the tab bar
* @brief hide the tab bar
* @param arguments unused
* @param options unused
*/
- (void)hideTabBar:(NSArray*)arguments withDict:(NSDictionary*)options
{
if (!tabBar)
[self createTabBar:nil withDict:nil];
tabBar.hidden = YES;
NSNotification* notif = [NSNotification notificationWithName:@"PGLayoutSubviewRemoved" object:tabBar];
[[NSNotificationQueue defaultQueue] enqueueNotification:notif postingStyle: NSPostASAP];
[webView setFrame:originalWebViewBounds];
}
/**
* Create a new tab bar item for use on a previously created tab bar. Use ::showTabBarItems to show the new item on the tab bar.
*
* If the supplied image name is one of the labels listed below, then this method will construct a tab button
* using the standard system buttons. Note that if you use one of the system images, that the \c title you supply will be ignored.
* - <b>Tab Buttons</b>
* - tabButton:More
* - tabButton:Favorites
* - tabButton:Featured
* - tabButton:TopRated
* - tabButton:Recents
* - tabButton:Contacts
* - tabButton:History
* - tabButton:Bookmarks
* - tabButton:Search
* - tabButton:Downloads
* - tabButton:MostRecent
* - tabButton:MostViewed
* @brief create a tab bar item
* @param arguments Parameters used to create the tab bar
* -# \c name internal name to refer to this tab by
* -# \c title title text to show on the tab, or null if no text should be shown
* -# \c image image filename or internal identifier to show, or null if now image should be shown
* -# \c tag unique number to be used as an internal reference to this button
* @param options Options for customizing the individual tab item
* - \c badge value to display in the optional circular badge on the item; if nil or unspecified, the badge will be hidden
*/
- (void)createTabBarItem:(NSArray*)arguments withDict:(NSDictionary*)options
{
if (!tabBar)
[self createTabBar:nil withDict:nil];
NSString *name = [arguments objectAtIndex:0];
NSString *title = [arguments objectAtIndex:1];
NSString *imageName = [arguments objectAtIndex:2];
int tag = [[arguments objectAtIndex:3] intValue];
UITabBarItem *item = nil;
if ([imageName length] > 0) {
UIBarButtonSystemItem systemItem = -1;
if ([imageName isEqualToString:@"tabButton:More"]) systemItem = UITabBarSystemItemMore;
if ([imageName isEqualToString:@"tabButton:Favorites"]) systemItem = UITabBarSystemItemFavorites;
if ([imageName isEqualToString:@"tabButton:Featured"]) systemItem = UITabBarSystemItemFeatured;
if ([imageName isEqualToString:@"tabButton:TopRated"]) systemItem = UITabBarSystemItemTopRated;
if ([imageName isEqualToString:@"tabButton:Recents"]) systemItem = UITabBarSystemItemRecents;
if ([imageName isEqualToString:@"tabButton:Contacts"]) systemItem = UITabBarSystemItemContacts;
if ([imageName isEqualToString:@"tabButton:History"]) systemItem = UITabBarSystemItemHistory;
if ([imageName isEqualToString:@"tabButton:Bookmarks"]) systemItem = UITabBarSystemItemBookmarks;
if ([imageName isEqualToString:@"tabButton:Search"]) systemItem = UITabBarSystemItemSearch;
if ([imageName isEqualToString:@"tabButton:Downloads"]) systemItem = UITabBarSystemItemDownloads;
if ([imageName isEqualToString:@"tabButton:MostRecent"]) systemItem = UITabBarSystemItemMostRecent;
if ([imageName isEqualToString:@"tabButton:MostViewed"]) systemItem = UITabBarSystemItemMostViewed;
if (systemItem != -1)
item = [[UITabBarItem alloc] initWithTabBarSystemItem:systemItem tag:tag];
}
if (item == nil) {
NSLog(@"Creating with custom image and title");
item = [[UITabBarItem alloc] initWithTitle:title image:[UIImage imageNamed:imageName] tag:tag];
}
if ([options objectForKey:@"badge"])
item.badgeValue = [options objectForKey:@"badge"];
[tabBarItems setObject:item forKey:name];
[item release];
}
/**
* Update an existing tab bar item to change its badge value.
* @brief update the badge value on an existing tab bar item
* @param arguments Parameters used to identify the tab bar item to update
* -# \c name internal name used to represent this item when it was created
* @param options Options for customizing the individual tab item
* - \c badge value to display in the optional circular badge on the item; if nil or unspecified, the badge will be hidden
*/
- (void)updateTabBarItem:(NSArray*)arguments withDict:(NSDictionary*)options
{
if (!tabBar)
[self createTabBar:nil withDict:nil];
NSString *name = [arguments objectAtIndex:0];
UITabBarItem *item = [tabBarItems objectForKey:name];
if (item)
item.badgeValue = [options objectForKey:@"badge"];
}
/**
* Show previously created items on the tab bar
* @brief show a list of tab bar items
* @param arguments the item names to be shown
* @param options dictionary of options, notable options including:
* - \c animate indicates that the items should animate onto the tab bar
* @see createTabBarItem
* @see createTabBar
*/
- (void)showTabBarItems:(NSArray*)arguments withDict:(NSDictionary*)options
{
if (!tabBar)
[self createTabBar:nil withDict:nil];
int i, count = [arguments count];
NSMutableArray *items = [[NSMutableArray alloc] initWithCapacity:count];
for (i = 0; i < count; i++) {
NSString *itemName = [arguments objectAtIndex:i];
UITabBarItem *item = [tabBarItems objectForKey:itemName];
if (item)
[items addObject:item];
}
BOOL animateItems = YES;
if ([options objectForKey:@"animate"])
animateItems = [(NSString*)[options objectForKey:@"animate"] boolValue];
[tabBar setItems:items animated:animateItems];
[items release];
}
/**
* Manually select an individual tab bar item, or nil for deselecting a currently selected tab bar item.
* @brief manually select a tab bar item
* @param arguments the name of the tab bar item to select
* @see createTabBarItem
* @see showTabBarItems
*/
- (void)selectTabBarItem:(NSArray*)arguments withDict:(NSDictionary*)options
{
if (!tabBar)
[self createTabBar:nil withDict:nil];
NSString *itemName = [arguments objectAtIndex:0];
UITabBarItem *item = [tabBarItems objectForKey:itemName];
if (item)
tabBar.selectedItem = item;
else
tabBar.selectedItem = nil;
}
- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item
{
NSString * jsCallBack = [NSString stringWithFormat:@"window.plugins.nativeControls.tabBarItemSelected(%d);", item.tag];
[webView stringByEvaluatingJavaScriptFromString:jsCallBack];
}
#pragma mark -
#pragma mark ToolBar
/*********************************************************************************/
- (void)createToolBar:(NSArray*)arguments withDict:(NSDictionary*)options
{
CGFloat height = 45.0f;
BOOL atTop = YES;
UIBarStyle style = UIBarStyleBlackOpaque;
NSDictionary* toolBarSettings = options;//[settings objectForKey:@"ToolBarSettings"];
if (toolBarSettings)
{
if ([toolBarSettings objectForKey:@"height"])
height = [[toolBarSettings objectForKey:@"height"] floatValue];
if ([toolBarSettings objectForKey:@"position"])
atTop = [[toolBarSettings objectForKey:@"position"] isEqualToString:@"top"];
#pragma unused(atTop)
NSString *styleStr = [toolBarSettings objectForKey:@"style"];
if ([styleStr isEqualToString:@"Default"])
style = UIBarStyleDefault;
else if ([styleStr isEqualToString:@"BlackOpaque"])
style = UIBarStyleBlackOpaque;
else if ([styleStr isEqualToString:@"BlackTranslucent"])
style = UIBarStyleBlackTranslucent;
}
CGRect webViewBounds = webView.bounds;
CGRect toolBarBounds = CGRectMake(
webViewBounds.origin.x,
webViewBounds.origin.y,
webViewBounds.size.width,
height
);
webViewBounds = CGRectMake(
webViewBounds.origin.x,
webViewBounds.origin.y + height,
webViewBounds.size.width,
webViewBounds.size.height - height
);
toolBar = [[UIToolbar alloc] initWithFrame:toolBarBounds];
[toolBar sizeToFit];
toolBar.hidden = NO;
toolBar.multipleTouchEnabled = NO;
toolBar.autoresizesSubviews = YES;
toolBar.userInteractionEnabled = YES;
toolBar.barStyle = style;
[toolBar setFrame:toolBarBounds];
[webView setFrame:webViewBounds];
[self.webView.superview addSubview:toolBar];
}
- (void)setToolBarTitle:(NSArray*)arguments withDict:(NSDictionary*)options
{
if (!toolBar)
[self createToolBar:nil withDict:nil];
NSString *title = [arguments objectAtIndex:0];
if (!toolBarTitle) {
toolBarTitle = [[UIBarButtonItem alloc] initWithTitle:title style:UIBarButtonItemStylePlain target:self action:@selector(toolBarTitleClicked)];
} else {
//toolBarTitle.title = title;
}
//UINavigationBar
//initWithImage
UIImage* logoImage = [UIImage imageNamed:@"www/ui/tabHeader.png"];
/*UIImageView* logo = [[ UIImageView alloc ] initWithImage: logoImage ];
logo.userInteractionEnabled = YES;*/
UIButton* logoBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[ logoBtn setBackgroundImage:logoImage forState:UIControlStateNormal];
[ logoBtn addTarget:self action:@selector(toolBarTitleClicked) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *modalBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:logoBtn];
UIImageView* backImage = [[ UIImageView alloc ] initWithImage:[UIImage imageNamed:@"www/ui/but-back.png"]];
UIBarButtonItem *backButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(toolBarTitleClicked)];
[ backButtonItem setCustomView:backImage];
// backButtonItem.target = self;
// backButtonItem.action = @selector(toolBarTitleClicked);
/*[ backButtonItem addTarget:self action:@selector(toolBarTitleClicked) forControlEvents:UIControlEventTouchUpInside];*/
//UIBarButtonItem* item = [[UIBarButtonItem alloc] initWithImage: style:UIBarButtonItemStylePlain target:self action:@selector(toolBarTitleClicked)];
UIBarButtonItem *space1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
UIBarButtonItem *space2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
UIBarButtonItem *refresh = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:nil];
//refresh.target = self;
//refresh.action = @selector(toolBarTitleClicked);
//refresh.customView = backImage;
NSArray *items = [[NSArray alloc] initWithObjects:backButtonItem,space1,modalBarButtonItem,space2, refresh, nil];
//UINavigationItem* navItem = [[UINavigationItem alloc] init];
//navItem.titleView = logo;
[toolBar setItems:items animated:YES];
modalBarButtonItem.target = self;
modalBarButtonItem.action = @selector(toolBarTitleClicked);
[modalBarButtonItem release];
[backButtonItem release];
[space1 release];
[space2 release];
[ refresh release ];
[ backImage release ];
//[ toolBar pushNavigationItem:navItem animated:YES];
[items release];
}
- (void)toolBarTitleClicked
{
NSLog(@"Toolbar clicked");
}
#pragma mark -
#pragma mark ActionSheet
- (void)createActionSheet:(NSArray*)arguments withDict:(NSDictionary*)options
{
NSString* title = [options objectForKey:@"title"];
UIActionSheet* actionSheet = [ [UIActionSheet alloc ]
initWithTitle:title
delegate:self
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:nil
];
int count = [arguments count];
for(int n = 0; n < count; n++)
{
[ actionSheet addButtonWithTitle:[arguments objectAtIndex:n]];
}
if([options objectForKey:@"cancelButtonIndex"])
{
actionSheet.cancelButtonIndex = [[options objectForKey:@"cancelButtonIndex"] intValue];
}
if([options objectForKey:@"destructiveButtonIndex"])
{
actionSheet.destructiveButtonIndex = [[options objectForKey:@"destructiveButtonIndex"] intValue];
}
actionSheet.actionSheetStyle = UIActionSheetStyleBlackTranslucent;//UIActionSheetStyleBlackOpaque;
[actionSheet showInView:webView.superview];
[actionSheet release];
}
- (void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex
{
NSString * jsCallBack = [NSString stringWithFormat:@"window.plugins.nativeControls._onActionSheetDismissed(%d);", buttonIndex];
[webView stringByEvaluatingJavaScriptFromString:jsCallBack];
}
@end