]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
Massive stability and feature improvements to Cydia.
[cydia.git] / UICaboodle / BrowserView.h
index c9a1f7d7e6f91a06bfe6392958ba3e05681fdc8a..48dac915377c01dd7f95c9f07c887e7f0219d31a 100644 (file)
@@ -7,16 +7,20 @@
 
 @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_;
 
     NSString *title_;
     bool loading_;
@@ -35,4 +39,7 @@
 
 - (id) initWithBook:(RVBook *)book database:(Database *)database;
 
+- (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
+- (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
+
 @end