blob: 2cb91dae62f022dddb30d97dbe2b9ee255ace925 (
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
|
#import "ResetView.h"
#include <WebKit/DOMCSSPrimitiveValue.h>
#include <WebKit/DOMCSSStyleDeclaration.h>
#include <WebKit/DOMDocument.h>
#include <WebKit/DOMHTMLBodyElement.h>
#include <WebKit/DOMNodeList.h>
#include <WebKit/DOMRGBColor.h>
#include <WebKit/WebFrame.h>
#include <WebKit/WebPolicyDelegate.h>
#include <WebKit/WebPreferences.h>
#include <WebKit/WebScriptObject.h>
#import <WebKit/WebView.h>
#import <WebKit/WebView-WebPrivate.h>
#include <WebCore/Page.h>
#include <WebCore/Settings.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;
@class CydiaObject;
@interface BrowserView : RVPage {
UIScroller *scroller_;
UIWebDocumentView *webview_;
UIProgressIndicator *indicator_;
IndirectDelegate *indirect_;
CydiaObject *cydia_;
NSURLAuthenticationChallenge *challenge_;
bool error_;
NSURLRequest *request_;
NSNumber *confirm_;
NSString *title_;
bool loading_;
bool reloading_;
NSString *button_;
NSString *style_;
WebScriptObject *function_;
bool pushed_;
float width_;
bool popup_;
CGSize size_;
bool editing_;
}
- (void) alertSheet:(UIActionSheet *)sheet buttonClicked:(int)button;
- (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
- (void) loadURL:(NSURL *)url;
- (void) loadRequest:(NSURLRequest *)request;
- (void) reloadURL;
- (WebView *) webView;
- (UIWebDocumentView *) documentView;
- (id) initWithBook:(RVBook *)book;
- (id) initWithBook:(RVBook *)book forWidth:(float)width;
- (void) webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame;
- (void) webView:(WebView *)sender didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
+ (float) defaultWidth;
- (void) setViewportWidth:(float)width;
- (id) _rightButtonTitle;
@end
|