]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
Rewrote the makefile.
[cydia.git] / UICaboodle / BrowserView.h
index caafaa52e665410c0f0cc3d083ce5715442ce0b0..88434a09927f243c40e6d0603eef957f5b846d7e 100644 (file)
@@ -7,26 +7,35 @@
 
 @class UIProgressIndicator;
 @class UIScroller;
-@class UIWebView;
+@class UIDocumentWebView;
 
 @class WebView;
 
 @class Database;
+@class IndirectDelegate;
 
 @interface BrowserView : RVPage {
-    _transient Database *database_;
     UIScroller *scroller_;
-    UIWebView *webview_;
-    NSMutableArray *urls_;
+    UIWebDocumentView *webview_;
     UIProgressIndicator *indicator_;
+    IndirectDelegate *indirect_;
+    NSURLAuthenticationChallenge *challenge_;
+    NSURLRequest *request_;
 
+    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;
 
@@ -35,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