]> git.saurik.com Git - cydia.git/blame - UICaboodle/BrowserView.h
Added icons to sources.
[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;
facbc56d 10@class UIDocumentWebView;
ab398adf 11
a9543575
JF
12@class WebView;
13
ab398adf 14@class Database;
facbc56d 15@class IndirectDelegate;
ab398adf
JF
16
17@interface BrowserView : RVPage {
ab398adf 18 UIScroller *scroller_;
facbc56d 19 UIWebDocumentView *webview_;
ab398adf
JF
20 NSMutableArray *urls_;
21 UIProgressIndicator *indicator_;
facbc56d 22 IndirectDelegate *indirect_;
0ce617c8 23 NSURLAuthenticationChallenge *challenge_;
ab398adf
JF
24
25 NSString *title_;
26 bool loading_;
27 bool reloading_;
a0376fc1
JF
28
29 bool pushed_;
ab398adf
JF
30}
31
0ce617c8
JF
32- (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button;
33
ab398adf
JF
34- (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
35- (void) loadURL:(NSURL *)url;
36
37- (void) loadRequest:(NSURLRequest *)request;
38- (void) reloadURL;
39
40- (WebView *) webView;
41
3160e5f0 42- (id) initWithBook:(RVBook *)book;
ab398adf 43
7d2ac47f 44- (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
c390d3ab 45- (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
7d2ac47f 46
ab398adf 47@end