]> git.saurik.com Git - cydia.git/blobdiff - UICaboodle/BrowserView.h
Secure text entry.
[cydia.git] / UICaboodle / BrowserView.h
index 7c6cc505515db37e31907749c60961fb942b11e7..5be825cc5daca81d1b4cbea0e7aab9031b38ec61 100644 (file)
@@ -7,18 +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_;
+    NSURLAuthenticationChallenge *challenge_;
 
     NSString *title_;
     bool loading_;
@@ -27,6 +29,8 @@
     bool pushed_;
 }
 
+- (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button;
+
 - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
 - (void) loadURL:(NSURL *)url;
 
@@ -35,6 +39,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