]> git.saurik.com Git - cydia.git/blob - UICaboodle/BrowserView.h
Fixed the icon to the brown one.
[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 UIWebView;
11
12 @class Database;
13
14 @interface BrowserView : RVPage {
15 _transient Database *database_;
16 UIScroller *scroller_;
17 UIWebView *webview_;
18 NSMutableArray *urls_;
19 UIProgressIndicator *indicator_;
20
21 NSString *title_;
22 bool loading_;
23 bool reloading_;
24 }
25
26 - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
27 - (void) loadURL:(NSURL *)url;
28
29 - (void) loadRequest:(NSURLRequest *)request;
30 - (void) reloadURL;
31
32 - (WebView *) webView;
33
34 - (id) initWithBook:(RVBook *)book database:(Database *)database;
35
36 @end