blob: a58a5b7b67e5a90b36eb890afcdad795feae32d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#import "ResetView.h"
@class NSMutableArray;
@class NSString;
@class NSURL;
@class NSURLRequest;
@class UIProgressIndicator;
@class UIScroller;
@class UIWebView;
@class Database;
@interface BrowserView : RVPage {
_transient Database *database_;
UIScroller *scroller_;
UIWebView *webview_;
NSMutableArray *urls_;
UIProgressIndicator *indicator_;
NSString *title_;
bool loading_;
bool reloading_;
}
- (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
- (void) loadURL:(NSURL *)url;
- (void) loadRequest:(NSURLRequest *)request;
- (void) reloadURL;
- (WebView *) webView;
- (id) initWithBook:(RVBook *)book database:(Database *)database;
@end
|