]> git.saurik.com Git - cydia.git/blob - CyteKit/WebViewController.h
If we go by the book, sec.s could seem like min.s.
[cydia.git] / CyteKit / WebViewController.h
1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2014 Jay Freeman (saurik)
3 */
4
5 /* GNU General Public License, Version 3 {{{ */
6 /*
7 * Cydia is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
11 *
12 * Cydia is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Cydia. If not, see <http://www.gnu.org/licenses/>.
19 **/
20 /* }}} */
21
22 #ifndef CyteKit_WebViewController_H
23 #define CyteKit_WebViewController_H
24
25 #include "CyteKit/ViewController.h"
26 #include "CyteKit/WebView.h"
27
28 #include <UIKit/UIKit.h>
29 #include <MessageUI/MessageUI.h>
30
31 #include <Menes/ObjectHandle.h>
32
33 @class IndirectDelegate;
34
35 @protocol CyteWebViewControllerDelegate
36 - (void) retainNetworkActivityIndicator;
37 - (void) releaseNetworkActivityIndicator;
38 - (CyteViewController *) pageForURL:(NSURL *)url forExternal:(BOOL)external withReferrer:(NSString *)referrer;
39 - (void) unloadData;
40 @end
41
42 @interface CyteWebViewController : CyteViewController <
43 CyteWebViewDelegate,
44 MFMailComposeViewControllerDelegate,
45 UIWebViewDelegate
46 > {
47 _H<CyteWebView, 1> webview_;
48 _transient UIScrollView *scroller_;
49
50 _H<UIActivityIndicatorView> indicator_;
51 _H<IndirectDelegate, 1> indirect_;
52 _H<NSURLAuthenticationChallenge> challenge_;
53
54 bool error_;
55 _H<NSURLRequest> request_;
56 bool ready_;
57
58 _transient NSNumber *sensitive_;
59 _H<NSURL> appstore_;
60
61 _H<NSString> title_;
62 _H<NSMutableSet> loading_;
63
64 _H<NSMutableSet> registered_;
65 _H<NSTimer> timer_;
66
67 // XXX: NSString * or UIImage *
68 _H<NSObject> custom_;
69 _H<NSString> style_;
70
71 _H<WebScriptObject> function_;
72
73 float width_;
74 Class class_;
75
76 _H<UIBarButtonItem> reloaditem_;
77 _H<UIBarButtonItem> loadingitem_;
78
79 bool visible_;
80 bool hidesNavigationBar_;
81 bool allowsNavigationAction_;
82 }
83
84 + (void) _initialize;
85
86 - (CyteWebView *) webView;
87
88 - (void) setRequest:(NSURLRequest *)request;
89 - (void) setURL:(NSURL *)url;
90 - (void) setURL:(NSURL *)url withReferrer:(NSString *)referrer;
91
92 - (void) loadURL:(NSURL *)url cachePolicy:(NSURLRequestCachePolicy)policy;
93 - (void) loadURL:(NSURL *)url;
94
95 - (void) loadRequest:(NSURLRequest *)request;
96 - (bool) isLoading;
97
98 - (id) init;
99
100 - (id) initWithURL:(NSURL *)url;
101 - (id) initWithRequest:(NSURLRequest *)request;
102
103 - (id) initWithWidth:(float)width;
104 - (id) initWithWidth:(float)width ofClass:(Class)_class;
105
106 - (void) callFunction:(WebScriptObject *)function;
107 - (void) reloadURLWithCache:(BOOL)cache;
108
109 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
110 - (NSURLRequest *) webView:(WebView *)view resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source;
111
112 + (float) defaultWidth;
113
114 - (void) setButtonImage:(NSString *)button withStyle:(NSString *)style toFunction:(id)function;
115 - (void) setButtonTitle:(NSString *)button withStyle:(NSString *)style toFunction:(id)function;
116 - (void) setHidesNavigationBar:(bool)value;
117
118 - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button;
119 - (void) customButtonClicked;
120
121 - (void) applyRightButton;
122 - (UIBarButtonItem *) customButton;
123 - (UIBarButtonItem *) rightButton;
124
125 - (void) applyLeftButton;
126 - (UIBarButtonItem *) leftButton;
127
128 - (void) removeButton;
129
130 - (void) _didStartLoading;
131 - (void) _didFinishLoading;
132
133 - (void) close;
134
135 - (void) dispatchEvent:(NSString *)event;
136
137 - (void) setViewportWidthOnMainThread:(float)value;
138
139 - (void) setScrollAlwaysBounceVertical:(bool)value;
140 - (void) setScrollIndicatorStyle:(UIScrollViewIndicatorStyle)style;
141
142 - (void) registerFrame:(WebFrame *)frame;
143
144 @end
145
146 #endif//CyteKit_WebViewController_H