@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;
- (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