mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-13 00:18:13 -05:00
75 lines
1.8 KiB
Objective-C
75 lines
1.8 KiB
Objective-C
//
|
|
|
|
//
|
|
//
|
|
// Created by Jesse MacFadyen on 10-05-29.
|
|
// Copyright 2010 Nitobi. All rights reserved.
|
|
//
|
|
|
|
#import "ChildBrowserCommand.h"
|
|
|
|
#import "PhoneGapViewController.h"
|
|
|
|
@implementation ChildBrowserCommand
|
|
|
|
@synthesize childBrowser;
|
|
|
|
- (void) showWebPage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options // args: url
|
|
{
|
|
if(childBrowser == NULL)
|
|
{
|
|
childBrowser = [[ ChildBrowserViewController alloc ] initWithScale:FALSE ];
|
|
childBrowser.delegate = self;
|
|
}
|
|
|
|
/* // TODO: Work in progress
|
|
NSString* strOrientations = [ options objectForKey:@"supportedOrientations"];
|
|
NSArray* supportedOrientations = [strOrientations componentsSeparatedByString:@","];
|
|
*/
|
|
|
|
PhoneGapViewController* cont = (PhoneGapViewController*)[ super appViewController ];
|
|
childBrowser.supportedOrientations = cont.supportedOrientations;
|
|
[ cont presentModalViewController:childBrowser animated:YES ];
|
|
|
|
NSString *url = (NSString*) [arguments objectAtIndex:0];
|
|
|
|
|
|
[childBrowser loadURL:url ];
|
|
|
|
}
|
|
|
|
-(void) close:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options // args: url
|
|
{
|
|
[ childBrowser closeBrowser];
|
|
|
|
}
|
|
|
|
-(void) onClose
|
|
{
|
|
NSString* jsCallback = [NSString stringWithFormat:@"ChildBrowser._onClose();",@""];
|
|
[ webView stringByEvaluatingJavaScriptFromString:jsCallback];
|
|
}
|
|
|
|
-(void) onOpenInSafari
|
|
{
|
|
NSString* jsCallback = [NSString stringWithFormat:@"ChildBrowser._onOpenExternal();",@""];
|
|
[ webView stringByEvaluatingJavaScriptFromString:jsCallback];
|
|
}
|
|
|
|
|
|
-(void) onChildLocationChange:(NSString*)newLoc
|
|
{
|
|
|
|
NSString* tempLoc = [NSString stringWithFormat:@"%@",newLoc];
|
|
NSString* encUrl = [tempLoc stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
|
|
|
|
NSString* jsCallback = [NSString stringWithFormat:@"ChildBrowser._onLocationChange('%@');",encUrl];
|
|
[ webView stringByEvaluatingJavaScriptFromString:jsCallback];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|