]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
Slightly better semantics.
[cydia.git] / UICaboodle / BrowserView.h
index 7c6cc505515db37e31907749c60961fb942b11e7..0c4cbb04a02f9fbce547edd7b33e853278497a84 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_;
+    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;
 
@@ -35,6 +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