X-Git-Url: https://git.saurik.com/cydia.git/blobdiff_plain/c21004b921c67b3e7748cc1f0c53d02deec1ebca..0815487b46ade8251134bd69837235709e2ce3f0:/iPhonePrivate.h diff --git a/iPhonePrivate.h b/iPhonePrivate.h index 8e63ef12..96d3f10d 100644 --- a/iPhonePrivate.h +++ b/iPhonePrivate.h @@ -1,7 +1,10 @@ #ifndef CYDIA_UIKITPRIVATE_H +#define CYDIA_UIKITPRIVATE_H +// #include <*> {{{ #include - +// }}} +// typedef enum {*} *; {{{ typedef enum { UIGestureAttributeMinDegrees, /*float*/ UIGestureAttributeMaxDegrees, /*float*/ @@ -28,13 +31,127 @@ typedef enum { UIProgressIndicatorStyleSmallBlack, UIProgressIndicatorStyleTinyWhite, } UIProgressIndicatorStyle; +// }}} +// #define * * {{{ +#define UIDataDetectorTypeAutomatic 0x80000000 +// }}} +// @class Web*; {{{ +@class WebDataSource; +@class WebScriptObject; +@class WebView; +// }}} +// @protocol *; {{{ +@protocol WebPolicyDecisionListener; +// }}} + +// @interface * : UIView {{{ +@interface UIFormAssistant : UIView ++ (UIFormAssistant *) sharedFormAssistant; +- (CGRect) peripheralFrame; +@end +@interface UIKeyboard : UIView ++ (void) initImplementationNow; +@end -@class WebView; +@interface UIProgressBar : UIView ++ (CGSize) defaultSize; +- (void) setProgress:(float)progress; +- (void) setStyle:(NSInteger)style; +@end + +@interface UIProgressHUD : UIView +- (id) initWithWindow:(UIWindow *)window; +- (void) setText:(NSString *)text; +- (void) show:(BOOL)show; +@end + +@interface UIProgressIndicator : UIView ++ (CGSize) defaultSizeForStyle:(NSUInteger)style; +- (NSUInteger) activityIndicatorViewStyle; +- (void) setStyle:(UIProgressIndicatorStyle)style; +- (void) startAnimation; +@end + +@interface UIScroller : UIView +- (CGSize) contentSize; +- (void) setDirectionalScrolling:(BOOL)directional; +- (void) setEventMode:(NSInteger)mode; +- (void) setOffset:(CGPoint)offset; +- (void) setScrollDecelerationFactor:(float)factor; +- (void) setScrollHysteresis:(float)hysteresis; +- (void) setThumbDetectionEnabled:(BOOL)enabled; +@end + +@interface UITextLabel : UIView +- (void) setCentersHorizontally:(BOOL)centers; +- (void) setColor:(UIColor *)color; +- (void) setFont:(UIFont *)font; +- (void) setText:(NSString *)text; +@end + +@interface UITransitionView : UIView +@end + +@interface UIWebDocumentView : UIView +- (CGRect) documentBounds; +- (void) enableReachability; +- (void) loadRequest:(NSURLRequest *)request; +- (void) redrawScaledDocument; +- (void) setAllowsImageSheet:(BOOL)allows; +- (void) setAllowsMessaging:(BOOL)allows; +- (void) setAutoresizes:(BOOL)autoresizes; +- (void) setContentsPosition:(NSInteger)position; +- (void) setDrawsBackground:(BOOL)draws; +- (void) _setDocumentType:(NSInteger)type; +- (void) setDrawsGrid:(BOOL)draws; +- (void) setInitialScale:(float)scale forDocumentTypes:(NSInteger)types; +- (void) setLogsTilingChanges:(BOOL)logs; +- (void) setMinimumScale:(float)scale forDocumentTypes:(NSInteger)types; +- (void) setMinimumSize:(CGSize)size; +- (void) setMaximumScale:(float)scale forDocumentTypes:(NSInteger)tpyes; +- (void) setSmoothsFonts:(BOOL)smooths; +- (void) setTileMinificationFilter:(NSString *)filter; +- (void) setTileSize:(CGSize)size; +- (void) setTilingEnabled:(BOOL)enabled; +- (void) setViewportSize:(CGSize)size forDocumentTypes:(NSInteger)types; +- (void) setZoomsFocusedFormControl:(BOOL)zooms; +- (void) useSelectionAssistantWithMode:(NSInteger)mode; +- (WebView *) webView; +@end + +@interface UIWebViewWebViewDelegate : NSObject { + @public UIWebView *uiWebView; +} +@end +// }}} +// @interface *Button : * {{{ +@interface UINavigationButton : UIButton +- (id) initWithTitle:(NSString *)title style:(UINavigationButtonStyle)style; +- (void) setBarStyle:(UIBarStyle)style; +@end + +@interface UIPushButton : UIControl +- (id) backgroundForState:(NSUInteger)state; +- (void) setAutosizesToFit:(BOOL)autosizes; +- (void) setBackground:(id)background forState:(NSUInteger)state; +- (void) setDrawsShadow:(BOOL)draws; +- (void) setStretchBackground:(BOOL)stretch; +- (void) setTitle:(NSString *)title; +- (void) setTitleFont:(UIFont *)font; +@end +@interface UIThreePartButton : UIPushButton +@end +// }}} +// @interface * : NS* {{{ +@interface WebDefaultUIKitDelegate : NSObject ++ (WebDefaultUIKitDelegate *) sharedUIKitDelegate; +@end +// }}} +// @interface NS* (*) {{{ @interface NSString (Apple) -- (void) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font ellipsis:(BOOL)ellipsis; - (NSString *) stringByAddingPercentEscapes; - (NSString *) stringByReplacingCharacter:(UniChar)from withCharacter:(UniChar)to; @end @@ -52,9 +169,10 @@ typedef enum { @interface NSValue (Apple) + (NSValue *) valueWithSize:(CGSize)size; @end - - +// }}} +// @interface UI* (*) {{{ @interface UIActionSheet (Apple) +- (void) setContext:(NSString *)context; - (NSString *) context; @end @@ -77,9 +195,6 @@ typedef enum { - (void) applicationWillResignActive:(UIApplication *)application; - (void) applicationWillSuspend; - (void) launchApplicationWithIdentifier:(NSString *)identifier suspended:(BOOL)suspended; -- (void) removeApplicationBadge; -- (void) setApplicationBadge:(NSString *)badge; -- (void) setApplicationBadgeString:(NSString *)badge; - (void) setStatusBarShowsProgress:(BOOL)shows; - (void) _setSuspended:(BOOL)suspended; - (void) terminateWithSuccess; @@ -111,16 +226,28 @@ typedef enum { - (UIBarStyle) _barStyle:(BOOL)style; @end +@interface UIScrollView (Apple) +- (void) setScrollingEnabled:(BOOL)enabled; +- (void) setShowBackgroundShadow:(BOOL)show; +@end + @interface UISearchBar (Apple) - (UITextField *) searchField; @end +@interface UITabBarController (Apple) +- (UITransitionView *) _transitionView; +- (void) concealTabBarSelection; +- (void) revealTabBarSelection; +@end + @interface UITabBarItem (Apple) - (void) setAnimatedBadge:(BOOL)animated; @end @interface UITableViewCell (Apple) - (float) selectionPercent; +- (void) _updateHighlightColorsForView:(id)view highlighted:(BOOL)highlighted; @end @interface UITextField (Apple) @@ -136,7 +263,10 @@ typedef enum { @end @interface UIView (Apple) +- (UIScroller *) _scroller; +- (void) setClipsSubviews:(BOOL)clips; - (void) setEnabledGestures:(NSInteger)gestures; +- (void) setFixedBackgroundPattern:(BOOL)fixed; - (void) setGestureDelegate:(id)delegate; - (void) setNeedsDisplayOnBoundsChange:(BOOL)needs; - (void) setValue:(NSValue *)value forGestureAttribute:(NSInteger)attribute; @@ -154,154 +284,94 @@ typedef enum { - (void) orderFront:(UIApplication *)application; @end - -@interface UIFormAssistant : UIView -+ (UIFormAssistant *) sharedFormAssistant; -- (CGRect) peripheralFrame; +@interface UIWebView (Apple) +- (UIWebDocumentView *) _documentView; +- (UIScrollView *) _scrollView; +- (UIScroller *) _scroller; +- (void) _updateViewSettings; +//- (WebView *) webView:(WebView *)view createWebViewWithRequest:(NSURLRequest *)request; +- (void) webView:(WebView *)view decidePolicyForNavigationAction:(NSDictionary *)action request:(NSURLRequest *)request frame:(WebFrame *)frame decisionListener:(id)listener; +- (void) webView:(WebView *)view decidePolicyForNewWindowAction:(NSDictionary *)action request:(NSURLRequest *)request newFrameName:(NSString *)name decisionListener:(id)listener; +- (void) webView:(WebView *)view didClearWindowObject:(WebScriptObject *)window forFrame:(WebFrame *)frame; +- (void) webView:(WebView *)view didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame; +- (void) webView:(WebView *)view didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame; +- (void) webView:(WebView *)view didFinishLoadForFrame:(WebFrame *)frame; +- (void) webView:(WebView *)view didReceiveTitle:(id)title forFrame:(id)frame; +- (void) webView:(WebView *)view didStartProvisionalLoadForFrame:(WebFrame *)frame; +- (NSURLRequest *) webView:(WebView *)view resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)source; +- (void) webView:(WebView *)view runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame; +- (BOOL) webView:(WebView *)view runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame; +- (NSString *) webView:(WebView *)view runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)text initiatedByFrame:(WebFrame *)frame; +- (void) webViewClose:(WebView *)view; @end +// }}} -@interface UIKeyboard : UIView -+ (void) initImplementationNow; -@end +// #ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER {{{ +#ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER +#define AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER +// XXX: this is a random jumble of garbage -@interface UIProgressBar : UIView -+ (CGSize) defaultSize; -- (void) setProgress:(float)progress; -- (void) setStyle:(NSInteger)style; -@end +typedef enum { + UIModalPresentationFullScreen, + UIModalPresentationPageSheet, + UIModalPresentationFormSheet, + UIModalPresentationCurrentContext, +} UIModalPresentationStyle; -@interface UIProgressHUD : UIView -- (id) initWithWindow:(UIWindow *)window; -- (void) setText:(NSString *)text; -- (void) show:(BOOL)show; -@end +#define kSCNetworkReachabilityFlagsConnectionOnTraffic kSCNetworkReachabilityFlagsConnectionAutomatic -@interface UIProgressIndicator : UIView -+ (CGSize) defaultSizeForStyle:(NSUInteger)style; -- (NSUInteger) activityIndicatorViewStyle; -- (void) setStyle:(UIProgressIndicatorStyle)style; -- (void) startAnimation; -@end +#define UIBarStyleBlack UIBarStyleBlackOpaque -@interface UIScroller : UIView -- (CGSize) contentSize; -- (BOOL) releaseRubberBandIfNecessary; -- (void) scrollPointVisibleAtTopLeft:(CGPoint)point; -- (void) scrollRectToVisible:(CGRect)rect animated:(BOOL)animated; -- (void) setAdjustForContentSizeChange:(BOOL)adjust; -- (void) setAllowsRubberBanding:(BOOL)allows; -- (void) setBounces:(BOOL)bounces; -- (void) setClipsSubviews:(BOOL)clips; -- (void) setContentSize:(CGSize)size; -- (void) setDelegate:(id)delegate; -- (void) setDirectionalScrolling:(BOOL)directional; -- (void) setEventMode:(NSInteger)mode; -- (void) setFixedBackgroundPattern:(BOOL)fixed; -- (void) setOffset:(CGPoint)offset; -- (void) setScrollHysteresis:(float)hysteresis; -- (void) setScrollerIndicatorSubrect:(CGRect)rect; -- (void) setScrollingEnabled:(BOOL)enabled; -- (void) setShowBackgroundShadow:(BOOL)shows; -- (void) setThumbDetectionEnabled:(BOOL)enabled; -@end +@class NSUndoManager; +@class UIPasteboard; -@interface UITextLabel : UIView -- (void) setCentersHorizontally:(BOOL)centers; -- (void) setColor:(UIColor *)color; -- (void) setFont:(UIFont *)font; -- (void) setText:(NSString *)text; +@interface UIActionSheet (iPad) +- (void) showFromBarButtonItem:(UIBarButtonItem *)item animated:(BOOL)animated; @end -@interface UIWebDocumentView : UIView -- (CGRect) documentBounds; -- (void) enableReachability; -- (void) loadRequest:(NSURLRequest *)request; -- (void) redrawScaledDocument; -- (UIScroller *) _scroller; -- (void) setAllowsImageSheet:(BOOL)allows; -- (void) setAllowsMessaging:(BOOL)allows; -- (void) setAutoresizes:(BOOL)autoresizes; -- (void) setContentsPosition:(NSInteger)position; -- (void) setDataDetectorTypes:(NSUInteger)types; -- (void) setDelegate:(id)delegate; -- (void) setDetectsPhoneNumbers:(BOOL)detects; -- (void) _setDocumentType:(NSInteger)type; -- (void) setDrawsGrid:(BOOL)draws; -- (void) setFormEditingDelegate:(id)delegate; -- (void) setInitialScale:(float)scale forDocumentTypes:(NSInteger)types; -- (void) setInteractionDelegate:(id)delegate; -- (void) setLogsTilingChanges:(BOOL)logs; -- (void) setMinimumScale:(float)scale forDocumentTypes:(NSInteger)types; -- (void) setMinimumSize:(CGSize)size; -- (void) setMaximumScale:(float)scale forDocumentTypes:(NSInteger)tpyes; -- (void) setSmoothsFonts:(BOOL)smooths; -- (void) setTileMinificationFilter:(NSString *)filter; -- (void) setTileSize:(CGSize)size; -- (void) setTilingEnabled:(BOOL)enabled; -- (void) setViewportSize:(CGSize)size forDocumentTypes:(NSInteger)types; -- (void) setZoomsFocusedFormControl:(BOOL)zooms; -- (void) useSelectionAssistantWithMode:(NSInteger)mode; -- (WebView *) webView; -- (void) webView:(WebView *)view attachRootLayer:(id)layer; -- (void) webView:(WebView *)view didCommitLoadForFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didFailLoadWithError:(id)error forFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didFinishDocumentLoadForFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didFinishLoadForFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didFirstLayoutInFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didFirstVisuallyNonEmptyLayoutInFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didHideFullScreenForPlugInView:(id)plugin; -- (void) webView:(WebView *)view didObserveDeferredContentChange:(NSInteger)change forFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didReceiveDocTypeForFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view didReceiveMessage:(id)message; -- (void) webView:(WebView *)view didReceiveViewportArguments:(id)arguments forFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view formStateDidBlurNode:(id)state; -- (void) webView:(WebView *)view formStateDidFocusNode:(id)state; -- (void) webView:(WebView *)view needsScrollNotifications:(id)notifications forFrame:(WebFrame *)frame; -- (id) webView:(WebView *)view plugInViewWithArguments:(id)arguments fromPlugInPackage:(id)package; -- (void) webView:(WebView *)view restoreStateFromHistoryItem:(id)item forFrame:(WebFrame *)frame force:(BOOL)force; -- (void) webView:(WebView *)view saveStateToHistoryItem:(id)item forFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view willAddPlugInView:(id)plugin; -- (void) webView:(WebView *)view willCloseFrame:(WebFrame *)frame; -- (void) webView:(WebView *)view willShowFullScreenForPlugInView:(id)plugin; -- (BOOL) webView:(WebView *)view shouldScrollToPoint:(CGPoint)point forFrame:(WebFrame *)frame; -- (void) webViewDidLayout:(WebView *)view; -- (void) webViewDidPreventDefaultForEvent:(WebView *)view; -- (void) webViewFormEditedStatusHasChanged:(WebView *)changed; +@interface UIViewController (iPad) +- (void) setModalPresentationStyle:(UIModalPresentationStyle)style; @end - -@interface UINavigationButton : UIButton -- (id) initWithTitle:(NSString *)title style:(UINavigationButtonStyle)style; -- (void) setBarStyle:(UIBarStyle)style; +@interface UIApplication (iOS_3_0) +@property(nonatomic) BOOL applicationSupportsShakeToEdit; @end -@interface UIPushButton : UIControl -- (id) backgroundForState:(NSUInteger)state; -- (void) setAutosizesToFit:(BOOL)autosizes; -- (void) setBackground:(id)background forState:(NSUInteger)state; -- (void) setDrawsShadow:(BOOL)draws; -- (void) setStretchBackground:(BOOL)stretch; -- (void) setTitle:(NSString *)title; -- (void) setTitleFont:(UIFont *)font; +@interface UIScrollView (iOS_3_0) +@property(assign,nonatomic) float decelerationRate; @end -@interface UIThreePartButton : UIPushButton +@interface UIWebView (iOS_3_0) +@property(assign,nonatomic) NSUInteger dataDetectorTypes; @end +extern float const UIScrollViewDecelerationRateNormal; -@interface WebDefaultUIKitDelegate : NSObject -+ (WebDefaultUIKitDelegate *) sharedUIKitDelegate; -@end +#endif//AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER +// }}} +// #if __IPHONE_OS_VERSION_MIN_REQUIRED < 30000 {{{ +#if __IPHONE_OS_VERSION_MIN_REQUIRED < 30000 +#define kSCNetworkReachabilityFlagsConnectionOnDemand (1 << 5) +#define kCFCoreFoundationVersionNumber_iPhoneOS_3_0 478.47 -extern "C" CFStringRef const kGSDisplayIdentifiersCapability; - -extern "C" float const UIWebViewGrowsAndShrinksToFitHeight; -extern "C" float const UIWebViewScalesToFitScale; +#endif +// }}} +@interface UIScreen (iOS_4_0) +@property(nonatomic,readonly) CGFloat scale; +@end +// extern *; {{{ +extern CFStringRef const kGSDisplayIdentifiersCapability; +extern float const UIWebViewGrowsAndShrinksToFitHeight; +extern float const UIWebViewScalesToFitScale; +// }}} +// extern "C" *(); {{{ +extern "C" void *reboot2(uint64_t flags); +extern "C" mach_port_t SBSSpringBoardServerPort(); extern "C" UIImage *_UIImageWithName(NSString *name); extern "C" void UISetColor(CGColorRef color); - +// }}} #endif//CYDIA_UIKITPRIVATE_H