]> git.saurik.com Git - cydia.git/blob - iPhonePrivate.h
Remove call to [UIKeyboard initImplementationNow] during startup: it costs 0.04s...
[cydia.git] / iPhonePrivate.h
1 #ifndef CYDIA_UIKITPRIVATE_H
2 #define CYDIA_UIKITPRIVATE_H
3
4 // #include <*> {{{
5 #include <GraphicsServices/GraphicsServices.h>
6 // }}}
7 // typedef enum {*} *; {{{
8 typedef enum {
9 UIGestureAttributeMinDegrees, /*float*/
10 UIGestureAttributeMaxDegrees, /*float*/
11 UIGestureAttributeMinScale, /*float*/
12 UIGestureAttributeMaxScale, /*float*/
13 UIGestureAttributeIsZoomRubberBandEnabled, /*BOOL*/
14 UIGestureAttributeZoomsFromCurrentToMinOrMax, /*BOOL*/
15 UIGestureAttributeVisibleSize, /*CGSize*/
16 UIGestureAttributeUpdatesScroller, /*BOOL*/
17 } UIGestureAttribute;
18
19 typedef enum {
20 UINavigationButtonStyleNormal,
21 UINavigationButtonStyleBack,
22 UINavigationButtonStyleHighlighted,
23 UINavigationButtonStyleDestructive
24 } UINavigationButtonStyle;
25
26 typedef enum {
27 UIProgressIndicatorStyleLargeWhite,
28 UIProgressIndicatorStyleMediumWhite,
29 UIProgressIndicatorStyleMediumBrown,
30 UIProgressIndicatorStyleSmallWhite,
31 UIProgressIndicatorStyleSmallBlack,
32 UIProgressIndicatorStyleTinyWhite,
33 } UIProgressIndicatorStyle;
34 // }}}
35 // #define * * {{{
36 #define UIDataDetectorTypeAutomatic 0x80000000
37 // }}}
38 // @class Web*; {{{
39 @class WebDataSource;
40 @class WebScriptObject;
41 @class WebView;
42 // }}}
43 // @protocol *; {{{
44 @protocol WebPolicyDecisionListener;
45 // }}}
46
47 // @interface * : UIView {{{
48 @interface UIFormAssistant : UIView
49 + (UIFormAssistant *) sharedFormAssistant;
50 - (CGRect) peripheralFrame;
51 @end
52
53 @interface UIKeyboard : UIView
54 + (void) initImplementationNow;
55 @end
56
57 @interface UIProgressBar : UIView
58 + (CGSize) defaultSize;
59 - (void) setProgress:(float)progress;
60 - (void) setStyle:(NSInteger)style;
61 @end
62
63 @interface UIProgressHUD : UIView
64 - (id) initWithWindow:(UIWindow *)window;
65 - (void) setText:(NSString *)text;
66 - (void) show:(BOOL)show;
67 @end
68
69 @interface UIProgressIndicator : UIView
70 + (CGSize) defaultSizeForStyle:(NSUInteger)style;
71 - (NSUInteger) activityIndicatorViewStyle;
72 - (void) setStyle:(UIProgressIndicatorStyle)style;
73 - (void) startAnimation;
74 @end
75
76 @interface UIScroller : UIView
77 - (CGSize) contentSize;
78 - (void) setDirectionalScrolling:(BOOL)directional;
79 - (void) setEventMode:(NSInteger)mode;
80 - (void) setOffset:(CGPoint)offset;
81 - (void) setScrollDecelerationFactor:(float)factor;
82 - (void) setScrollHysteresis:(float)hysteresis;
83 - (void) setThumbDetectionEnabled:(BOOL)enabled;
84 @end
85
86 @interface UITextLabel : UIView
87 - (void) setCentersHorizontally:(BOOL)centers;
88 - (void) setColor:(UIColor *)color;
89 - (void) setFont:(UIFont *)font;
90 - (void) setText:(NSString *)text;
91 @end
92
93 @interface UIWebDocumentView : UIView
94 - (CGRect) documentBounds;
95 - (void) enableReachability;
96 - (void) loadRequest:(NSURLRequest *)request;
97 - (void) redrawScaledDocument;
98 - (void) setAllowsImageSheet:(BOOL)allows;
99 - (void) setAllowsMessaging:(BOOL)allows;
100 - (void) setAutoresizes:(BOOL)autoresizes;
101 - (void) setContentsPosition:(NSInteger)position;
102 - (void) setDrawsBackground:(BOOL)draws;
103 - (void) _setDocumentType:(NSInteger)type;
104 - (void) setDrawsGrid:(BOOL)draws;
105 - (void) setInitialScale:(float)scale forDocumentTypes:(NSInteger)types;
106 - (void) setLogsTilingChanges:(BOOL)logs;
107 - (void) setMinimumScale:(float)scale forDocumentTypes:(NSInteger)types;
108 - (void) setMinimumSize:(CGSize)size;
109 - (void) setMaximumScale:(float)scale forDocumentTypes:(NSInteger)tpyes;
110 - (void) setSmoothsFonts:(BOOL)smooths;
111 - (void) setTileMinificationFilter:(NSString *)filter;
112 - (void) setTileSize:(CGSize)size;
113 - (void) setTilingEnabled:(BOOL)enabled;
114 - (void) setViewportSize:(CGSize)size forDocumentTypes:(NSInteger)types;
115 - (void) setZoomsFocusedFormControl:(BOOL)zooms;
116 - (void) useSelectionAssistantWithMode:(NSInteger)mode;
117 - (WebView *) webView;
118 @end
119
120 @interface UIWebViewWebViewDelegate : NSObject {
121 @public UIWebView *uiWebView;
122 }
123 @end
124 // }}}
125 // @interface *Button : * {{{
126 @interface UINavigationButton : UIButton
127 - (id) initWithTitle:(NSString *)title style:(UINavigationButtonStyle)style;
128 - (void) setBarStyle:(UIBarStyle)style;
129 @end
130
131 @interface UIPushButton : UIControl
132 - (id) backgroundForState:(NSUInteger)state;
133 - (void) setAutosizesToFit:(BOOL)autosizes;
134 - (void) setBackground:(id)background forState:(NSUInteger)state;
135 - (void) setDrawsShadow:(BOOL)draws;
136 - (void) setStretchBackground:(BOOL)stretch;
137 - (void) setTitle:(NSString *)title;
138 - (void) setTitleFont:(UIFont *)font;
139 @end
140
141 @interface UIThreePartButton : UIPushButton
142 @end
143 // }}}
144 // @interface * : NS* {{{
145 @interface WebDefaultUIKitDelegate : NSObject
146 + (WebDefaultUIKitDelegate *) sharedUIKitDelegate;
147 @end
148 // }}}
149
150 // @interface NS* (*) {{{
151 @interface NSString (Apple)
152 - (NSString *) stringByAddingPercentEscapes;
153 - (NSString *) stringByReplacingCharacter:(UniChar)from withCharacter:(UniChar)to;
154 @end
155
156 @interface NSURL (Apple)
157 - (BOOL) isGoogleMapsURL;
158 - (BOOL) isSpringboardHandledURL;
159 // XXX: make this an enum
160 - (NSURL *) itmsURL:(NSInteger *)store;
161 - (NSURL *) mapsURL;
162 - (NSURL *) phobosURL;
163 - (NSURL *) youTubeURL;
164 @end
165
166 @interface NSValue (Apple)
167 + (NSValue *) valueWithSize:(CGSize)size;
168 @end
169 // }}}
170 // @interface UI* (*) {{{
171 @interface UIActionSheet (Apple)
172 - (void) setContext:(NSString *)context;
173 - (NSString *) context;
174 @end
175
176 @interface UIAlertView (Apple)
177 - (void) addTextFieldWithValue:(NSString *)value label:(NSString *)label;
178 - (id) buttons;
179 - (NSString *) context;
180 - (void) setContext:(NSString *)context;
181 - (void) setNumberOfRows:(int)rows;
182 - (void) setRunsModal:(BOOL)modal;
183 - (UITextField *) textField;
184 - (UITextField *) textFieldAtIndex:(NSUInteger)index;
185 - (void) _updateFrameForDisplay;
186 @end
187
188 @interface UIApplication (Apple)
189 - (void) applicationSuspend:(GSEventRef)event;
190 - (void) _animateSuspension:(BOOL)suspend duration:(double)duration startTime:(double)start scale:(float)scale;
191 - (void) applicationOpenURL:(NSURL *)url;
192 - (void) applicationWillResignActive:(UIApplication *)application;
193 - (void) applicationWillSuspend;
194 - (void) launchApplicationWithIdentifier:(NSString *)identifier suspended:(BOOL)suspended;
195 - (void) removeApplicationBadge;
196 - (void) setApplicationBadge:(NSString *)badge;
197 - (void) setApplicationBadgeString:(NSString *)badge;
198 - (void) setStatusBarShowsProgress:(BOOL)shows;
199 - (void) _setSuspended:(BOOL)suspended;
200 - (void) terminateWithSuccess;
201 @end
202
203 @interface UIBarButtonItem (Apple)
204 - (UIView *) view;
205 @end
206
207 @interface UIColor (Apple)
208 + (UIColor *) pinStripeColor;
209 @end
210
211 @interface UIControl (Apple)
212 - (void) addTarget:(id)target action:(SEL)action forEvents:(NSInteger)events;
213 @end
214
215 @interface UIDevice (Apple)
216 - (BOOL) isWildcat;
217 @end
218
219 @interface UIImage (Apple)
220 + (UIImage *) applicationImageNamed:(NSString *)name;
221 + (UIImage *) imageAtPath:(NSString *)path;
222 @end
223
224 @interface UINavigationBar (Apple)
225 + (CGSize) defaultSize;
226 - (UIBarStyle) _barStyle:(BOOL)style;
227 @end
228
229 @interface UIScrollView (Apple)
230 - (void) setScrollingEnabled:(BOOL)enabled;
231 - (void) setShowBackgroundShadow:(BOOL)show;
232 @end
233
234 @interface UISearchBar (Apple)
235 - (UITextField *) searchField;
236 @end
237
238 @interface UITabBarItem (Apple)
239 - (void) setAnimatedBadge:(BOOL)animated;
240 @end
241
242 @interface UITableViewCell (Apple)
243 - (float) selectionPercent;
244 @end
245
246 @interface UITextField (Apple)
247 - (UITextInputTraits *) textInputTraits;
248 @end
249
250 @interface UITextView (Apple)
251 - (UIFont *) font;
252 - (void) setAllowsRubberBanding:(BOOL)rubberbanding;
253 - (void) setFont:(UIFont *)font;
254 - (void) setMarginTop:(int)margin;
255 - (void) setTextColor:(UIColor *)color;
256 @end
257
258 @interface UIView (Apple)
259 - (UIScroller *) _scroller;
260 - (void) setClipsSubviews:(BOOL)clips;
261 - (void) setEnabledGestures:(NSInteger)gestures;
262 - (void) setFixedBackgroundPattern:(BOOL)fixed;
263 - (void) setGestureDelegate:(id)delegate;
264 - (void) setNeedsDisplayOnBoundsChange:(BOOL)needs;
265 - (void) setValue:(NSValue *)value forGestureAttribute:(NSInteger)attribute;
266 - (void) setZoomScale:(float)scale duration:(double)duration;
267 - (void) _setZoomScale:(float)scale duration:(double)duration;
268 @end
269
270 @interface UIViewController (Apple)
271 - (void) _updateLayoutForStatusBarAndInterfaceOrientation;
272 @end
273
274 @interface UIWindow (Apple)
275 - (UIResponder *) firstResponder;
276 - (void) makeKey:(UIApplication *)application;
277 - (void) orderFront:(UIApplication *)application;
278 @end
279
280 @interface UIWebView (Apple)
281 - (UIWebDocumentView *) _documentView;
282 - (UIScrollView *) _scrollView;
283 - (UIScroller *) _scroller;
284 //- (WebView *) webView:(WebView *)view createWebViewWithRequest:(NSURLRequest *)request;
285 - (void) webView:(WebView *)view decidePolicyForNavigationAction:(NSDictionary *)action request:(NSURLRequest *)request frame:(WebFrame *)frame decisionListener:(id<WebPolicyDecisionListener>)listener;
286 - (void) webView:(WebView *)view decidePolicyForNewWindowAction:(NSDictionary *)action request:(NSURLRequest *)request newFrameName:(NSString *)name decisionListener:(id<WebPolicyDecisionListener>)listener;
287 - (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame;
288 - (void) webView:(WebView *)view didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame;
289 - (void) webView:(WebView *)view didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame;
290 - (void) webView:(WebView *)view didFinishLoadForFrame:(WebFrame *)frame;
291 - (void) webView:(WebView *)view didReceiveTitle:(id)title forFrame:(id)frame;
292 - (void) webView:(WebView *)view didStartProvisionalLoadForFrame:(WebFrame *)frame;
293 - (NSURLRequest *) webView:(WebView *)view resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source;
294 - (void) webView:(WebView *)view runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame;
295 - (BOOL) webView:(WebView *)view runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame;
296 - (NSString *) webView:(WebView *)view runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)text initiatedByFrame:(WebFrame *)frame;
297 - (void) webViewClose:(WebView *)view;
298 @end
299 // }}}
300
301 // #ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER {{{
302 #ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER
303 #define AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER
304
305 typedef enum {
306 UIModalPresentationFullScreen,
307 UIModalPresentationPageSheet,
308 UIModalPresentationFormSheet,
309 UIModalPresentationCurrentContext,
310 } UIModalPresentationStyle;
311
312 #define kSCNetworkReachabilityFlagsConnectionOnTraffic kSCNetworkReachabilityFlagsConnectionAutomatic
313 #define kSCNetworkReachabilityFlagsConnectionOnDemand (1 << 5)
314
315 #define UIBarStyleBlack UIBarStyleBlackOpaque
316
317 @class NSUndoManager;
318 @class UIPasteboard;
319
320 @interface UIActionSheet (iPad)
321 - (void) showFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated;
322 @end
323
324 @interface UIViewController (iPad)
325 - (void) setModalPresentationStyle:(UIModalPresentationStyle)style;
326 @end
327
328 @interface UIScrollView (iOS_3_0)
329 @property(assign, nonatomic) float decelerationRate;
330 @end
331
332 @interface UIWebView (iOS_3_0)
333 @property(assign, nonatomic) NSUInteger dataDetectorTypes;
334 @end
335
336 extern float const UIScrollViewDecelerationRateNormal;
337
338 #endif//AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER
339 // }}}
340
341 // extern *; {{{
342 extern CFStringRef const kGSDisplayIdentifiersCapability;
343 extern float const UIWebViewGrowsAndShrinksToFitHeight;
344 extern float const UIWebViewScalesToFitScale;
345 // }}}
346 // extern "C" *(); {{{
347 extern "C" UIImage *_UIImageWithName(NSString *name);
348 extern "C" void UISetColor(CGColorRef color);
349 // }}}
350
351 #endif//CYDIA_UIKITPRIVATE_H