]> git.saurik.com Git - cydia.git/blob - UICaboodle/BrowserView.h
Porting, webkit stability.
[cydia.git] / UICaboodle / BrowserView.h
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 UIDocumentWebView;
11
12 @class WebView;
13
14 @class Database;
15 @class IndirectDelegate;
16
17 @interface BrowserView : RVPage {
18 _transient Database *database_;
19 UIScroller *scroller_;
20 UIWebDocumentView *webview_;
21 NSMutableArray *urls_;
22 UIProgressIndicator *indicator_;
23 IndirectDelegate *indirect_;
24
25 NSString *title_;
26 bool loading_;
27 bool reloading_;
28
29 bool pushed_;
30 }
31
32 - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
33 - (void) loadURL:(NSURL *)url;
34
35 - (void) loadRequest:(NSURLRequest *)request;
36 - (void) reloadURL;
37
38 - (WebView *) webView;
39
40 - (id) initWithBook:(RVBook *)book database:(Database *)database;
41
42 - (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
43
44 @end