X-Git-Url: https://git.saurik.com/cydia.git/blobdiff_plain/20b8724d290791e2a939c3baa3d5657eb3f8ebb1..ec32cb10c89eddba7bd8ed868c2ecf2d8c5d8ab7:/UICaboodle/BrowserView.h diff --git a/UICaboodle/BrowserView.h b/UICaboodle/BrowserView.h index 7a227d0b..0c4cbb04 100644 --- a/UICaboodle/BrowserView.h +++ b/UICaboodle/BrowserView.h @@ -15,20 +15,27 @@ @class IndirectDelegate; @interface BrowserView : RVPage { - _transient Database *database_; UIScroller *scroller_; UIWebDocumentView *webview_; NSMutableArray *urls_; UIProgressIndicator *indicator_; IndirectDelegate *indirect_; + NSURLAuthenticationChallenge *challenge_; + NSNumber *confirm_; NSString *title_; bool loading_; bool reloading_; + NSString *button_; + NSString *style_; + WebScriptObject *function_; + bool pushed_; } +- (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button; + - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy; - (void) loadURL:(NSURL *)url; @@ -37,8 +44,9 @@ - (WebView *) webView; -- (id) initWithBook:(RVBook *)book database:(Database *)database; +- (id) initWithBook:(RVBook *)book; - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame; +- (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame; @end