1 /* WinterBoard - Theme Manager for the iPhone
2 * Copyright (C) 2008-2010 Jay Freeman (saurik)
6 * Redistribution and use in source and binary
7 * forms, with or without modification, are permitted
8 * provided that the following conditions are met:
10 * 1. Redistributions of source code must retain the
11 * above copyright notice, this list of conditions
12 * and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the
14 * above copyright notice, this list of conditions
15 * and the following disclaimer in the documentation
16 * and/or other materials provided with the
18 * 3. The name of the author may not be used to endorse
19 * or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
24 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
27 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
33 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
35 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 #define _trace() do { \
44 struct timeval _ctv; \
45 gettimeofday(&_ctv, NULL); \
50 fprintf(stderr, "%lu.%.6u[%f]:_trace()@%s:%u[%s]\n", \
51 _ctv.tv_sec, _ctv.tv_usec, \
52 (_ctv.tv_sec - _ltv.tv_sec) + (_ctv.tv_usec - _ltv.tv_usec) / 1000000.0, \
53 __FILE__, __LINE__, __FUNCTION__\
60 #import <CoreFoundation/CoreFoundation.h>
61 #import <Foundation/Foundation.h>
62 #import <CoreGraphics/CoreGraphics.h>
64 #import <Celestial/AVController.h>
65 #import <Celestial/AVItem.h>
66 #import <Celestial/AVQueue.h>
68 #include <substrate.h>
70 #import <UIKit/UIKit.h>
72 #import <SpringBoard/SBApplication.h>
73 #import <SpringBoard/SBApplicationIcon.h>
74 #import <SpringBoard/SBAppWindow.h>
75 #import <SpringBoard/SBAwayView.h>
76 #import <SpringBoard/SBBookmarkIcon.h>
77 #import <SpringBoard/SBButtonBar.h>
78 #import <SpringBoard/SBCalendarIconContentsView.h>
79 #import <SpringBoard/SBIconController.h>
80 #import <SpringBoard/SBIconLabel.h>
81 #import <SpringBoard/SBIconList.h>
82 #import <SpringBoard/SBIconModel.h>
83 #import <SpringBoard/SBImageCache.h>
84 // XXX: #import <SpringBoard/SBSearchView.h>
85 #import <SpringBoard/SBSearchTableViewCell.h>
86 #import <SpringBoard/SBStatusBarContentsView.h>
87 #import <SpringBoard/SBStatusBarController.h>
88 #import <SpringBoard/SBStatusBarOperatorNameView.h>
89 #import <SpringBoard/SBStatusBarTimeView.h>
90 #import <SpringBoard/SBUIController.h>
91 #import <SpringBoard/SBWidgetApplicationIcon.h>
93 #import <MobileSMS/mSMSMessageTranscriptController.h>
95 #import <MediaPlayer/MPMoviePlayerController.h>
96 #import <MediaPlayer/MPVideoView.h>
97 #import <MediaPlayer/MPVideoView-PlaybackControl.h>
99 #import <CoreGraphics/CGGeometry.h>
101 #import <ChatKit/CKMessageCell.h>
103 extern "C" void __clear_cache (char *beg, char *end);
105 @protocol WinterBoard
109 Class $MPMoviePlayerController;
111 Class $WebCoreFrameBridge;
116 Class $UINavigationBar;
119 Class $CKMessageCell;
120 Class $CKTimestampView;
121 Class $CKTranscriptController;
122 Class $CKTranscriptTableView;
124 Class $SBApplication;
125 Class $SBApplicationIcon;
127 Class $SBBookmarkIcon;
129 Class $SBCalendarIconContentsView;
132 Class $SBIconController;
136 //Class $SBImageCache;
138 Class $SBSearchTableViewCell;
139 Class $SBStatusBarContentsView;
140 Class $SBStatusBarController;
141 Class $SBStatusBarOperatorNameView;
142 Class $SBStatusBarTimeView;
143 Class $SBUIController;
144 Class $SBWidgetApplicationIcon;
146 @interface NSDictionary (WinterBoard)
147 - (UIColor *) wb$colorForKey:(NSString *)key;
148 - (BOOL) wb$boolForKey:(NSString *)key;
151 @implementation NSDictionary (WinterBoard)
153 - (UIColor *) wb$colorForKey:(NSString *)key {
154 NSString *value = [self objectForKey:key];
161 - (BOOL) wb$boolForKey:(NSString *)key {
162 if (NSString *value = [self objectForKey:key])
163 return [value boolValue];
169 static BOOL (*_GSFontGetUseLegacyFontMetrics)();
170 #define $GSFontGetUseLegacyFontMetrics() \
171 (_GSFontGetUseLegacyFontMetrics == NULL ? YES : _GSFontGetUseLegacyFontMetrics())
174 bool Engineer_ = false;
175 bool SummerBoard_ = true;
177 static UIImage *(*_UIApplicationImageWithName)(NSString *name);
178 static UIImage *(*_UIImageAtPath)(NSString *name, NSBundle *path);
179 static CGImageRef (*_UIImageRefAtPath)(NSString *name, bool cache, UIImageOrientation *orientation);
180 static UIImage *(*_UIImageWithNameInDomain)(NSString *name, NSString *domain);
181 static NSBundle *(*_UIKitBundle)();
182 static int (*_UISharedImageNameGetIdentifier)(NSString *);
183 static UIImage *(*_UISharedImageWithIdentifier)(int);
185 static NSMutableDictionary *UIImages_;
186 static NSMutableDictionary *PathImages_;
187 static NSMutableDictionary *Cache_;
188 static NSMutableDictionary *Strings_;
189 static NSMutableDictionary *Themed_;
190 static NSMutableDictionary *Bundles_;
192 static NSFileManager *Manager_;
193 static NSDictionary *English_;
194 static NSMutableDictionary *Info_;
195 static NSMutableArray *themes_;
197 static NSString *$getTheme$(NSArray *files, bool parent = false) {
199 if (NSString *path = [Themed_ objectForKey:files])
200 return reinterpret_cast<id>(path) == [NSNull null] ? nil : path;
203 NSLog(@"WB:Debug: %@", [files description]);
207 for (NSString *theme in themes_)
208 for (NSString *file in files) {
209 path = [NSString stringWithFormat:@"%@/%@", theme, file];
210 if ([Manager_ fileExistsAtPath:path]) {
211 path = parent ? theme : path;
219 [Themed_ setObject:(path == nil ? [NSNull null] : reinterpret_cast<id>(path)) forKey:files];
223 static NSString *$pathForFile$inBundle$(NSString *file, NSBundle *bundle, bool ui) {
224 NSString *identifier = [bundle bundleIdentifier];
225 NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
227 if (identifier != nil)
228 [names addObject:[NSString stringWithFormat:@"Bundles/%@/%@", identifier, file]];
229 if (NSString *folder = [[bundle bundlePath] lastPathComponent])
230 [names addObject:[NSString stringWithFormat:@"Folders/%@/%@", folder, file]];
232 [names addObject:[NSString stringWithFormat:@"UIImages/%@", file]];
234 #define remapResourceName(oldname, newname) \
235 else if ([file isEqualToString:oldname]) \
236 [names addObject:[NSString stringWithFormat:@"%@.png", newname]]; \
238 if (identifier == nil);
239 else if ([identifier isEqualToString:@"com.apple.chatkit"])
240 [names addObject:[NSString stringWithFormat:@"Bundles/com.apple.MobileSMS/%@", file]];
241 else if ([identifier isEqualToString:@"com.apple.calculator"])
242 [names addObject:[NSString stringWithFormat:@"Files/Applications/Calculator.app/%@", file]];
243 else if (![identifier isEqualToString:@"com.apple.springboard"] || !SummerBoard_);
244 remapResourceName(@"FSO_BG.png", @"StatusBar")
245 remapResourceName(@"SBDockBG.png", @"Dock")
246 remapResourceName(@"SBWeatherCelsius.png", @"Icons/Weather")
248 if (NSString *path = $getTheme$(names))
253 static NSString *$pathForIcon$(SBApplication *self) {
254 NSString *identifier = [self bundleIdentifier];
255 NSString *path = [self path];
256 NSString *folder = [path lastPathComponent];
257 NSString *dname = [self displayName];
258 NSString *didentifier = [self displayIdentifier];
261 NSLog(@"WB:Debug: [SBApplication(%@:%@:%@:%@) pathForIcon]", identifier, folder, dname, didentifier);
263 NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
265 /* XXX: I might need to keep this for backwards compatibility
266 if (identifier != nil)
267 [names addObject:[NSString stringWithFormat:@"Bundles/%@/icon.png", identifier]];
269 [names addObject:[NSString stringWithFormat:@"Folders/%@/icon.png", folder]]; */
271 #define testForIcon(Name) \
272 if (NSString *name = Name) \
273 [names addObject:[NSString stringWithFormat:@"Icons/%@.png", name]];
275 if (![didentifier isEqualToString:identifier])
276 testForIcon(didentifier);
278 testForIcon(identifier);
281 if ([identifier isEqualToString:@"com.apple.MobileSMS"])
284 if (didentifier != nil) {
285 testForIcon([English_ objectForKey:didentifier]);
287 NSArray *parts = [didentifier componentsSeparatedByString:@"-"];
288 if ([parts count] != 1)
289 if (NSDictionary *english = [[[NSDictionary alloc] initWithContentsOfFile:[path stringByAppendingString:@"/English.lproj/UIRoleDisplayNames.strings"]] autorelease])
290 testForIcon([english objectForKey:[parts lastObject]]);
293 if (NSString *path = $getTheme$(names))
299 @interface NSBundle (WinterBoard)
300 + (NSBundle *) wb$bundleWithFile:(NSString *)path;
303 @implementation NSBundle (WinterBoard)
305 + (NSBundle *) wb$bundleWithFile:(NSString *)path {
306 path = [path stringByDeletingLastPathComponent];
307 if (path == nil || [path length] == 0 || [path isEqualToString:@"/"])
310 NSBundle *bundle([Bundles_ objectForKey:path]);
311 if (reinterpret_cast<id>(bundle) == [NSNull null])
313 else if (bundle == nil) {
314 if ([Manager_ fileExistsAtPath:[path stringByAppendingPathComponent:@"Info.plist"]])
315 bundle = [NSBundle bundleWithPath:path];
317 bundle = [NSBundle wb$bundleWithFile:path];
319 NSLog(@"WB:Debug:PathBundle(%@, %@)", path, bundle);
320 [Bundles_ setObject:(bundle == nil ? [NSNull null] : reinterpret_cast<id>(bundle)) forKey:path];
328 @interface NSString (WinterBoard)
329 - (NSString *) wb$themedPath;
332 @implementation NSString (WinterBoard)
334 - (NSString *) wb$themedPath {
336 NSLog(@"WB:Debug:Bypass(\"%@\")", self);
338 if (NSBundle *bundle = [NSBundle wb$bundleWithFile:self]) {
339 NSString *file([self stringByResolvingSymlinksInPath]);
340 NSString *prefix([[bundle bundlePath] stringByResolvingSymlinksInPath]);
341 if ([file hasPrefix:prefix]) {
342 NSUInteger length([prefix length]);
343 if (length != [file length])
344 if (NSString *path = $pathForFile$inBundle$([file substringFromIndex:(length + 1)], bundle, false))
354 void WBLogRect(const char *tag, struct CGRect rect) {
355 NSLog(@"%s:{%f,%f+%f,%f}", tag, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
358 void WBLogHierarchy(UIView *view, unsigned index = 0, unsigned indent = 0) {
359 CGRect frame([view frame]);
360 NSLog(@"%*s|%2d:%p:%s : {%f,%f+%f,%f} (%@)", indent * 3, "", index, view, class_getName([view class]), frame.origin.x, frame.origin.y, frame.size.width, frame.size.height, [view backgroundColor]);
362 for (UIView *child in [view subviews])
363 WBLogHierarchy(child, index++, indent + 1);
366 UIImage *$cacheForImage$(UIImage *image) {
367 CGColorSpaceRef space(CGColorSpaceCreateDeviceRGB());
368 CGRect rect = {CGPointMake(1, 1), [image size]};
369 CGSize size = {rect.size.width + 2, rect.size.height + 2};
371 CGContextRef context(CGBitmapContextCreate(NULL, size.width, size.height, 8, 4 * size.width, space, kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst));
372 CGColorSpaceRelease(space);
374 CGContextDrawImage(context, rect, [image CGImage]);
375 CGImageRef ref(CGBitmapContextCreateImage(context));
376 CGContextRelease(context);
378 UIImage *cache([UIImage imageWithCGImage:ref]);
384 /*MSHook(id, SBImageCache$initWithName$forImageWidth$imageHeight$initialCapacity$, SBImageCache *self, SEL sel, NSString *name, unsigned width, unsigned height, unsigned capacity) {
385 //if ([name isEqualToString:@"icons"]) return nil;
386 return _SBImageCache$initWithName$forImageWidth$imageHeight$initialCapacity$(self, sel, name, width, height, capacity);
389 MSHook(void, SBIconModel$cacheImageForIcon$, SBIconModel *self, SEL sel, SBIcon *icon) {
390 NSString *key([icon displayIdentifier]);
392 if (UIImage *image = [icon icon]) {
393 CGSize size = [image size];
394 if (size.width != 59 || size.height != 60) {
395 UIImage *cache($cacheForImage$(image));
396 [Cache_ setObject:cache forKey:key];
401 _SBIconModel$cacheImageForIcon$(self, sel, icon);
404 MSHook(void, SBIconModel$cacheImagesForIcon$, SBIconModel *self, SEL sel, SBIcon *icon) {
405 /* XXX: do I /really/ have to do this? figure out how to cache the small icon! */
406 _SBIconModel$cacheImagesForIcon$(self, sel, icon);
408 NSString *key([icon displayIdentifier]);
410 if (UIImage *image = [icon icon]) {
411 CGSize size = [image size];
412 if (size.width != 59 || size.height != 60) {
413 UIImage *cache($cacheForImage$(image));
414 [Cache_ setObject:cache forKey:key];
420 MSHook(UIImage *, SBIconModel$getCachedImagedForIcon$, SBIconModel *self, SEL sel, SBIcon *icon) {
421 NSString *key([icon displayIdentifier]);
422 if (UIImage *image = [Cache_ objectForKey:key])
425 return _SBIconModel$getCachedImagedForIcon$(self, sel, icon);
428 MSHook(UIImage *, SBIconModel$getCachedImagedForIcon$smallIcon$, SBIconModel *self, SEL sel, SBIcon *icon, BOOL small) {
430 return _SBIconModel$getCachedImagedForIcon$smallIcon$(self, sel, icon, small);
431 NSString *key([icon displayIdentifier]);
432 if (UIImage *image = [Cache_ objectForKey:key])
435 return _SBIconModel$getCachedImagedForIcon$smallIcon$(self, sel, icon, small);
438 MSHook(id, SBSearchView$initWithFrame$, id /* XXX: SBSearchView */ self, SEL sel, struct CGRect frame) {
439 if ((self = _SBSearchView$initWithFrame$(self, sel, frame)) != nil) {
440 [self setBackgroundColor:[UIColor clearColor]];
441 for (UIView *child in [self subviews])
442 [child setBackgroundColor:[UIColor clearColor]];
446 MSHook(id, SBSearchTableViewCell$initWithStyle$reuseIdentifier$, SBSearchTableViewCell *self, SEL sel, int style, NSString *reuse) {
447 if ((self = _SBSearchTableViewCell$initWithStyle$reuseIdentifier$(self, sel, style, reuse)) != nil) {
448 [self setBackgroundColor:[UIColor clearColor]];
452 MSHook(void, SBSearchTableViewCell$drawRect$, SBSearchTableViewCell *self, SEL sel, struct CGRect rect, BOOL selected) {
453 _SBSearchTableViewCell$drawRect$(self, sel, rect, selected);
454 float inset([self edgeInset]);
455 [[UIColor clearColor] set];
456 UIRectFill(CGRectMake(0, 0, inset, rect.size.height));
457 UIRectFill(CGRectMake(rect.size.width - inset, 0, inset, rect.size.height));
460 MSHook(UIImage *, SBApplicationIcon$icon, SBApplicationIcon *self, SEL sel) {
461 if (![Info_ wb$boolForKey:@"ComposeStoreIcons"])
462 if (NSString *path = $pathForIcon$([self application]))
463 return [UIImage imageWithContentsOfFile:path];
464 return _SBApplicationIcon$icon(self, sel);
467 MSHook(UIImage *, SBWidgetApplicationIcon$icon, SBWidgetApplicationIcon *self, SEL sel) {
469 NSLog(@"WB:Debug:Widget(%@:%@)", [self displayIdentifier], [self displayName]);
470 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Icons/%@.png", [self displayName]]]))
471 return [UIImage imageWithContentsOfFile:path];
472 return _SBWidgetApplicationIcon$icon(self, sel);
475 MSHook(UIImage *, SBBookmarkIcon$icon, SBBookmarkIcon *self, SEL sel) {
477 NSLog(@"WB:Debug:Bookmark(%@:%@)", [self displayIdentifier], [self displayName]);
478 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Icons/%@.png", [self displayName]]]))
479 return [UIImage imageWithContentsOfFile:path];
480 return _SBBookmarkIcon$icon(self, sel);
483 MSHook(NSString *, SBApplication$pathForIcon, SBApplication *self, SEL sel) {
484 if (NSString *path = $pathForIcon$(self))
486 return _SBApplication$pathForIcon(self, sel);
489 static UIImage *CachedImageAtPath(NSString *path) {
490 path = [path stringByResolvingSymlinksInPath];
491 UIImage *image = [PathImages_ objectForKey:path];
493 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
494 image = [[UIImage alloc] initWithContentsOfFile:path cache:true];
496 image = [image autorelease];
497 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:path];
501 MSHook(CGImageRef, _UIImageRefAtPath, NSString *name, bool cache, UIImageOrientation *orientation) {
503 NSLog(@"WB:Debug: _UIImageRefAtPath(\"%@\", %s)", name, cache ? "true" : "false");
504 return __UIImageRefAtPath([name wb$themedPath], cache, orientation);
507 /*MSHook(UIImage *, _UIImageAtPath, NSString *name, NSBundle *bundle) {
509 return __UIImageAtPath(name, nil);
511 NSString *key = [NSString stringWithFormat:@"B:%@/%@", [bundle bundleIdentifier], name];
512 UIImage *image = [PathImages_ objectForKey:key];
514 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
516 NSLog(@"WB:Debug: _UIImageAtPath(\"%@\", %@)", name, bundle);
517 if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
518 image = CachedImageAtPath(path);
520 image = __UIImageAtPath(name, bundle);
521 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
526 MSHook(UIImage *, _UIApplicationImageWithName, NSString *name) {
527 NSBundle *bundle = [NSBundle mainBundle];
529 NSLog(@"WB:Debug: _UIApplicationImageWithName(\"%@\", %@)", name, bundle);
530 if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
531 return CachedImageAtPath(path);
532 return __UIApplicationImageWithName(name);
535 #define WBDelegate(delegate) \
536 - (NSMethodSignature*) methodSignatureForSelector:(SEL)sel { \
538 NSLog(@"WB:MS:%s:(%s)", class_getName([self class]), sel_getName(sel)); \
539 if (NSMethodSignature *sig = [delegate methodSignatureForSelector:sel]) \
541 NSLog(@"WB:Error: [%s methodSignatureForSelector:(%s)]", class_getName([self class]), sel_getName(sel)); \
545 - (void) forwardInvocation:(NSInvocation*)inv { \
546 SEL sel = [inv selector]; \
547 if ([delegate respondsToSelector:sel]) \
548 [inv invokeWithTarget:delegate]; \
550 NSLog(@"WB:Error: [%s forwardInvocation:(%s)]", class_getName([self class]), sel_getName(sel)); \
553 MSHook(NSString *, NSBundle$pathForResource$ofType$, NSBundle *self, SEL sel, NSString *resource, NSString *type) {
554 NSString *file = type == nil ? resource : [NSString stringWithFormat:@"%@.%@", resource, type];
556 NSLog(@"WB:Debug: [NSBundle(%@) pathForResource:\"%@\"]", [self bundleIdentifier], file);
557 if (NSString *path = $pathForFile$inBundle$(file, self, false))
559 return _NSBundle$pathForResource$ofType$(self, sel, resource, type);
562 void $setBarStyle$_(NSString *name, int &style) {
564 NSLog(@"WB:Debug:%@Style:%d", name, style);
565 NSNumber *number = nil;
567 number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style-%d", name, style]];
569 number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style", name]];
571 style = [number intValue];
573 NSLog(@"WB:Debug:%@Style=%d", name, style);
577 MSHook(void, SBCalendarIconContentsView$drawRect$, SBCalendarIconContentsView *self, SEL sel, CGRect rect) {
578 NSBundle *bundle([NSBundle mainBundle]);
580 CFLocaleRef locale(CFLocaleCopyCurrent());
581 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, locale, kCFDateFormatterNoStyle, kCFDateFormatterNoStyle));
584 CFDateRef now(CFDateCreate(NULL, CFAbsoluteTimeGetCurrent()));
586 CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NUMBER_FORMAT" value:@"" table:@"SpringBoard"]);
587 CFStringRef date(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
588 CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NAME_FORMAT" value:@"cccc" table:@"SpringBoard"]);
589 CFStringRef day(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
593 CFRelease(formatter);
595 UIDevice *device([UIDevice currentDevice]);
596 bool isWild([device respondsToSelector:@selector(isWildcat)] && [device isWildcat]);
598 NSString *datestyle([@""
599 "font-family: Helvetica; "
600 "font-weight: bold; "
603 "" stringByAppendingString:(isWild
604 ? @"font-size: 54px; "
605 : @"font-size: 39px; "
608 NSString *daystyle([@""
609 "font-family: Helvetica; "
610 "font-weight: bold; "
612 "text-shadow: rgba(0, 0, 0, 0.2) -1px -1px 2px; "
613 "" stringByAppendingString:(isWild
614 ? @"font-size: 11px; "
615 : @"font-size: 9px; "
618 if (NSString *style = [Info_ objectForKey:@"CalendarIconDateStyle"])
619 datestyle = [datestyle stringByAppendingString:style];
620 if (NSString *style = [Info_ objectForKey:@"CalendarIconDayStyle"])
621 daystyle = [daystyle stringByAppendingString:style];
623 float width([self bounds].size.width);
625 CGSize datesize = [(NSString *)date sizeWithStyle:datestyle forWidth:(width + leeway)];
626 CGSize daysize = [(NSString *)day sizeWithStyle:daystyle forWidth:(width + leeway)];
628 unsigned base(isWild ? 89 : 70);
629 if ($GSFontGetUseLegacyFontMetrics())
632 [(NSString *)date drawAtPoint:CGPointMake(
633 (width + 1 - datesize.width) / 2, (base - datesize.height) / 2
634 ) withStyle:datestyle];
636 [(NSString *)day drawAtPoint:CGPointMake(
637 (width + 1 - daysize.width) / 2, ((isWild ? 18 : 16) - daysize.height) / 2
638 ) withStyle:daystyle];
644 /*static id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
647 if (NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"])
648 style = [number intValue];
650 if (UIColor *color = [Info_ wb$colorForKey:@"NavigationBarTint"])
653 return [self wb$initWithFrame:frame withBarStyle:style withTintColor:tint];
656 /*static id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
657 self = [self wb$initWithCoder:coder];
660 UINavigationBar$setBarStyle$_(self);
664 static id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
665 self = [self wb$initWithFrame:frame];
668 UINavigationBar$setBarStyle$_(self);
672 MSHook(void, UIToolbar$setBarStyle$, UIToolbar *self, SEL sel, int style) {
673 $setBarStyle$_(@"Toolbar", style);
674 return _UIToolbar$setBarStyle$(self, sel, style);
677 MSHook(void, UINavigationBar$setBarStyle$, UINavigationBar *self, SEL sel, int style) {
678 $setBarStyle$_(@"NavigationBar", style);
679 return _UINavigationBar$setBarStyle$(self, sel, style);
682 MSHook(void, SBButtonBar$didMoveToSuperview, UIView *self, SEL sel) {
683 [[self superview] setBackgroundColor:[UIColor clearColor]];
684 _SBButtonBar$didMoveToSuperview(self, sel);
687 MSHook(void, SBStatusBarContentsView$didMoveToSuperview, UIView *self, SEL sel) {
688 [[self superview] setBackgroundColor:[UIColor clearColor]];
689 _SBStatusBarContentsView$didMoveToSuperview(self, sel);
692 MSHook(UIImage *, UIImage$defaultDesktopImage, UIImage *self, SEL sel) {
694 NSLog(@"WB:Debug:DefaultDesktopImage");
695 if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"LockBackground.png", @"LockBackground.jpg", nil]))
696 return [UIImage imageWithContentsOfFile:path];
697 return _UIImage$defaultDesktopImage(self, sel);
700 static NSArray *Wallpapers_;
701 static NSString *WallpaperFile_;
702 static UIImageView *WallpaperImage_;
703 static UIWebDocumentView *WallpaperPage_;
704 static NSURL *WallpaperURL_;
706 #define _release(object) \
707 do if (object != nil) { \
712 MSHook(id, SBUIController$init, SBUIController *self, SEL sel) {
713 self = _SBUIController$init(self, sel);
717 UIWindow *&_window(MSHookIvar<UIWindow *>(self, "_window"));
718 UIView *&_contentLayer(MSHookIvar<UIView *>(self, "_contentLayer"));
719 UIView *&_contentView(MSHookIvar<UIView *>(self, "_contentView"));
722 if (&_contentLayer != NULL)
723 layer = _contentLayer;
724 else if (&_contentView != NULL)
725 layer = _contentView;
729 UIView *content([[[UIView alloc] initWithFrame:[layer frame]] autorelease]);
730 [content setBackgroundColor:[layer backgroundColor]];
731 [layer setBackgroundColor:[UIColor clearColor]];
732 [layer setFrame:[content bounds]];
733 [_window setContentView:content];
735 _release(WallpaperFile_);
736 _release(WallpaperImage_);
737 _release(WallpaperPage_);
738 _release(WallpaperURL_);
740 if (NSString *theme = $getTheme$(Wallpapers_, true)) {
741 NSString *mp4 = [theme stringByAppendingPathComponent:@"Wallpaper.mp4"];
742 if ([Manager_ fileExistsAtPath:mp4]) {
746 static AVController *controller_(nil);
747 if (controller_ == nil) {
748 AVQueue *queue([AVQueue avQueue]);
749 controller_ = [[AVController avControllerWithQueue:queue error:&error] retain];
752 AVQueue *queue([controller_ queue]);
754 UIView *video([[[UIView alloc] initWithFrame:[content bounds]] autorelease]);
755 [controller_ setLayer:[video _layer]];
757 AVItem *item([[[AVItem alloc] initWithPath:mp4 error:&error] autorelease]);
758 [queue appendItem:item error:&error];
760 [controller_ play:&error];
761 #elif UseMPMoviePlayerController
762 NSURL *url([NSURL fileURLWithPath:mp4]);
763 MPMoviePlayerController *controller = [[$MPMoviePlayerController alloc] initWithContentURL:url];
764 controller.movieControlMode = MPMovieControlModeHidden;
767 MPVideoView *video = [[[$MPVideoView alloc] initWithFrame:[content bounds]] autorelease];
768 [video setMovieWithPath:mp4];
769 [video setRepeatMode:1];
770 [video setRepeatGap:-1];
771 [video playFromBeginning];;
774 [content addSubview:video];
777 NSString *png = [theme stringByAppendingPathComponent:@"Wallpaper.png"];
778 NSString *jpg = [theme stringByAppendingPathComponent:@"Wallpaper.jpg"];
781 if ([Manager_ fileExistsAtPath:png])
783 else if ([Manager_ fileExistsAtPath:jpg])
789 image = [[UIImage alloc] initWithContentsOfFile:path];
791 image = [image autorelease];
795 WallpaperFile_ = [path retain];
796 WallpaperImage_ = [[UIImageView alloc] initWithImage:image];
797 if (NSNumber *number = [Info_ objectForKey:@"WallpaperAlpha"])
798 [WallpaperImage_ setAlpha:[number floatValue]];
799 [content addSubview:WallpaperImage_];
802 NSString *html = [theme stringByAppendingPathComponent:@"Wallpaper.html"];
803 if ([Manager_ fileExistsAtPath:html]) {
804 CGRect bounds = [content bounds];
806 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
807 [view setAutoresizes:true];
809 WallpaperPage_ = [view retain];
810 WallpaperURL_ = [[NSURL fileURLWithPath:html] retain];
812 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
814 [view setBackgroundColor:[UIColor clearColor]];
815 if ([view respondsToSelector:@selector(setDrawsBackground:)])
816 [view setDrawsBackground:NO];
817 [[view webView] setDrawsBackground:NO];
819 [content addSubview:view];
823 for (size_t i(0), e([themes_ count]); i != e; ++i) {
824 NSString *theme = [themes_ objectAtIndex:(e - i - 1)];
825 NSString *html = [theme stringByAppendingPathComponent:@"Widget.html"];
826 if ([Manager_ fileExistsAtPath:html]) {
827 CGRect bounds = [content bounds];
829 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
830 [view setAutoresizes:true];
832 NSURL *url = [NSURL fileURLWithPath:html];
833 [view loadRequest:[NSURLRequest requestWithURL:url]];
835 [view setBackgroundColor:[UIColor clearColor]];
836 if ([view respondsToSelector:@selector(setDrawsBackground:)])
837 [view setDrawsBackground:NO];
838 [[view webView] setDrawsBackground:NO];
840 [content addSubview:view];
844 [content addSubview:layer];
849 MSHook(void, SBAwayView$updateDesktopImage$, SBAwayView *self, SEL sel, UIImage *image) {
850 NSString *path = $getTheme$([NSArray arrayWithObject:@"LockBackground.html"]);
851 UIView *&_backgroundView(MSHookIvar<UIView *>(self, "_backgroundView"));
853 if (path != nil && _backgroundView != nil)
856 _SBAwayView$updateDesktopImage$(self, sel, image);
859 CGRect bounds = [self bounds];
861 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
862 [view setAutoresizes:true];
864 if (WallpaperPage_ != nil)
865 [WallpaperPage_ release];
866 WallpaperPage_ = [view retain];
868 if (WallpaperURL_ != nil)
869 [WallpaperURL_ release];
870 WallpaperURL_ = [[NSURL fileURLWithPath:path] retain];
872 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
874 [[view webView] setDrawsBackground:false];
875 [view setBackgroundColor:[UIColor clearColor]];
877 [self insertSubview:view aboveSubview:_backgroundView];
881 /*extern "C" CGColorRef CGGStateGetSystemColor(void *);
882 extern "C" CGColorRef CGGStateGetFillColor(void *);
883 extern "C" CGColorRef CGGStateGetStrokeColor(void *);
884 extern "C" NSString *UIStyleStringFromColor(CGColorRef);*/
886 /* WBTimeLabel {{{ */
887 @interface WBTimeLabel : NSProxy {
889 _transient SBStatusBarTimeView *view_;
892 - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view;
896 @implementation WBTimeLabel
903 - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view {
904 time_ = [time retain];
909 - (NSString *) description {
915 - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
916 if (NSString *custom = [Info_ objectForKey:@"TimeStyle"]) {
917 BOOL &_mode(MSHookIvar<BOOL>(view_, "_mode"));;
919 [time_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
920 "font-family: Helvetica; "
921 "font-weight: bold; "
924 "%@", _mode ? @"white" : @"black", custom]];
929 return [time_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
934 /* WBBadgeLabel {{{ */
935 @interface WBBadgeLabel : NSProxy {
939 - (id) initWithBadge:(NSString *)badge;
940 - (NSString *) description;
944 @implementation WBBadgeLabel
951 - (id) initWithBadge:(NSString *)badge {
952 badge_ = [badge retain];
956 - (NSString *) description {
957 return [badge_ description];
962 - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
963 if (NSString *custom = [Info_ objectForKey:@"BadgeStyle"]) {
964 [badge_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
965 "font-family: Helvetica; "
966 "font-weight: bold; "
974 return [badge_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
980 MSHook(void, SBIcon$setAlpha$, SBIcon *self, SEL sel, float alpha) {
981 if (NSNumber *number = [Info_ objectForKey:@"IconAlpha"])
982 alpha = [number floatValue];
983 return _SBIcon$setAlpha$(self, sel, alpha);
986 MSHook(id, SBIconBadge$initWithBadge$, SBIconBadge *self, SEL sel, NSString *badge) {
987 if ((self = _SBIconBadge$initWithBadge$(self, sel, badge)) != nil) {
988 id &_badge(MSHookIvar<id>(self, "_badge"));
990 if (id label = [[WBBadgeLabel alloc] initWithBadge:[_badge autorelease]])
995 void SBStatusBarController$setStatusBarMode(int &mode) {
997 NSLog(@"WB:Debug:setStatusBarMode:%d", mode);
998 if (mode < 100) // 104:hidden 105:glowing
999 if (NSNumber *number = [Info_ objectForKey:@"StatusBarMode"])
1000 mode = [number intValue];
1003 /*MSHook(void, SBStatusBarController$setStatusBarMode$orientation$duration$animation$, SBStatusBarController *self, SEL sel, int mode, int orientation, double duration, int animation) {
1004 NSLog(@"mode:%d orientation:%d duration:%f animation:%d", mode, orientation, duration, animation);
1005 SBStatusBarController$setStatusBarMode(mode);
1006 return _SBStatusBarController$setStatusBarMode$orientation$duration$animation$(self, sel, mode, orientation, duration, animation);
1009 MSHook(void, SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$, SBStatusBarController *self, SEL sel, int mode, int orientation, float duration, int fenceID, int animation) {
1010 //NSLog(@"mode:%d orientation:%d duration:%f fenceID:%d animation:%d", mode, orientation, duration, fenceID, animation);
1011 SBStatusBarController$setStatusBarMode(mode);
1012 return _SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$(self, sel, mode, orientation, duration, fenceID, animation);
1015 MSHook(void, SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$startTime$, SBStatusBarController *self, SEL sel, int mode, int orientation, double duration, int fenceID, int animation, double startTime) {
1016 //NSLog(@"mode:%d orientation:%d duration:%f fenceID:%d animation:%d startTime:%f", mode, orientation, duration, fenceID, animation, startTime);
1017 SBStatusBarController$setStatusBarMode(mode);
1018 //NSLog(@"mode=%u", mode);
1019 return _SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$startTime$(self, sel, mode, orientation, duration, fenceID, animation, startTime);
1022 /*MSHook(id, SBStatusBarContentsView$initWithStatusBar$mode$, SBStatusBarContentsView *self, SEL sel, id bar, int mode) {
1023 if (NSNumber *number = [Info_ objectForKey:@"StatusBarContentsMode"])
1024 mode = [number intValue];
1025 return _SBStatusBarContentsView$initWithStatusBar$mode$(self, sel, bar, mode);
1028 MSHook(NSString *, SBStatusBarOperatorNameView$operatorNameStyle, SBStatusBarOperatorNameView *self, SEL sel) {
1029 NSString *style(_SBStatusBarOperatorNameView$operatorNameStyle(self, sel));
1031 NSLog(@"operatorNameStyle= %@", style);
1032 if (NSString *custom = [Info_ objectForKey:@"OperatorNameStyle"])
1033 style = [NSString stringWithFormat:@"%@; %@", style, custom];
1037 MSHook(void, SBStatusBarOperatorNameView$setOperatorName$fullSize$, SBStatusBarOperatorNameView *self, SEL sel, NSString *name, BOOL full) {
1039 NSLog(@"setOperatorName:\"%@\" fullSize:%u", name, full);
1040 return _SBStatusBarOperatorNameView$setOperatorName$fullSize$(self, sel, name, NO);
1043 // XXX: replace this with [SBStatusBarTimeView tile]
1044 MSHook(void, SBStatusBarTimeView$drawRect$, SBStatusBarTimeView *self, SEL sel, CGRect rect) {
1045 id &_time(MSHookIvar<id>(self, "_time"));
1046 if (_time != nil && [_time class] != [WBTimeLabel class])
1047 object_setInstanceVariable(self, "_time", reinterpret_cast<void *>([[WBTimeLabel alloc] initWithTime:[_time autorelease] view:self]));
1048 return _SBStatusBarTimeView$drawRect$(self, sel, rect);
1051 @interface UIView (WinterBoard)
1052 - (bool) wb$isWBImageView;
1053 - (void) wb$logHierarchy;
1056 @implementation UIView (WinterBoard)
1058 - (bool) wb$isWBImageView {
1062 - (void) wb$logHierarchy {
1063 WBLogHierarchy(self);
1068 @interface WBImageView : UIImageView {
1071 - (bool) wb$isWBImageView;
1072 - (void) wb$updateFrame;
1075 @implementation WBImageView
1077 - (bool) wb$isWBImageView {
1081 - (void) wb$updateFrame {
1082 CGRect frame([self frame]);
1085 for (UIView *view(self); ; ) {
1086 view = [view superview];
1089 frame.origin.y -= [view frame].origin.y;
1092 [self setFrame:frame];
1097 MSHook(void, SBIconList$setFrame$, SBIconList *self, SEL sel, CGRect frame) {
1098 NSArray *subviews([self subviews]);
1099 WBImageView *view([subviews count] == 0 ? nil : [subviews objectAtIndex:0]);
1100 if (view != nil && [view wb$isWBImageView])
1101 [view wb$updateFrame];
1102 _SBIconList$setFrame$(self, sel, frame);
1105 MSHook(void, SBIconController$noteNumberOfIconListsChanged, SBIconController *self, SEL sel) {
1106 SBIconModel *&_iconModel(MSHookIvar<SBIconModel *>(self, "_iconModel"));
1107 NSArray *lists([_iconModel iconLists]);
1109 for (unsigned i(0), e([lists count]); i != e; ++i)
1110 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Page%u.png", i]])) {
1111 SBIconList *list([lists objectAtIndex:i]);
1112 NSArray *subviews([list subviews]);
1114 WBImageView *view([subviews count] == 0 ? nil : [subviews objectAtIndex:0]);
1115 if (view == nil || ![view wb$isWBImageView]) {
1116 view = [[[WBImageView alloc] init] autorelease];
1117 [list insertSubview:view atIndex:0];
1120 UIImage *image([UIImage imageWithContentsOfFile:path]);
1122 CGRect frame([view frame]);
1123 frame.size = [image size];
1124 [view setFrame:frame];
1126 [view setImage:image];
1127 [view wb$updateFrame];
1130 return _SBIconController$noteNumberOfIconListsChanged(self, sel);
1133 MSHook(id, SBIconLabel$initWithSize$label$, SBIconLabel *self, SEL sel, CGSize size, NSString *label) {
1134 self = _SBIconLabel$initWithSize$label$(self, sel, size, label);
1136 [self setClipsToBounds:NO];
1140 MSHook(void, SBIconLabel$setInDock$, SBIconLabel *self, SEL sel, BOOL docked) {
1141 id &_label(MSHookIvar<id>(self, "_label"));
1142 if (![Info_ wb$boolForKey:@"UndockedIconLabels"])
1144 if (_label != nil && [_label respondsToSelector:@selector(setInDock:)])
1145 [_label setInDock:docked];
1146 return _SBIconLabel$setInDock$(self, sel, docked);
1149 MSHook(NSString *, NSBundle$localizedStringForKey$value$table$, NSBundle *self, SEL sel, NSString *key, NSString *value, NSString *table) {
1150 NSString *identifier = [self bundleIdentifier];
1151 NSLocale *locale = [NSLocale currentLocale];
1152 NSString *language = [locale objectForKey:NSLocaleLanguageCode];
1154 NSLog(@"WB:Debug:[NSBundle(%@) localizedStringForKey:\"%@\" value:\"%@\" table:\"%@\"] (%@)", identifier, key, value, table, language);
1155 NSString *file = table == nil ? @"Localizable" : table;
1156 NSString *name = [NSString stringWithFormat:@"%@:%@", identifier, file];
1157 NSDictionary *strings;
1158 if ((strings = [Strings_ objectForKey:name]) != nil) {
1159 if (static_cast<id>(strings) != [NSNull null]) strings:
1160 if (NSString *value = [strings objectForKey:key])
1162 } else if (NSString *path = $pathForFile$inBundle$([NSString stringWithFormat:@"%@.lproj/%@.strings",
1165 if ((strings = [[NSDictionary alloc] initWithContentsOfFile:path]) != nil) {
1166 [Strings_ setObject:[strings autorelease] forKey:name];
1170 [Strings_ setObject:[NSNull null] forKey:name];
1171 return _NSBundle$localizedStringForKey$value$table$(self, sel, key, value, table);
1174 @class WebCoreFrameBridge;
1175 MSHook(CGSize, WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$, WebCoreFrameBridge *self, SEL sel, id node, float width) {
1178 void **core(reinterpret_cast<void **>([node _node]));
1179 if (core == NULL || core[6] == NULL)
1181 return _WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$(self, sel, node, width);
1184 MSHook(void, SBIconLabel$drawRect$, SBIconLabel *self, SEL sel, CGRect rect) {
1185 CGRect bounds = [self bounds];
1187 static Ivar drawMoreLegibly = object_getInstanceVariable(self, "_drawMoreLegibly", NULL);
1190 Ivar ivar = object_getInstanceVariable(self, "_inDock", reinterpret_cast<void **>(&docked));
1191 docked = (docked & (ivar_getOffset(ivar) == ivar_getOffset(drawMoreLegibly) ? 0x2 : 0x1)) != 0;
1193 NSString *label(MSHookIvar<NSString *>(self, "_label"));
1195 UIDevice *device([UIDevice currentDevice]);
1196 bool isWild([device respondsToSelector:@selector(isWildcat)] && [device isWildcat]);
1198 NSString *style = [NSString stringWithFormat:@""
1199 "font-family: Helvetica; "
1200 "font-weight: bold; "
1202 "", (docked || !SummerBoard_ ? @"white" : @"#b3b3b3"), (isWild
1203 ? @"font-size: 12px; "
1204 : @"font-size: 11px; "
1208 style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 0px; "];
1210 style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; "];
1212 bool ellipsis(false);
1213 float max = 75, width;
1215 width = [(ellipsis ? [label stringByAppendingString:@"..."] : label) sizeWithStyle:style forWidth:320].width;
1218 size_t length([label length]);
1219 float spacing((width - max) / (length - 1));
1221 if (spacing > 1.25) {
1223 label = [label substringToIndex:(length - 1)];
1227 style = [style stringByAppendingString:[NSString stringWithFormat:@"letter-spacing: -%f; ", spacing]];
1231 label = [label stringByAppendingString:@"..."];
1233 if (NSString *custom = [Info_ objectForKey:(docked ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle")])
1234 style = [style stringByAppendingString:custom];
1236 CGSize size = [label sizeWithStyle:style forWidth:bounds.size.width];
1237 [label drawAtPoint:CGPointMake((bounds.size.width - size.width) / 2, 0) withStyle:style];
1240 MSHook(void, CKMessageCell$addBalloonView$, id self, SEL sel, CKBalloonView *balloon) {
1241 _CKMessageCell$addBalloonView$(self, sel, balloon);
1242 [balloon setBackgroundColor:[UIColor clearColor]];
1245 MSHook(id, CKMessageCell$initWithStyle$reuseIdentifier$, id self, SEL sel, int style, NSString *reuse) {
1246 if ((self = _CKMessageCell$initWithStyle$reuseIdentifier$(self, sel, style, reuse)) != nil) {
1247 [[self contentView] setBackgroundColor:[UIColor clearColor]];
1251 MSHook(id, CKTimestampView$initWithStyle$reuseIdentifier$, id self, SEL sel, int style, NSString *reuse) {
1252 if ((self = _CKTimestampView$initWithStyle$reuseIdentifier$(self, sel, style, reuse)) != nil) {
1253 UILabel *&_label(MSHookIvar<UILabel *>(self, "_label"));
1254 [_label setBackgroundColor:[UIColor clearColor]];
1258 MSHook(void, CKTranscriptTableView$setSeparatorStyle$, id self, SEL sel, int style) {
1259 _CKTranscriptTableView$setSeparatorStyle$(self, sel, UITableViewCellSeparatorStyleNone);
1262 MSHook(id, CKTranscriptTableView$initWithFrame$style$, id self, SEL sel, CGRect frame, int style) {
1264 if ((self = _CKTranscriptTableView$initWithFrame$style$(self, sel, frame, style)) != nil) {
1265 [self setSeparatorStyle:UITableViewCellSeparatorStyleNone];
1269 MSHook(void, TranscriptController$loadView, mSMSMessageTranscriptController *self, SEL sel) {
1270 _TranscriptController$loadView(self, sel);
1272 if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"SMSBackground.png", @"SMSBackground.jpg", nil]))
1273 if (UIImage *image = [[UIImage alloc] initWithContentsOfFile:path]) {
1274 [image autorelease];
1276 UIView *&_transcriptTable(MSHookIvar<UIView *>(self, "_transcriptTable"));
1277 UIView *&_transcriptLayer(MSHookIvar<UIView *>(self, "_transcriptLayer"));
1279 if (&_transcriptTable != NULL)
1280 table = _transcriptTable;
1281 else if (&_transcriptLayer != NULL)
1282 table = _transcriptLayer;
1286 UIView *placard(table != nil ? [table superview] : MSHookIvar<UIView *>(self, "_backPlacard"));
1287 UIImageView *background([[[UIImageView alloc] initWithImage:image] autorelease]);
1290 [placard insertSubview:background atIndex:0];
1292 [table setBackgroundColor:[UIColor clearColor]];
1293 [placard insertSubview:background belowSubview:table];
1298 MSHook(UIImage *, _UIImageWithName, NSString *name) {
1299 int id(_UISharedImageNameGetIdentifier(name));
1301 NSLog(@"WB:Debug: _UIImageWithName(\"%@\": %d)", name, id);
1304 return _UIImageAtPath(name, _UIKitBundle());
1306 NSNumber *key([NSNumber numberWithInt:id]);
1307 UIImage *image = [UIImages_ objectForKey:key];
1309 return reinterpret_cast<id>(image) == [NSNull null] ? _UISharedImageWithIdentifier(id) : image;
1310 if (NSString *path = $pathForFile$inBundle$(name, _UIKitBundle(), true)) {
1311 image = [[UIImage alloc] initWithContentsOfFile:path cache:true];
1313 [image autorelease];
1315 [UIImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
1316 return image == nil ? _UISharedImageWithIdentifier(id) : image;
1320 MSHook(UIImage *, _UIImageWithNameInDomain, NSString *name, NSString *domain) {
1321 NSString *key([NSString stringWithFormat:@"D:%zu%@%@", [domain length], domain, name]);
1322 UIImage *image([PathImages_ objectForKey:key]);
1324 return reinterpret_cast<id>(image) == [NSNull null] ? __UIImageWithNameInDomain(name, domain) : image;
1326 NSLog(@"WB:Debug: UIImageWithNameInDomain(\"%@\", \"%@\")", name, domain);
1327 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Domains/%@/%@", domain, name]])) {
1328 image = [[UIImage alloc] initWithContentsOfFile:path];
1330 [image autorelease];
1332 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
1333 return image == nil ? __UIImageWithNameInDomain(name, domain) : image;
1336 MSHook(GSFontRef, GSFontCreateWithName, const char *name, GSFontSymbolicTraits traits, float size) {
1338 NSLog(@"WB:Debug: GSFontCreateWithName(\"%s\", %f)", name, size);
1339 if (NSString *font = [Info_ objectForKey:[NSString stringWithFormat:@"FontName-%s", name]])
1340 name = [font UTF8String];
1341 return _GSFontCreateWithName(name, traits, size);
1344 #define AudioToolbox "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox"
1345 #define UIKit "/System/Library/Frameworks/UIKit.framework/UIKit"
1347 bool (*_Z24GetFileNameForThisActionmPcRb)(unsigned long a0, char *a1, bool &a2);
1349 MSHook(bool, _Z24GetFileNameForThisActionmPcRb, unsigned long a0, char *a1, bool &a2) {
1351 NSLog(@"WB:Debug:GetFileNameForThisAction(%u, %p, %u)", a0, a1, a2);
1352 bool value = __Z24GetFileNameForThisActionmPcRb(a0, a1, a2);
1354 NSLog(@"WB:Debug:GetFileNameForThisAction(%u, %s, %u) = %u", a0, value ? a1 : NULL, a2, value);
1357 NSString *path = [NSString stringWithUTF8String:a1];
1358 if ([path hasPrefix:@"/System/Library/Audio/UISounds/"]) {
1359 NSString *file = [path substringFromIndex:31];
1360 for (NSString *theme in themes_) {
1361 NSString *path([NSString stringWithFormat:@"%@/UISounds/%@", theme, file]);
1362 if ([Manager_ fileExistsAtPath:path]) {
1363 strcpy(a1, [path UTF8String]);
1372 static void ChangeWallpaper(
1373 CFNotificationCenterRef center,
1377 CFDictionaryRef info
1380 NSLog(@"WB:Debug:ChangeWallpaper!");
1383 if (WallpaperFile_ != nil) {
1384 image = [[UIImage alloc] initWithContentsOfFile:WallpaperFile_];
1386 image = [image autorelease];
1389 if (WallpaperImage_ != nil)
1390 [WallpaperImage_ setImage:image];
1391 if (WallpaperPage_ != nil)
1392 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
1396 #define WBRename(name, sel, imp) \
1397 _ ## name ## $ ## imp = MSHookMessage($ ## name, @selector(sel), &$ ## name ## $ ## imp)
1399 template <typename Type_>
1400 static void nlset(Type_ &function, struct nlist *nl, size_t index) {
1401 struct nlist &name(nl[index]);
1402 uintptr_t value(name.n_value);
1403 if ((name.n_desc & N_ARM_THUMB_DEF) != 0)
1404 value |= 0x00000001;
1405 function = reinterpret_cast<Type_>(value);
1408 template <typename Type_>
1409 static void dlset(Type_ &function, const char *name) {
1410 function = reinterpret_cast<Type_>(dlsym(RTLD_DEFAULT, name));
1413 extern "C" void WBInitialize() {
1414 NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
1416 NSString *identifier([[NSBundle mainBundle] bundleIdentifier]);
1418 NSLog(@"WB:Notice: WinterBoard");
1420 dlset(_GSFontGetUseLegacyFontMetrics, "GSFontGetUseLegacyFontMetrics");
1424 memset(nl, 0, sizeof(nl));
1425 nl[0].n_un.n_name = (char *) "__UIApplicationImageWithName";
1426 nl[1].n_un.n_name = (char *) "__UIImageAtPath";
1427 nl[2].n_un.n_name = (char *) "__UIImageRefAtPath";
1428 nl[3].n_un.n_name = (char *) "__UIImageWithNameInDomain";
1429 nl[4].n_un.n_name = (char *) "__UIKitBundle";
1430 nl[5].n_un.n_name = (char *) "__UISharedImageNameGetIdentifier";
1431 nl[6].n_un.n_name = (char *) "__UISharedImageWithIdentifier";
1434 nlset(_UIApplicationImageWithName, nl, 0);
1435 nlset(_UIImageAtPath, nl, 1);
1436 nlset(_UIImageRefAtPath, nl, 2);
1437 nlset(_UIImageWithNameInDomain, nl, 3);
1438 nlset(_UIKitBundle, nl, 4);
1439 nlset(_UISharedImageNameGetIdentifier, nl, 5);
1440 nlset(_UISharedImageWithIdentifier, nl, 6);
1442 MSHookFunction(_UIApplicationImageWithName, &$_UIApplicationImageWithName, &__UIApplicationImageWithName);
1443 MSHookFunction(_UIImageRefAtPath, &$_UIImageRefAtPath, &__UIImageRefAtPath);
1444 MSHookFunction(_UIImageWithName, &$_UIImageWithName, &__UIImageWithName);
1445 MSHookFunction(_UIImageWithNameInDomain, &$_UIImageWithNameInDomain, &__UIImageWithNameInDomain);
1447 MSHookFunction(&GSFontCreateWithName, &$GSFontCreateWithName, &_GSFontCreateWithName);
1449 if (dlopen(AudioToolbox, RTLD_LAZY | RTLD_NOLOAD) != NULL) {
1451 memset(nl, 0, sizeof(nl));
1452 nl[0].n_un.n_name = (char *) "__Z24GetFileNameForThisActionmPcRb";
1453 nlist(AudioToolbox, nl);
1454 nlset(_Z24GetFileNameForThisActionmPcRb, nl, 0);
1455 MSHookFunction(_Z24GetFileNameForThisActionmPcRb, &$_Z24GetFileNameForThisActionmPcRb, &__Z24GetFileNameForThisActionmPcRb);
1458 $NSBundle = objc_getClass("NSBundle");
1460 _NSBundle$localizedStringForKey$value$table$ = MSHookMessage($NSBundle, @selector(localizedStringForKey:value:table:), &$NSBundle$localizedStringForKey$value$table$);
1461 _NSBundle$pathForResource$ofType$ = MSHookMessage($NSBundle, @selector(pathForResource:ofType:), &$NSBundle$pathForResource$ofType$);
1463 $UIImage = objc_getClass("UIImage");
1464 $UINavigationBar = objc_getClass("UINavigationBar");
1465 $UIToolbar = objc_getClass("UIToolbar");
1467 _UIImage$defaultDesktopImage = MSHookMessage(object_getClass($UIImage), @selector(defaultDesktopImage), &$UIImage$defaultDesktopImage);
1469 //WBRename("UINavigationBar", @selector(initWithCoder:), (IMP) &UINavigationBar$initWithCoder$);
1470 //WBRename("UINavigationBarBackground", @selector(initWithFrame:withBarStyle:withTintColor:), (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
1472 _UINavigationBar$setBarStyle$ = MSHookMessage($UINavigationBar, @selector(setBarStyle:), &$UINavigationBar$setBarStyle$);
1473 _UIToolbar$setBarStyle$ = MSHookMessage($UIToolbar, @selector(setBarStyle:), &$UIToolbar$setBarStyle$);
1475 Manager_ = [[NSFileManager defaultManager] retain];
1476 UIImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
1477 PathImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
1478 Strings_ = [[NSMutableDictionary alloc] initWithCapacity:0];
1479 Bundles_ = [[NSMutableDictionary alloc] initWithCapacity:2];
1480 Themed_ = [[NSMutableDictionary alloc] initWithCapacity:128];
1482 themes_ = [[NSMutableArray alloc] initWithCapacity:8];
1484 if (NSDictionary *settings = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"/User/Library/Preferences/com.saurik.WinterBoard.plist"]]) {
1485 if (NSNumber *value = [settings objectForKey:@"SummerBoard"])
1486 SummerBoard_ = [value boolValue];
1487 if (NSNumber *value = [settings objectForKey:@"Debug"])
1488 Debug_ = [value boolValue];
1490 NSArray *themes([settings objectForKey:@"Themes"]);
1492 if (NSString *theme = [settings objectForKey:@"Theme"])
1493 themes = [NSArray arrayWithObject:[NSDictionary dictionaryWithObjectsAndKeys:
1495 [NSNumber numberWithBool:true], @"Active",
1499 for (NSDictionary *theme in themes) {
1500 NSNumber *active([theme objectForKey:@"Active"]);
1501 if (![active boolValue])
1504 NSString *name([theme objectForKey:@"Name"]);
1508 NSString *theme(nil);
1510 #define testForTheme(format...) \
1511 if (theme == nil) { \
1512 NSString *path = [NSString stringWithFormat:format]; \
1513 if ([Manager_ fileExistsAtPath:path]) { \
1514 [themes_ addObject:path]; \
1519 testForTheme(@"/Library/Themes/%@.theme", name)
1520 testForTheme(@"/Library/Themes/%@", name)
1521 testForTheme(@"%@/Library/SummerBoard/Themes/%@", NSHomeDirectory(), name)
1526 Info_ = [[NSMutableDictionary dictionaryWithCapacity:16] retain];
1528 for (NSString *theme in themes_)
1529 if (NSDictionary *info = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"%@/Info.plist", theme]])
1530 for (NSString *key in [info allKeys])
1531 if ([Info_ objectForKey:key] == nil)
1532 [Info_ setObject:[info objectForKey:key] forKey:key];
1534 bool sms($getTheme$([NSArray arrayWithObjects:@"SMSBackground.png", @"SMSBackground.jpg", nil]) != nil);
1536 if ([NSBundle bundleWithIdentifier:@"com.apple.chatkit"])
1538 $CKMessageCell = objc_getClass("CKMessageCell");
1539 _CKMessageCell$addBalloonView$ = MSHookMessage($CKMessageCell, @selector(addBalloonView:), &$CKMessageCell$addBalloonView$);
1540 _CKMessageCell$initWithStyle$reuseIdentifier$ = MSHookMessage($CKMessageCell, @selector(initWithStyle:reuseIdentifier:), &$CKMessageCell$initWithStyle$reuseIdentifier$);
1542 $CKTranscriptTableView = objc_getClass("CKTranscriptTableView");
1543 _CKTranscriptTableView$setSeparatorStyle$ = MSHookMessage($CKTranscriptTableView, @selector(setSeparatorStyle:), &$CKTranscriptTableView$setSeparatorStyle$);
1544 _CKTranscriptTableView$initWithFrame$style$ = MSHookMessage($CKTranscriptTableView, @selector(initWithFrame:style:), &$CKTranscriptTableView$initWithFrame$style$);
1546 $CKTimestampView = objc_getClass("CKTimestampView");
1547 _CKTimestampView$initWithStyle$reuseIdentifier$ = MSHookMessage($CKTimestampView, @selector(initWithStyle:reuseIdentifier:), &$CKTimestampView$initWithStyle$reuseIdentifier$);
1549 $CKTranscriptController = objc_getClass("CKTranscriptController");
1550 _TranscriptController$loadView = MSHookMessage($CKTranscriptController, @selector(loadView), &$TranscriptController$loadView);
1553 if ([identifier isEqualToString:@"com.apple.MobileSMS"]) {
1555 if (_TranscriptController$loadView == NULL) {
1556 Class mSMSMessageTranscriptController = objc_getClass("mSMSMessageTranscriptController");
1557 _TranscriptController$loadView = MSHookMessage(mSMSMessageTranscriptController, @selector(loadView), &$TranscriptController$loadView);
1560 } else if ([identifier isEqualToString:@"com.apple.springboard"]) {
1561 CFNotificationCenterAddObserver(
1562 CFNotificationCenterGetDarwinNotifyCenter(),
1563 NULL, &ChangeWallpaper, (CFStringRef) @"com.saurik.winterboard.lockbackground", NULL, 0
1566 if ($getTheme$([NSArray arrayWithObject:@"Wallpaper.mp4"]) != nil) {
1567 NSBundle *MediaPlayer([NSBundle bundleWithPath:@"/System/Library/Frameworks/MediaPlayer.framework"]);
1568 if (MediaPlayer != nil)
1571 $MPMoviePlayerController = objc_getClass("MPMoviePlayerController");
1572 $MPVideoView = objc_getClass("MPVideoView");
1575 $WebCoreFrameBridge = objc_getClass("WebCoreFrameBridge");
1577 $SBApplication = objc_getClass("SBApplication");
1578 $SBApplicationIcon = objc_getClass("SBApplicationIcon");
1579 $SBAwayView = objc_getClass("SBAwayView");
1580 $SBBookmarkIcon = objc_getClass("SBBookmarkIcon");
1581 $SBButtonBar = objc_getClass("SBButtonBar");
1582 $SBCalendarIconContentsView = objc_getClass("SBCalendarIconContentsView");
1583 $SBIcon = objc_getClass("SBIcon");
1584 $SBIconBadge = objc_getClass("SBIconBadge");
1585 $SBIconController = objc_getClass("SBIconController");
1586 $SBIconLabel = objc_getClass("SBIconLabel");
1587 $SBIconList = objc_getClass("SBIconList");
1588 $SBIconModel = objc_getClass("SBIconModel");
1589 //$SBImageCache = objc_getClass("SBImageCache");
1590 $SBSearchView = objc_getClass("SBSearchView");
1591 $SBSearchTableViewCell = objc_getClass("SBSearchTableViewCell");
1592 $SBStatusBarContentsView = objc_getClass("SBStatusBarContentsView");
1593 $SBStatusBarController = objc_getClass("SBStatusBarController");
1594 $SBStatusBarOperatorNameView = objc_getClass("SBStatusBarOperatorNameView");
1595 $SBStatusBarTimeView = objc_getClass("SBStatusBarTimeView");
1596 $SBUIController = objc_getClass("SBUIController");
1597 $SBWidgetApplicationIcon = objc_getClass("SBWidgetApplicationIcon");
1599 WBRename(WebCoreFrameBridge, renderedSizeOfNode:constrainedToWidth:, renderedSizeOfNode$constrainedToWidth$);
1602 WBRename(SBApplication, pathForIcon, pathForIcon);
1603 WBRename(SBApplicationIcon, icon, icon);
1606 WBRename(SBBookmarkIcon, icon, icon);
1607 WBRename(SBButtonBar, didMoveToSuperview, didMoveToSuperview);
1608 WBRename(SBCalendarIconContentsView, drawRect:, drawRect$);
1609 WBRename(SBIcon, setAlpha:, setAlpha$);
1610 WBRename(SBIconBadge, initWithBadge:, initWithBadge$);
1611 WBRename(SBIconController, noteNumberOfIconListsChanged, noteNumberOfIconListsChanged);
1612 WBRename(SBUIController, init, init);
1613 WBRename(SBWidgetApplicationIcon, icon, icon);
1615 WBRename(SBIconLabel, drawRect:, drawRect$);
1616 WBRename(SBIconLabel, initWithSize:label:, initWithSize$label$);
1617 WBRename(SBIconLabel, setInDock:, setInDock$);
1619 WBRename(SBIconList, setFrame:, setFrame$);
1621 WBRename(SBIconModel, cacheImageForIcon:, cacheImageForIcon$);
1622 WBRename(SBIconModel, cacheImagesForIcon:, cacheImagesForIcon$);
1623 WBRename(SBIconModel, getCachedImagedForIcon:, getCachedImagedForIcon$);
1624 WBRename(SBIconModel, getCachedImagedForIcon:smallIcon:, getCachedImagedForIcon$smallIcon$);
1626 WBRename(SBSearchView, initWithFrame:, initWithFrame$);
1627 WBRename(SBSearchTableViewCell, drawRect:, drawRect$);
1628 WBRename(SBSearchTableViewCell, initWithStyle:reuseIdentifier:, initWithStyle$reuseIdentifier$);
1630 //WBRename(SBImageCache, initWithName:forImageWidth:imageHeight:initialCapacity:, initWithName$forImageWidth$imageHeight$initialCapacity$);
1632 WBRename(SBAwayView, updateDesktopImage:, updateDesktopImage$);
1633 WBRename(SBStatusBarContentsView, didMoveToSuperview, didMoveToSuperview);
1634 //WBRename(SBStatusBarContentsView, initWithStatusBar:mode:, initWithStatusBar$mode$);
1635 //WBRename(SBStatusBarController, setStatusBarMode:orientation:duration:animation:, setStatusBarMode$orientation$duration$animation$);
1636 WBRename(SBStatusBarController, setStatusBarMode:orientation:duration:fenceID:animation:, setStatusBarMode$orientation$duration$fenceID$animation$);
1637 WBRename(SBStatusBarController, setStatusBarMode:orientation:duration:fenceID:animation:startTime:, setStatusBarMode$orientation$duration$fenceID$animation$startTime$);
1638 WBRename(SBStatusBarOperatorNameView, operatorNameStyle, operatorNameStyle);
1639 WBRename(SBStatusBarOperatorNameView, setOperatorName:fullSize:, setOperatorName$fullSize$);
1640 WBRename(SBStatusBarTimeView, drawRect:, drawRect$);
1643 English_ = [[NSDictionary alloc] initWithContentsOfFile:@"/System/Library/CoreServices/SpringBoard.app/English.lproj/LocalizedApplicationNames.strings"];
1645 Cache_ = [[NSMutableDictionary alloc] initWithCapacity:64];
1648 Wallpapers_ = [[NSArray arrayWithObjects:@"Wallpaper.mp4", @"Wallpaper.png", @"Wallpaper.jpg", @"Wallpaper.html", nil] retain];
1650 if ([Info_ objectForKey:@"UndockedIconLabels"] == nil)
1651 [Info_ setObject:[NSNumber numberWithBool:(
1652 $getTheme$(Wallpapers_) == nil ||
1653 [Info_ objectForKey:@"DockedIconLabelStyle"] != nil ||
1654 [Info_ objectForKey:@"UndockedIconLabelStyle"] != nil
1655 )] forKey:@"UndockedIconLabels"];
1658 NSLog(@"WB:Debug:Info = %@", [Info_ description]);