]> git.saurik.com Git - cydia.git/blame - UICaboodle/BrowserView.h
Timeouts, update cancel, update /bar/, webkit stability, url throttling.
[cydia.git] / UICaboodle / BrowserView.h
CommitLineData
ab398adf
JF
1#import "ResetView.h"
2
3@class NSMutableArray;
4@class NSString;
5@class NSURL;
6@class NSURLRequest;
7
8@class UIProgressIndicator;
9@class UIScroller;
10@class UIWebView;
11
a9543575
JF
12@class WebView;
13
ab398adf
JF
14@class Database;
15
16@interface BrowserView : RVPage {
17 _transient Database *database_;
18 UIScroller *scroller_;
19 UIWebView *webview_;
20 NSMutableArray *urls_;
21 UIProgressIndicator *indicator_;
22
23 NSString *title_;
24 bool loading_;
25 bool reloading_;
a0376fc1
JF
26
27 bool pushed_;
ab398adf
JF
28}
29
30- (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
31- (void) loadURL:(NSURL *)url;
32
33- (void) loadRequest:(NSURLRequest *)request;
34- (void) reloadURL;
35
36- (WebView *) webView;
37
38- (id) initWithBook:(RVBook *)book database:(Database *)database;
39
7d2ac47f
JF
40- (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
41
ab398adf 42@end