[super dealloc];
}
+- (NSString *) description {
+ return [NSString stringWithFormat:@"<%s: %p, %@>", class_getName([self class]), self, [[request_ URL] absoluteString]];
+}
+
+- (CyteWebView *) webView {
+ return (CyteWebView *) [self view];
+}
+
- (NSURL *) URLWithURL:(NSURL *)url {
return url;
}
ready_ = true;
WebThreadLocked lock;
- [webview_ loadRequest:request];
+ [[self webView] loadRequest:request];
}
- (void) reloadURLWithCache:(BOOL)cache {
}
- (void) _setViewportWidth {
- [[webview_ _documentView] setViewportSize:CGSizeMake(width_, UIWebViewGrowsAndShrinksToFitHeight) forDocumentTypes:0x10];
+ [[[self webView] _documentView] setViewportSize:CGSizeMake(width_, UIWebViewGrowsAndShrinksToFitHeight) forDocumentTypes:0x10];
}
- (void) setViewportWidth:(float)width {
[self dismissModalViewControllerAnimated:YES];
}
+- (void) _setupMail:(MFMailComposeViewController *)controller {
+}
+
- (void) _openMailToURL:(NSURL *)url {
if ($MFMailComposeViewController != nil && [$MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *controller([[[$MFMailComposeViewController alloc] init] autorelease]);
[controller setMailToURL:url];
+ [self _setupMail:controller];
+
[self presentModalViewController:controller animated:YES];
return;
}
action:@selector(close)
] autorelease]];
- [delegate_ unloadData];
-
[[self navigationController] presentModalViewController:navigation animated:YES];
}
}
} else if (button == [alert firstOtherButtonIndex]) {
if (request_ != nil) {
WebThreadLocked lock;
- [webview_ loadRequest:request_];
+ [[self webView] loadRequest:request_];
}
}
else if (button == (UIBarButtonItem *) [NSNull null])
button = nil;
- [[self navigationItem] setRightBarButtonItem:button];
+ [[self navigationItem] setRightBarButtonItem:button animated:YES];
}
}
- (id) initWithWidth:(float)width ofClass:(Class)_class {
if ((self = [super init]) != nil) {
+ width_ = width;
+ class_ = _class;
+
allowsNavigationAction_ = true;
- class_ = _class;
loading_ = [NSMutableSet setWithCapacity:5];
-
indirect_ = [[[IndirectDelegate alloc] initWithDelegate:self] autorelease];
- CGRect bounds([[self view] bounds]);
+ reloaditem_ = [[[UIBarButtonItem alloc]
+ initWithTitle:UCLocalize("RELOAD")
+ style:[self rightButtonStyle]
+ target:self
+ action:@selector(reloadButtonClicked)
+ ] autorelease];
- webview_ = [[[CyteWebView alloc] initWithFrame:bounds] autorelease];
- [webview_ setDelegate:self];
- [self setView:webview_];
+ loadingitem_ = [[[UIBarButtonItem alloc]
+ initWithTitle:@" "
+ style:UIBarButtonItemStylePlain
+ target:self
+ action:@selector(reloadButtonClicked)
+ ] autorelease];
- if ([webview_ respondsToSelector:@selector(setDataDetectorTypes:)])
- [webview_ setDataDetectorTypes:UIDataDetectorTypeAutomatic];
- else
- [webview_ setDetectsPhoneNumbers:NO];
+ indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite] autorelease];
+ [indicator_ setFrame:CGRectMake(15, 5, [indicator_ frame].size.width, [indicator_ frame].size.height)];
+ [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
- [webview_ setScalesPageToFit:YES];
+ [self applyLeftButton];
+ [self applyRightButton];
+ } return self;
+}
- UIWebDocumentView *document([webview_ _documentView]);
+- (NSString *) applicationNameForUserAgent {
+ return nil;
+}
+
+- (void) loadView {
+ CGRect bounds([[UIScreen mainScreen] applicationFrame]);
+
+ webview_ = [[[CyteWebView alloc] initWithFrame:bounds] autorelease];
+ [webview_ setDelegate:self];
+ [self setView:webview_];
+
+ if ([webview_ respondsToSelector:@selector(setDataDetectorTypes:)])
+ [webview_ setDataDetectorTypes:UIDataDetectorTypeAutomatic];
+ else
+ [webview_ setDetectsPhoneNumbers:NO];
+
+ [webview_ setScalesPageToFit:YES];
+
+ UIWebDocumentView *document([webview_ _documentView]);
- // XXX: I think this improves scrolling; the hardcoded-ness sucks
- [document setTileSize:CGSizeMake(320, 500)];
+ // XXX: I think this improves scrolling; the hardcoded-ness sucks
+ [document setTileSize:CGSizeMake(320, 500)];
- [document setBackgroundColor:[UIColor clearColor]];
+ [document setBackgroundColor:[UIColor clearColor]];
- // XXX: this is terribly (too?) expensive
- [document setDrawsBackground:NO];
+ // XXX: this is terribly (too?) expensive
+ [document setDrawsBackground:NO];
- WebView *webview([document webView]);
- WebPreferences *preferences([webview preferences]);
+ WebView *webview([document webView]);
+ WebPreferences *preferences([webview preferences]);
- // XXX: I have no clue if I actually /want/ this modification
- if ([webview respondsToSelector:@selector(_setLayoutInterval:)])
- [webview _setLayoutInterval:0];
- else if ([preferences respondsToSelector:@selector(_setLayoutInterval:)])
- [preferences _setLayoutInterval:0];
+ // XXX: I have no clue if I actually /want/ this modification
+ if ([webview respondsToSelector:@selector(_setLayoutInterval:)])
+ [webview _setLayoutInterval:0];
+ else if ([preferences respondsToSelector:@selector(_setLayoutInterval:)])
+ [preferences _setLayoutInterval:0];
- [preferences setCacheModel:WebCacheModelDocumentBrowser];
- [preferences setJavaScriptCanOpenWindowsAutomatically:YES];
- [preferences setOfflineWebApplicationCacheEnabled:YES];
+ [preferences setCacheModel:WebCacheModelDocumentBrowser];
+ [preferences setJavaScriptCanOpenWindowsAutomatically:YES];
+ [preferences setOfflineWebApplicationCacheEnabled:YES];
- if ([webview respondsToSelector:@selector(setShouldUpdateWhileOffscreen:)])
- [webview setShouldUpdateWhileOffscreen:NO];
+ if (NSString *agent = [self applicationNameForUserAgent])
+ [webview setApplicationNameForUserAgent:agent];
+
+ if ([webview respondsToSelector:@selector(setShouldUpdateWhileOffscreen:)])
+ [webview setShouldUpdateWhileOffscreen:NO];
#if LogMessages
- if ([document respondsToSelector:@selector(setAllowsMessaging:)])
- [document setAllowsMessaging:YES];
- if ([webview respondsToSelector:@selector(_setAllowsMessaging:)])
- [webview _setAllowsMessaging:YES];
+ if ([document respondsToSelector:@selector(setAllowsMessaging:)])
+ [document setAllowsMessaging:YES];
+ if ([webview respondsToSelector:@selector(_setAllowsMessaging:)])
+ [webview _setAllowsMessaging:YES];
#endif
- if ([webview_ respondsToSelector:@selector(_scrollView)]) {
- scroller_ = [webview_ _scrollView];
+ if ([webview_ respondsToSelector:@selector(_scrollView)]) {
+ scroller_ = [webview_ _scrollView];
- [scroller_ setDirectionalLockEnabled:YES];
- [scroller_ setDecelerationRate:CYScrollViewDecelerationRateNormal];
- [scroller_ setDelaysContentTouches:NO];
+ [scroller_ setDirectionalLockEnabled:YES];
+ [scroller_ setDecelerationRate:CYScrollViewDecelerationRateNormal];
+ [scroller_ setDelaysContentTouches:NO];
- [scroller_ setCanCancelContentTouches:YES];
- } else if ([webview_ respondsToSelector:@selector(_scroller)]) {
- UIScroller *scroller([webview_ _scroller]);
- scroller_ = (UIScrollView *) scroller;
+ [scroller_ setCanCancelContentTouches:YES];
+ } else if ([webview_ respondsToSelector:@selector(_scroller)]) {
+ UIScroller *scroller([webview_ _scroller]);
+ scroller_ = (UIScrollView *) scroller;
- [scroller setDirectionalScrolling:YES];
- // XXX: we might be better off /not/ setting this on older systems
- [scroller setScrollDecelerationFactor:CYScrollViewDecelerationRateNormal]; /* 0.989324 */
- [scroller setScrollHysteresis:0]; /* 8 */
+ [scroller setDirectionalScrolling:YES];
+ // XXX: we might be better off /not/ setting this on older systems
+ [scroller setScrollDecelerationFactor:CYScrollViewDecelerationRateNormal]; /* 0.989324 */
+ [scroller setScrollHysteresis:0]; /* 8 */
- [scroller setThumbDetectionEnabled:NO];
+ [scroller setThumbDetectionEnabled:NO];
- // use NO with UIApplicationUseLegacyEvents(YES)
- [scroller setEventMode:YES];
+ // use NO with UIApplicationUseLegacyEvents(YES)
+ [scroller setEventMode:YES];
- // XXX: this is handled by setBounces, right?
- //[scroller setAllowsRubberBanding:YES];
- }
+ // XXX: this is handled by setBounces, right?
+ //[scroller setAllowsRubberBanding:YES];
+ }
- [scroller_ setFixedBackgroundPattern:YES];
- [scroller_ setBackgroundColor:[UIColor clearColor]];
- [scroller_ setClipsSubviews:YES];
+ [scroller_ setFixedBackgroundPattern:YES];
+ [scroller_ setBackgroundColor:[UIColor clearColor]];
+ [scroller_ setClipsSubviews:YES];
- [scroller_ setBounces:YES];
- [scroller_ setScrollingEnabled:YES];
- [scroller_ setShowBackgroundShadow:NO];
+ [scroller_ setBounces:YES];
+ [scroller_ setScrollingEnabled:YES];
+ [scroller_ setShowBackgroundShadow:NO];
- [self setViewportWidth:width];
+ [self setViewportWidth:width_];
- reloaditem_ = [[[UIBarButtonItem alloc]
- initWithTitle:UCLocalize("RELOAD")
- style:[self rightButtonStyle]
- target:self
- action:@selector(reloadButtonClicked)
- ] autorelease];
+ UITableView *table([[[UITableView alloc] initWithFrame:[webview_ bounds] style:UITableViewStyleGrouped] autorelease]);
+ [webview_ insertSubview:table atIndex:0];
- loadingitem_ = [[[UIBarButtonItem alloc]
- initWithTitle:@" "
- style:UIBarButtonItemStylePlain
- target:self
- action:@selector(reloadButtonClicked)
- ] autorelease];
+ [table setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
+ [webview_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
- indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite] autorelease];
- [indicator_ setFrame:CGRectMake(15, 5, [indicator_ frame].size.width, [indicator_ frame].size.height)];
+ ready_ = false;
+}
- UITableView *table([[[UITableView alloc] initWithFrame:bounds style:UITableViewStyleGrouped] autorelease]);
- [webview_ insertSubview:table atIndex:0];
+- (void) releaseSubviews {
+ webview_ = nil;
+ scroller_ = nil;
- [self applyLeftButton];
- [self applyRightButton];
-
- [table setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
- [webview_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
- [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
- } return self;
+ [super releaseSubviews];
}
- (id) initWithWidth:(float)width {
- (void) callFunction:(WebScriptObject *)function {
WebThreadLocked lock;
- WebView *webview([[webview_ _documentView] webView]);
+ WebView *webview([[[self webView] _documentView] webView]);
WebFrame *frame([webview mainFrame]);
JSGlobalContextRef context([frame globalContext]);
}
- (void) dispatchEvent:(NSString *)event {
- [(CyteWebView *) webview_ dispatchEvent:event];
+ [[self webView] dispatchEvent:event];
}
- (bool) hidesNavigationBar {