blob: caafaa52e665410c0f0cc3d083ce5715442ce0b0 (
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
37
38
39
40
41
42
|
#import "ResetView.h"
@class NSMutableArray;
@class NSString;
@class NSURL;
@class NSURLRequest;
@class UIProgressIndicator;
@class UIScroller;
@class UIWebView;
@class WebView;
@class Database;
@interface BrowserView : RVPage {
_transient Database *database_;
UIScroller *scroller_;
UIWebView *webview_;
NSMutableArray *urls_;
UIProgressIndicator *indicator_;
NSString *title_;
bool loading_;
bool reloading_;
bool pushed_;
}
- (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;
- (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
@end
|