1 #ifndef CYDIA_UIKITPRIVATE_H
2 #define CYDIA_UIKITPRIVATE_H
5 #include <JavaScriptCore/JavaScriptCore.h>
6 #include <UIKit/UIKit.h>
9 typedef struct __GSEvent
*GSEventRef
;
14 UIGestureAttributeMinDegrees
, /*float*/
15 UIGestureAttributeMaxDegrees
, /*float*/
16 UIGestureAttributeMinScale
, /*float*/
17 UIGestureAttributeMaxScale
, /*float*/
18 UIGestureAttributeIsZoomRubberBandEnabled
, /*BOOL*/
19 UIGestureAttributeZoomsFromCurrentToMinOrMax
, /*BOOL*/
20 UIGestureAttributeVisibleSize
, /*CGSize*/
21 UIGestureAttributeUpdatesScroller
, /*BOOL*/
25 UINavigationButtonStyleNormal
,
26 UINavigationButtonStyleBack
,
27 UINavigationButtonStyleHighlighted
,
28 UINavigationButtonStyleDestructive
29 } UINavigationButtonStyle
;
31 static const UIActivityIndicatorViewStyle
UIActivityIndicatorViewStyleWhiteSmall(static_cast<UIActivityIndicatorViewStyle
>(3));
32 static const UIActivityIndicatorViewStyle
UIActivityIndicatorViewStyleGraySmall(static_cast<UIActivityIndicatorViewStyle
>(4));
33 static const UIActivityIndicatorViewStyle
UIActivityIndicatorViewStyleWhiteTiny(static_cast<UIActivityIndicatorViewStyle
>(5));
36 #define UIDataDetectorTypeAutomatic 0x80000000
44 @
class WebScriptObject
;
52 DOM_CSS_PERCENTAGE
= 2,
68 DOM_CSS_DIMENSION
= 18,
75 DOM_CSS_RGBCOLOR
= 25,
83 typedef NS_ENUM(NSUInteger
, WebCacheModel
) {
84 WebCacheModelDocumentViewer
= 0,
85 WebCacheModelDocumentBrowser
= 1,
86 WebCacheModelPrimaryWebBrowser
= 2
103 WebKitErrorCannotShowMIMEType
= 100,
104 WebKitErrorCannotShowURL
= 101,
105 WebKitErrorFrameLoadInterruptedByPolicyChange
= 102,
108 // @protocol Web*; {{{
109 @protocol WebPolicyDecisionListener
<NSObject
>
116 // @interface * : UIView {{{
117 @interface UIFormAssistant
: UIView
118 + (UIFormAssistant
*) sharedFormAssistant
;
119 - (CGRect
) peripheralFrame
;
122 @interface UIKeyboard
: UIView
123 + (void) initImplementationNow
;
126 @interface UIProgressBar
: UIView
127 + (CGSize
) defaultSize
;
128 - (void) setProgress
:(float)progress
;
129 - (void) setStyle
:(NSInteger
)style
;
132 @interface UIProgressHUD
: UIView
134 - (void) setText
:(NSString
*)text
;
135 - (void) showInView
:(UIView
*)view
;
138 @interface UIScroller
: UIView
139 - (CGSize
) contentSize
;
140 - (void) setDirectionalScrolling
:(BOOL
)directional
;
141 - (void) setEventMode
:(NSInteger
)mode
;
142 - (void) setOffset
:(CGPoint
)offset
;
143 - (void) setScrollDecelerationFactor
:(CGFloat
)factor
;
144 - (void) setScrollHysteresis
:(CGFloat
)hysteresis
;
145 - (void) setScrollerIndicatorStyle
:(UIScrollViewIndicatorStyle
)style
;
146 - (void) setThumbDetectionEnabled
:(BOOL
)enabled
;
149 @interface UITextLabel
: UIView
150 - (void) setCentersHorizontally
:(BOOL
)centers
;
151 - (void) setColor
:(UIColor
*)color
;
152 - (void) setFont
:(UIFont
*)font
;
153 - (void) setText
:(NSString
*)text
;
156 @interface UITransitionView
: UIView
159 @interface UIWebDocumentView
: UIView
160 - (CGRect
) documentBounds
;
161 - (void) enableReachability
;
162 - (void) loadRequest
:(NSURLRequest
*)request
;
163 - (void) redrawScaledDocument
;
164 - (void) setAllowsImageSheet
:(BOOL
)allows
;
165 - (void) setAllowsMessaging
:(BOOL
)allows
;
166 - (void) setAutoresizes
:(BOOL
)autoresizes
;
167 - (void) setContentsPosition
:(NSInteger
)position
;
168 - (void) setDrawsBackground
:(BOOL
)draws
;
169 - (void) _setDocumentType
:(NSInteger
)type
;
170 - (void) setDrawsGrid
:(BOOL
)draws
;
171 - (void) setInitialScale
:(float)scale forDocumentTypes
:(NSInteger
)types
;
172 - (void) setLogsTilingChanges
:(BOOL
)logs
;
173 - (void) setMinimumScale
:(float)scale forDocumentTypes
:(NSInteger
)types
;
174 - (void) setMinimumSize
:(CGSize
)size
;
175 - (void) setMaximumScale
:(float)scale forDocumentTypes
:(NSInteger
)tpyes
;
176 - (void) setSmoothsFonts
:(BOOL
)smooths
;
177 - (void) setTileMinificationFilter
:(NSString
*)filter
;
178 - (void) setTileSize
:(CGSize
)size
;
179 - (void) setTilingEnabled
:(BOOL
)enabled
;
180 - (void) setViewportSize
:(CGSize
)size forDocumentTypes
:(NSInteger
)types
;
181 - (void) setZoomsFocusedFormControl
:(BOOL
)zooms
;
182 - (void) useSelectionAssistantWithMode
:(NSInteger
)mode
;
183 - (WebView
*) webView
;
186 @interface UIWebViewWebViewDelegate
: NSObject
{
187 @
public UIWebView
*uiWebView
;
190 - (void) _clearUIWebView
;
194 // @interface *Button : * {{{
195 @interface UINavigationButton
: UIButton
196 - (id
) initWithTitle
:(NSString
*)title style
:(UINavigationButtonStyle
)style
;
197 - (void) setBarStyle
:(UIBarStyle
)style
;
200 @interface UIPushButton
: UIControl
201 - (id
) backgroundForState
:(NSUInteger
)state
;
202 - (void) setAutosizesToFit
:(BOOL
)autosizes
;
203 - (void) setBackground
:(id
)background forState
:(NSUInteger
)state
;
204 - (void) setDrawsShadow
:(BOOL
)draws
;
205 - (void) setStretchBackground
:(BOOL
)stretch
;
206 - (void) setTitle
:(NSString
*)title
;
207 - (void) setTitleFont
:(UIFont
*)font
;
210 @interface UIThreePartButton
: UIPushButton
213 // @interface * : NS* {{{
214 @interface WebDefaultUIKitDelegate
: NSObject
215 + (WebDefaultUIKitDelegate
*) sharedUIKitDelegate
;
218 // @interface DOM* {{{
222 @interface DOMCSSValue
: DOMObject
225 @interface DOMCSSPrimitiveValue
: DOMCSSValue
226 @
property (readonly
) unsigned short primitiveType
;
227 - (DOMRGBColor
*) getRGBColorValue
;
228 - (float) getFloatValue
:(unsigned short)unit
;
231 @interface DOMRGBColor
: DOMObject
232 @
property (readonly
, strong
) DOMCSSPrimitiveValue
*red
;
233 @
property (readonly
, strong
) DOMCSSPrimitiveValue
*green
;
234 @
property (readonly
, strong
) DOMCSSPrimitiveValue
*blue
;
235 @
property (readonly
, strong
) DOMCSSPrimitiveValue
*alpha
;
238 @interface DOMCSSStyleDeclaration
: DOMObject
239 - (DOMCSSValue
*) getPropertyCSSValue
:(NSString
*)name
;
240 - (void) setProperty
:(NSString
*)name value
:(NSString
*)value priority
:(NSString
*)priority
;
243 @interface DOMNode
: DOMObject
246 @interface DOMNodeList
: DOMObject
247 @
property (readonly
) unsigned length
;
248 - (DOMNode
*) item
:(unsigned)index
;
251 @interface DOMElement
: DOMNode
252 @
property (readonly
) int scrollHeight
;
255 @interface DOMHTMLElement
: DOMElement
256 @
property (readonly
, strong
) DOMCSSStyleDeclaration
*style
;
259 @interface DOMHTMLBodyElement
: DOMHTMLElement
262 @interface DOMHTMLIFrameElement
: DOMHTMLElement
265 @interface DOMDocument
: DOMNode
266 @
property (strong
) DOMHTMLElement
*body
;
267 - (DOMCSSStyleDeclaration
*) getComputedStyle
:(DOMElement
*)element pseudoElement
:(NSString
*)pseudo
;
268 - (DOMNodeList
*) getElementsByTagName
:(NSString
*)name
;
271 // @interface WAK* : * {{{
272 @interface WAKResponder
: NSObject
275 @interface WAKView
: NSObject
276 + (BOOL
) hasLandscapeOrientation
;
279 @interface WAKWindow
: NSObject
280 + (BOOL
) hasLandscapeOrientation
;
283 // @interface Web* {{{
284 @interface WebPreferences
: NSObject
285 - (void) setCacheModel
:(WebCacheModel
)value
;
286 - (void) setJavaScriptCanOpenWindowsAutomatically
:(BOOL
)value
;
289 @interface WebFrame
: NSObject
290 @
property (nonatomic
, readonly
, copy
) NSArray
*childFrames
;
291 @
property (nonatomic
, readonly
, strong
) WebDataSource
*dataSource
;
292 @
property (nonatomic
, readonly
, strong
) DOMDocument
*DOMDocument
;
293 @
property (nonatomic
, readonly
, strong
) DOMHTMLElement
*frameElement
;
294 @
property (nonatomic
, readonly
) JSGlobalContextRef globalContext
;
295 @
property (nonatomic
, readonly
, strong
) WebFrame
*parentFrame
;
296 @
property (nonatomic
, readonly
, strong
) WebDataSource
*provisionalDataSource
;
297 @
property (nonatomic
, readonly
, strong
) WebScriptObject
*windowObject
;
300 @interface WebView
: WAKView
301 @
property (nonatomic
, readonly
, strong
) WebFrame
*mainFrame
;
302 @
property (nonatomic
, strong
) WebPreferences
*preferences
;
303 - (IBAction
) reloadFromOrigin
:(id
)sender
;
304 - (void) setApplicationNameForUserAgent
:(NSString
*)value
;
305 - (void) setShouldUpdateWhileOffscreen
:(BOOL
)value
;
308 @interface WebScriptObject
: NSObject
309 - (id
) evaluateWebScript
:(NSString
*)script
;
310 + (BOOL
) isKeyExcludedFromWebScript
:(const char *)name
;
311 - (JSObjectRef
) JSObject
;
312 - (void) setWebScriptValueAtIndex
:(unsigned)index value
:(id
)value
;
313 - (id
) webScriptValueAtIndex
:(unsigned)index
;
316 @interface WebUndefined
: NSObject
317 + (WebUndefined
*) undefined
;
320 // @interface UIWeb* : * {{{
321 @interface UIWebBrowserView
: UIWebDocumentView
324 @interface UIWebTouchEventsGestureRecognizer
: UIGestureRecognizer
326 - (NSString
*) _typeDescription
;
330 // @interface NS* (*) {{{
331 @interface
NSMutableURLRequest (Apple
)
332 - (void) setHTTPShouldUsePipelining
:(BOOL
)pipelining
;
335 @interface
NSObject (Apple
)
336 + (BOOL
) isKeyExcludedFromWebScript
:(const char *)name
;
339 @interface
NSString (Apple
)
340 - (NSString
*) stringByAddingPercentEscapes
;
341 - (NSString
*) stringByReplacingCharacter
:(UniChar
)from withCharacter
:(UniChar
)to
;
344 @interface
NSURL (Apple
)
345 - (BOOL
) isGoogleMapsURL
;
346 - (BOOL
) isSpringboardHandledURL
;
347 // XXX: make this an enum
348 - (NSURL
*) itmsURL
:(NSInteger
*)store
;
350 - (NSURL
*) phobosURL
;
351 - (NSURL
*) youTubeURL
;
354 @interface
NSURLRequest (Apple
)
355 + (BOOL
) allowsAnyHTTPSCertificateForHost
:(NSString
*)host
;
356 + (void) setAllowsAnyHTTPSCertificate
:(BOOL
)allow forHost
:(NSString
*)host
;
359 @interface
NSValue (Apple
)
360 + (NSValue
*) valueWithSize
:(CGSize
)size
;
363 // @interface UI* (*) {{{
364 @interface
UIActionSheet (Apple
)
365 - (void) setContext
:(NSString
*)context
;
366 - (NSString
*) context
;
369 @interface
UIAlertView (Apple
)
370 - (void) addTextFieldWithValue
:(NSString
*)value label
:(NSString
*)label
;
372 - (NSString
*) context
;
373 - (void) setContext
:(NSString
*)context
;
374 - (void) setNumberOfRows
:(int)rows
;
375 - (void) setRunsModal
:(BOOL
)modal
;
376 - (UITextField
*) textField
;
377 - (UITextField
*) textFieldAtIndex
:(NSUInteger
)index
;
378 - (void) _updateFrameForDisplay
;
381 @interface
UIApplication (Apple
)
382 - (void) suspendReturningToLastApp
:(BOOL
)returning
;
384 - (void) applicationSuspend
;
385 - (void) applicationSuspend
:(GSEventRef
)event
;
386 - (void) _animateSuspension
:(BOOL
)suspend duration
:(double)duration startTime
:(double)start scale
:(float)scale
;
387 - (void) applicationOpenURL
:(NSURL
*)url
;
388 - (void) applicationWillResignActive
:(UIApplication
*)application
;
389 - (void) applicationWillSuspend
;
390 - (void) launchApplicationWithIdentifier
:(NSString
*)identifier suspended
:(BOOL
)suspended
;
391 - (void) openURL
:(NSURL
*)url asPanel
:(BOOL
)panel
;
392 - (void) setStatusBarShowsProgress
:(BOOL
)shows
;
393 - (void) _setSuspended
:(BOOL
)suspended
;
394 - (void) terminateWithSuccess
;
397 @interface
UIBarButtonItem (Apple
)
401 @interface
UIColor (Apple
)
402 + (UIColor
*) pinStripeColor
;
405 @interface
UIControl (Apple
)
406 - (void) addTarget
:(id
)target action
:(SEL
)action forEvents
:(NSInteger
)events
;
409 @interface
UIDevice (Apple
)
410 - (NSString
*) uniqueIdentifier
;
413 @interface
UIImage (Apple
)
414 + (UIImage
*) imageAtPath
:(NSString
*)path
;
417 @interface
UILocalizedIndexedCollation (Apple
)
418 - (id
) initWithDictionary
:(NSDictionary
*)dictionary
;
419 - (NSString
*) transformedCollationStringForString
:(NSString
*)string
;
422 @interface
UINavigationBar (Apple
)
423 + (CGSize
) defaultSize
;
424 - (UIBarStyle
) _barStyle
:(BOOL
)style
;
427 @interface
UIScrollView (Apple
)
428 - (void) setScrollingEnabled
:(BOOL
)enabled
;
429 - (void) setShowBackgroundShadow
:(BOOL
)show
;
432 @interface
UISearchBar (Apple
)
433 - (UITextField
*) searchField
;
436 @interface
UITabBarController (Apple
)
437 - (UITransitionView
*) _transitionView
;
438 - (void) concealTabBarSelection
;
439 - (void) revealTabBarSelection
;
442 @interface
UITabBarItem (Apple
)
443 - (void) setAnimatedBadge
:(BOOL
)animated
;
447 @interface
UITableViewCell (Apple
)
448 - (float) selectionPercent
;
449 - (void) _updateHighlightColorsForView
:(id
)view highlighted
:(BOOL
)highlighted
;
452 @interface
UITextField (Apple
)
453 - (NSObject
<UITextInputTraits
> *) textInputTraits
;
456 @interface
UITextView (Apple
)
458 - (void) setAllowsRubberBanding
:(BOOL
)rubberbanding
;
459 - (void) setFont
:(UIFont
*)font
;
460 - (void) setMarginTop
:(int)margin
;
461 - (void) setTextColor
:(UIColor
*)color
;
464 @interface
UIView (Apple
)
465 - (UIScroller
*) _scroller
;
466 - (void) setClipsSubviews
:(BOOL
)clips
;
467 - (void) setEnabledGestures
:(NSInteger
)gestures
;
468 - (void) setFixedBackgroundPattern
:(BOOL
)fixed
;
469 - (void) setGestureDelegate
:(id
)delegate
;
470 - (void) setNeedsDisplayOnBoundsChange
:(BOOL
)needs
;
471 - (void) setValue
:(NSValue
*)value forGestureAttribute
:(NSInteger
)attribute
;
472 - (void) setZoomScale
:(float)scale duration
:(double)duration
;
473 - (void) _setZoomScale
:(float)scale duration
:(double)duration
;
474 - (void) setOrigin
:(CGPoint
)origin
;
477 @interface
UIViewController (Apple
)
478 - (void) _updateLayoutForStatusBarAndInterfaceOrientation
;
482 @interface
UIWindow (Apple
)
483 - (UIResponder
*) firstResponder
;
484 - (void) makeKey
:(UIApplication
*)application
;
485 - (void) orderFront
:(UIApplication
*)application
;
488 @interface
UIWebView (Apple
)
489 - (UIWebDocumentView
*) _documentView
;
490 - (UIScrollView
*) _scrollView
;
491 - (UIScroller
*) _scroller
;
492 - (void) _updateViewSettings
;
493 - (void) webView
:(WebView
*)view addMessageToConsole
:(NSDictionary
*)message
;
494 //- (WebView *) webView:(WebView *)view createWebViewWithRequest:(NSURLRequest *)request;
495 - (void) webView
:(WebView
*)view decidePolicyForNavigationAction
:(NSDictionary
*)action request
:(NSURLRequest
*)request frame
:(WebFrame
*)frame decisionListener
:(id
<WebPolicyDecisionListener
>)listener
;
496 - (void) webView
:(WebView
*)view decidePolicyForNewWindowAction
:(NSDictionary
*)action request
:(NSURLRequest
*)request newFrameName
:(NSString
*)name decisionListener
:(id
<WebPolicyDecisionListener
>)listener
;
497 - (void) webView
:(WebView
*)view didClearWindowObject
:(WebScriptObject
*)window forFrame
:(WebFrame
*)frame
;
498 - (void) webView
:(WebView
*)view didCommitLoadForFrame
:(WebFrame
*)frame
;
499 - (void) webView
:(WebView
*)view didFailLoadWithError
:(NSError
*)error forFrame
:(WebFrame
*)frame
;
500 - (void) webView
:(WebView
*)view didFailProvisionalLoadWithError
:(NSError
*)error forFrame
:(WebFrame
*)frame
;
501 - (void) webView
:(WebView
*)view didFinishLoadForFrame
:(WebFrame
*)frame
;
502 - (void) webView
:(WebView
*)view didReceiveTitle
:(id
)title forFrame
:(id
)frame
;
503 - (void) webView
:(WebView
*)view didStartProvisionalLoadForFrame
:(WebFrame
*)frame
;
504 - (void) webView
:(WebView
*)view resource
:(id
)identifier didReceiveAuthenticationChallenge
:(NSURLAuthenticationChallenge
*)challenge fromDataSource
:(WebDataSource
*)source
;
505 - (void) webView
:(WebView
*)view resource
:(id
)identifier didCancelAuthenticationChallenge
:(NSURLAuthenticationChallenge
*)challenge fromDataSource
:(WebDataSource
*)source
;
506 - (NSURLRequest
*) webView
:(WebView
*)view resource
:(id
)identifier willSendRequest
:(NSURLRequest
*)request redirectResponse
:(NSURLResponse
*)response fromDataSource
:(WebDataSource
*)source
;
507 - (NSURLRequest
*) webThreadWebView
:(WebView
*)view resource
:(id
)identifier willSendRequest
:(NSURLRequest
*)request redirectResponse
:(NSURLResponse
*)response fromDataSource
:(WebDataSource
*)source
;
508 - (void) webView
:(WebView
*)view runJavaScriptAlertPanelWithMessage
:(NSString
*)message initiatedByFrame
:(WebFrame
*)frame
;
509 - (BOOL
) webView
:(WebView
*)view runJavaScriptConfirmPanelWithMessage
:(NSString
*)message initiatedByFrame
:(WebFrame
*)frame
;
510 - (NSString
*) webView
:(WebView
*)view runJavaScriptTextInputPanelWithPrompt
:(NSString
*)prompt defaultText
:(NSString
*)text initiatedByFrame
:(WebFrame
*)frame
;
511 - (void) webViewClose
:(WebView
*)view
;
514 // @interface Web* (*) {{{
515 @interface
WebFrame (Apple
)
516 - (void) setNeedsLayout
;
519 @interface
WebPreferences (Apple
)
520 + (void) _setInitialDefaultTextEncodingToSystemEncoding
;
521 - (void) _setLayoutInterval
:(NSInteger
)interval
;
522 - (void) setOfflineWebApplicationCacheEnabled
:(BOOL
)enabled
;
525 @interface
WebView (Apple
)
526 - (void) _preferencesChanged
:(WebPreferences
*)preferences
;
527 - (void) _preferencesChangedNotification
:(NSNotification
*)notification
;
528 - (void) _setLayoutInterval
:(float)interval
;
529 - (void) _setAllowsMessaging
:(BOOL
)allows
;
533 // #ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER {{{
534 #ifndef AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER
535 #define AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER
536 // XXX: this is a random jumble of garbage
539 UIModalPresentationFullScreen
,
540 UIModalPresentationPageSheet
,
541 UIModalPresentationFormSheet
,
542 UIModalPresentationCurrentContext
,
543 } UIModalPresentationStyle
;
545 #define kSCNetworkReachabilityFlagsConnectionOnTraffic kSCNetworkReachabilityFlagsConnectionAutomatic
547 #define UIBarStyleBlack UIBarStyleBlackOpaque
549 @
class NSUndoManager
;
552 @interface
UIActionSheet (iPad
)
553 - (void) showFromBarButtonItem
:(UIBarButtonItem
*)item animated
:(BOOL
)animated
;
556 @interface
UIViewController (iPad
)
557 - (void) setModalPresentationStyle
:(UIModalPresentationStyle
)style
;
560 @interface
UIApplication (iOS_3_0
)
561 @
property(nonatomic
) BOOL applicationSupportsShakeToEdit
;
564 @interface
UIScrollView (iOS_3_0
)
565 @
property(assign
,nonatomic
) CGFloat decelerationRate
;
568 @interface
UIWebView (iOS_3_0
)
569 @
property(assign
,nonatomic
) NSUInteger dataDetectorTypes
;
572 extern CGFloat
const UIScrollViewDecelerationRateNormal
;
574 #endif//AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER
576 // #if __IPHONE_OS_VERSION_MIN_REQUIRED < 30000 {{{
577 #if __IPHONE_OS_VERSION_MIN_REQUIRED < 30000
579 #define kSCNetworkReachabilityFlagsConnectionOnDemand (1 << 5)
580 #define kCFCoreFoundationVersionNumber_iPhoneOS_3_0 478.47
585 #ifndef kCFCoreFoundationVersionNumber_iPhoneOS_4_0
586 #define kCFCoreFoundationVersionNumber_iPhoneOS_4_0 550.32
589 @interface
UITabBarItem (iOS_7_0
)
590 - (id
) initWithTitle
:(NSString
*)title image
:(UIImage
*)image selectedImage
:(UIImage
*)selectedImage
;
593 @interface
UIScreen (iOS_4_0
)
594 @
property(nonatomic
,readonly
) CGFloat scale
;
597 @interface
DOMHTMLIFrameElement (IDL
)
598 - (WebFrame
*) contentFrame
;
602 extern CFStringRef
const kGSDisplayIdentifiersCapability
;
603 extern float const UIWebViewGrowsAndShrinksToFitHeight
;
604 extern float const UIWebViewScalesToFitScale
;
605 extern NSString
*WebKitErrorDomain
;
607 // extern "C" *(); {{{
608 extern "C" void *reboot2(uint64_t flags
);
609 extern "C" mach_port_t
SBSSpringBoardServerPort();
610 extern "C" int SBBundlePathForDisplayIdentifier(mach_port_t port
, const char *identifier
, char *path
);
611 extern "C" NSArray
*SBSCopyApplicationDisplayIdentifiers(bool active
, bool debuggable
);
612 extern "C" NSString
*SBSCopyLocalizedApplicationNameForDisplayIdentifier(NSString
*);
613 extern "C" NSString
*SBSCopyIconImagePathForDisplayIdentifier(NSString
*);
614 extern "C" UIImage
*_UIImageWithName(NSString
*name
);
615 extern "C" void UISetColor(CGColorRef color
);
618 #endif//CYDIA_UIKITPRIVATE_H