blob: 23be6317a91438c7400f275efe1977abd26bb02b (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#import "ResetView.h"
#include <WebKit/DOMNodeList.h>
#include <WebKit/WebFrame.h>
#include <WebKit/WebScriptObject.h>
#include <WebKit/WebView.h>
#import <JavaScriptCore/JavaScriptCore.h>
@class NSMutableArray;
@class NSString;
@class NSURL;
@class NSURLRequest;
@class UIProgressIndicator;
@class UIScroller;
@class UIDocumentWebView;
@class WebView;
@class Database;
@class IndirectDelegate;
@interface WebScriptObject (UICaboodle)
- (unsigned) count;
- (id) objectAtIndex:(unsigned)index;
@end
@protocol BrowserControllerDelegate
- (UCViewController *) pageForURL:(NSURL *)url hasTag:(int *)tag;
@end
@interface BrowserController : UCViewController <
HookProtocol
> {
UIScroller *scroller_;
UIWebDocumentView *document_;
UIProgressIndicator *indicator_;
IndirectDelegate *indirect_;
NSURLAuthenticationChallenge *challenge_;
bool error_;
NSURLRequest *request_;
NSNumber *confirm_;
NSNumber *sensitive_;
NSString *title_;
NSMutableSet *loading_;
bool reloading_;
NSString *button_;
NSString *style_;
WebScriptObject *function_;
WebScriptObject *closer_;
WebScriptObject *special_;
WebScriptObject *finish_;
bool pushed_;
float width_;
bool popup_;
CGSize size_;
bool editing_;
Class class_;
id reloaditem_;
id loadingitem_;
}
+ (void) _initialize;
- (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
- (void) loadURL:(NSURL *)url;
- (void) loadRequest:(NSURLRequest *)request;
- (void) reloadURL;
- (bool) isLoading;
- (void) fixScroller;
- (WebView *) webView;
- (UIWebDocumentView *) documentView;
- (id) init;
- (id) initWithWidth:(float)width;
- (id) initWithWidth:(float)width ofClass:(Class)_class;
- (NSString *) stringByEvaluatingJavaScriptFromString:(NSString *)script;
- (void) callFunction:(WebScriptObject *)function;
- (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
- (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
- (NSURLRequest *) webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)source;
+ (float) defaultWidth;
- (void) setViewportWidth:(float)width;
- (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function;
- (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function;
- (void) setFinishHook:(id)function;
- (void) setPopupHook:(id)function;
- (bool) promptForSensitive:(NSString *)name;
- (bool) allowSensitiveRequests;
- (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button;
- (void) customButtonClicked;
- (void) applyRightButton;
- (void) _startLoading;
- (void) close;
@end
|