]> git.saurik.com Git - winterboard.git/blob - Library.mm
Fixed the Emoji bug.
[winterboard.git] / Library.mm
1 /* WinterBoard - Theme Manager for the iPhone
2 * Copyright (C) 2008 Jay Freeman (saurik)
3 */
4
5 /*
6 * Redistribution and use in source and binary
7 * forms, with or without modification, are permitted
8 * provided that the following conditions are met:
9 *
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
17 * distribution.
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.
21 *
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.
36 */
37
38 #include <sys/time.h>
39
40 struct timeval _ltv;
41 bool _itv;
42
43 #define _trace() do { \
44 struct timeval _ctv; \
45 gettimeofday(&_ctv, NULL); \
46 if (!_itv) { \
47 _itv = true; \
48 _ltv = _ctv; \
49 } \
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__\
54 ); \
55 _ltv = _ctv; \
56 } while (false)
57
58 #define _transient
59
60 #import <CoreFoundation/CoreFoundation.h>
61 #import <Foundation/Foundation.h>
62 #import <CoreGraphics/CoreGraphics.h>
63
64 #import <Celestial/AVController.h>
65 #import <Celestial/AVItem.h>
66 #import <Celestial/AVQueue.h>
67
68 #include <substrate.h>
69
70 #import <UIKit/UIKit.h>
71
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>
92
93 #import <MobileSMS/mSMSMessageTranscriptController.h>
94
95 #import <MediaPlayer/MPMoviePlayerController.h>
96 #import <MediaPlayer/MPVideoView.h>
97 #import <MediaPlayer/MPVideoView-PlaybackControl.h>
98
99 #import <CoreGraphics/CGGeometry.h>
100
101 #import <ChatKit/CKMessageCell.h>
102
103 extern "C" void __clear_cache (char *beg, char *end);
104
105 @protocol WinterBoard
106 - (void *) _node;
107 @end
108
109 Class $MPMoviePlayerController;
110 Class $MPVideoView;
111 Class $WebCoreFrameBridge;
112
113 Class $NSBundle;
114
115 Class $UIImage;
116 Class $UINavigationBar;
117 Class $UIToolbar;
118
119 Class $CKMessageCell;
120 Class $CKTimestampView;
121 Class $CKTranscriptController;
122 Class $CKTranscriptTableView;
123
124 Class $SBApplication;
125 Class $SBApplicationIcon;
126 Class $SBAwayView;
127 Class $SBBookmarkIcon;
128 Class $SBButtonBar;
129 Class $SBCalendarIconContentsView;
130 Class $SBIcon;
131 Class $SBIconBadge;
132 Class $SBIconController;
133 Class $SBIconLabel;
134 Class $SBIconList;
135 Class $SBIconModel;
136 //Class $SBImageCache;
137 Class $SBSearchView;
138 Class $SBSearchTableViewCell;
139 Class $SBStatusBarContentsView;
140 Class $SBStatusBarController;
141 Class $SBStatusBarOperatorNameView;
142 Class $SBStatusBarTimeView;
143 Class $SBUIController;
144 Class $SBWidgetApplicationIcon;
145
146 @interface NSDictionary (WinterBoard)
147 - (UIColor *) wb$colorForKey:(NSString *)key;
148 - (BOOL) wb$boolForKey:(NSString *)key;
149 @end
150
151 @implementation NSDictionary (WinterBoard)
152
153 - (UIColor *) wb$colorForKey:(NSString *)key {
154 NSString *value = [self objectForKey:key];
155 if (value == nil)
156 return nil;
157 /* XXX: incorrect */
158 return nil;
159 }
160
161 - (BOOL) wb$boolForKey:(NSString *)key {
162 if (NSString *value = [self objectForKey:key])
163 return [value boolValue];
164 return false;
165 }
166
167 @end
168
169 static BOOL (*_GSFontGetUseLegacyFontMetrics)();
170 #define $GSFontGetUseLegacyFontMetrics() \
171 (_GSFontGetUseLegacyFontMetrics == NULL ? YES : _GSFontGetUseLegacyFontMetrics())
172
173 bool Debug_ = false;
174 bool Engineer_ = false;
175
176 static UIImage *(*_UIApplicationImageWithName)(NSString *name);
177 static UIImage *(*_UIImageAtPath)(NSString *name, NSBundle *path);
178 static CGImageRef (*_UIImageRefAtPath)(NSString *name, bool cache, UIImageOrientation *orientation);
179 static UIImage *(*_UIImageWithNameInDomain)(NSString *name, NSString *domain);
180 static NSBundle *(*_UIKitBundle)();
181 static int (*_UISharedImageNameGetIdentifier)(NSString *);
182 static UIImage *(*_UISharedImageWithIdentifier)(int);
183
184 static NSMutableDictionary *UIImages_;
185 static NSMutableDictionary *PathImages_;
186 static NSMutableDictionary *Cache_;
187 static NSMutableDictionary *Strings_;
188 static NSMutableDictionary *Themed_;
189 static NSMutableDictionary *Bundles_;
190
191 static NSFileManager *Manager_;
192 static NSDictionary *English_;
193 static NSMutableDictionary *Info_;
194 static NSMutableArray *themes_;
195
196 static NSString *$getTheme$(NSArray *files, bool parent = false) {
197 if (!parent)
198 if (NSString *path = [Themed_ objectForKey:files])
199 return reinterpret_cast<id>(path) == [NSNull null] ? nil : path;
200
201 if (Debug_)
202 NSLog(@"WB:Debug: %@", [files description]);
203
204 NSString *path;
205
206 for (NSString *theme in themes_)
207 for (NSString *file in files) {
208 path = [NSString stringWithFormat:@"%@/%@", theme, file];
209 if ([Manager_ fileExistsAtPath:path]) {
210 path = parent ? theme : path;
211 goto set;
212 }
213 }
214
215 path = nil;
216 set:
217 if (!parent)
218 [Themed_ setObject:(path == nil ? [NSNull null] : reinterpret_cast<id>(path)) forKey:files];
219 return path;
220 }
221
222 static NSString *$pathForFile$inBundle$(NSString *file, NSBundle *bundle, bool ui) {
223 NSString *identifier = [bundle bundleIdentifier];
224 NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
225
226 if (identifier != nil)
227 [names addObject:[NSString stringWithFormat:@"Bundles/%@/%@", identifier, file]];
228 if (NSString *folder = [[bundle bundlePath] lastPathComponent])
229 [names addObject:[NSString stringWithFormat:@"Folders/%@/%@", folder, file]];
230 if (ui)
231 [names addObject:[NSString stringWithFormat:@"UIImages/%@", file]];
232
233 #define remapResourceName(oldname, newname) \
234 else if ([file isEqualToString:oldname]) \
235 [names addObject:[NSString stringWithFormat:@"%@.png", newname]]; \
236
237 if (identifier == nil);
238 else if ([identifier isEqualToString:@"com.apple.chatkit"])
239 [names addObject:[NSString stringWithFormat:@"Bundles/com.apple.MobileSMS/%@", file]];
240 else if ([identifier isEqualToString:@"com.apple.calculator"])
241 [names addObject:[NSString stringWithFormat:@"Files/Applications/Calculator.app/%@", file]];
242 else if (![identifier isEqualToString:@"com.apple.springboard"]);
243 remapResourceName(@"FSO_BG.png", @"StatusBar")
244 remapResourceName(@"SBDockBG.png", @"Dock")
245 remapResourceName(@"SBWeatherCelsius.png", @"Icons/Weather")
246
247 if (NSString *path = $getTheme$(names))
248 return path;
249 return nil;
250 }
251
252 static NSString *$pathForIcon$(SBApplication *self) {
253 NSString *identifier = [self bundleIdentifier];
254 NSString *path = [self path];
255 NSString *folder = [path lastPathComponent];
256 NSString *dname = [self displayName];
257 NSString *didentifier = [self displayIdentifier];
258
259 if (Debug_)
260 NSLog(@"WB:Debug: [SBApplication(%@:%@:%@:%@) pathForIcon]", identifier, folder, dname, didentifier);
261
262 NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
263
264 if (identifier != nil)
265 [names addObject:[NSString stringWithFormat:@"Bundles/%@/icon.png", identifier]];
266 if (folder != nil)
267 [names addObject:[NSString stringWithFormat:@"Folders/%@/icon.png", folder]];
268
269 #define testForIcon(Name) \
270 if (NSString *name = Name) \
271 [names addObject:[NSString stringWithFormat:@"Icons/%@.png", name]];
272
273 testForIcon(identifier);
274 testForIcon(dname);
275
276 if (didentifier != nil) {
277 testForIcon([English_ objectForKey:didentifier]);
278
279 NSArray *parts = [didentifier componentsSeparatedByString:@"-"];
280 if ([parts count] != 1)
281 if (NSDictionary *english = [[[NSDictionary alloc] initWithContentsOfFile:[path stringByAppendingString:@"/English.lproj/UIRoleDisplayNames.strings"]] autorelease])
282 testForIcon([english objectForKey:[parts lastObject]]);
283 }
284
285 if (NSString *path = $getTheme$(names))
286 return path;
287 return nil;
288 }
289
290 @interface NSBundle (WinterBoard)
291 + (NSBundle *) wb$bundleWithFile:(NSString *)path;
292 @end
293
294 @implementation NSBundle (WinterBoard)
295
296 + (NSBundle *) wb$bundleWithFile:(NSString *)path {
297 path = [path stringByDeletingLastPathComponent];
298 if (path == nil || [path length] == 0 || [path isEqualToString:@"/"])
299 return nil;
300
301 NSBundle *bundle([Bundles_ objectForKey:path]);
302 if (reinterpret_cast<id>(bundle) == [NSNull null])
303 return nil;
304 else if (bundle == nil) {
305 if ([Manager_ fileExistsAtPath:[path stringByAppendingPathComponent:@"Info.plist"]])
306 bundle = [NSBundle bundleWithPath:path];
307 if (bundle == nil)
308 bundle = [NSBundle wb$bundleWithFile:path];
309 if (Debug_)
310 NSLog(@"WB:Debug:PathBundle(%@, %@)", path, bundle);
311 [Bundles_ setObject:(bundle == nil ? [NSNull null] : reinterpret_cast<id>(bundle)) forKey:path];
312 }
313
314 return bundle;
315 }
316
317 @end
318
319 @interface NSString (WinterBoard)
320 - (NSString *) wb$themedPath;
321 @end
322
323 @implementation NSString (WinterBoard)
324
325 - (NSString *) wb$themedPath {
326 if (Debug_)
327 NSLog(@"WB:Debug:Bypass(\"%@\")", self);
328
329 if (NSBundle *bundle = [NSBundle wb$bundleWithFile:self]) {
330 NSString *file([self stringByResolvingSymlinksInPath]);
331 NSString *prefix([[bundle bundlePath] stringByResolvingSymlinksInPath]);
332 if ([file hasPrefix:prefix]) {
333 NSUInteger length([prefix length]);
334 if (length != [file length])
335 if (NSString *path = $pathForFile$inBundle$([file substringFromIndex:(length + 1)], bundle, false))
336 return path;
337 }
338 }
339
340 return self;
341 }
342
343 @end
344
345 void WBLogRect(const char *tag, struct CGRect rect) {
346 NSLog(@"%s:{%f,%f+%f,%f}", tag, rect.origin.x, rect.origin.y, rect.size.width, rect.size.height);
347 }
348
349 void WBLogHierarchy(UIView *view, unsigned index = 0, unsigned indent = 0) {
350 CGRect frame([view frame]);
351 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]);
352 index = 0;
353 for (UIView *child in [view subviews])
354 WBLogHierarchy(child, index++, indent + 1);
355 }
356
357 UIImage *$cacheForImage$(UIImage *image) {
358 CGColorSpaceRef space(CGColorSpaceCreateDeviceRGB());
359 CGRect rect = {CGPointMake(1, 1), [image size]};
360 CGSize size = {rect.size.width + 2, rect.size.height + 2};
361
362 CGContextRef context(CGBitmapContextCreate(NULL, size.width, size.height, 8, 4 * size.width, space, kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst));
363 CGColorSpaceRelease(space);
364
365 CGContextDrawImage(context, rect, [image CGImage]);
366 CGImageRef ref(CGBitmapContextCreateImage(context));
367 CGContextRelease(context);
368
369 UIImage *cache([UIImage imageWithCGImage:ref]);
370 CGImageRelease(ref);
371
372 return cache;
373 }
374
375 /*MSHook(id, SBImageCache$initWithName$forImageWidth$imageHeight$initialCapacity$, SBImageCache *self, SEL sel, NSString *name, unsigned width, unsigned height, unsigned capacity) {
376 //if ([name isEqualToString:@"icons"]) return nil;
377 return _SBImageCache$initWithName$forImageWidth$imageHeight$initialCapacity$(self, sel, name, width, height, capacity);
378 }*/
379
380 MSHook(void, SBIconModel$cacheImageForIcon$, SBIconModel *self, SEL sel, SBIcon *icon) {
381 NSString *key([icon displayIdentifier]);
382
383 if (UIImage *image = [icon icon]) {
384 CGSize size = [image size];
385 if (size.width != 59 || size.height != 60) {
386 UIImage *cache($cacheForImage$(image));
387 [Cache_ setObject:cache forKey:key];
388 return;
389 }
390 }
391
392 _SBIconModel$cacheImageForIcon$(self, sel, icon);
393 }
394
395 MSHook(void, SBIconModel$cacheImagesForIcon$, SBIconModel *self, SEL sel, SBIcon *icon) {
396 /* XXX: do I /really/ have to do this? figure out how to cache the small icon! */
397 _SBIconModel$cacheImagesForIcon$(self, sel, icon);
398
399 NSString *key([icon displayIdentifier]);
400
401 if (UIImage *image = [icon icon]) {
402 CGSize size = [image size];
403 if (size.width != 59 || size.height != 60) {
404 UIImage *cache($cacheForImage$(image));
405 [Cache_ setObject:cache forKey:key];
406 return;
407 }
408 }
409 }
410
411 MSHook(UIImage *, SBIconModel$getCachedImagedForIcon$, SBIconModel *self, SEL sel, SBIcon *icon) {
412 NSString *key([icon displayIdentifier]);
413 if (UIImage *image = [Cache_ objectForKey:key])
414 return image;
415 else
416 return _SBIconModel$getCachedImagedForIcon$(self, sel, icon);
417 }
418
419 MSHook(UIImage *, SBIconModel$getCachedImagedForIcon$smallIcon$, SBIconModel *self, SEL sel, SBIcon *icon, BOOL small) {
420 if (small)
421 return _SBIconModel$getCachedImagedForIcon$smallIcon$(self, sel, icon, small);
422 NSString *key([icon displayIdentifier]);
423 if (UIImage *image = [Cache_ objectForKey:key])
424 return image;
425 else
426 return _SBIconModel$getCachedImagedForIcon$smallIcon$(self, sel, icon, small);
427 }
428
429 MSHook(id, SBSearchView$initWithFrame$, id /* XXX: SBSearchView */ self, SEL sel, struct CGRect frame) {
430 if ((self = _SBSearchView$initWithFrame$(self, sel, frame)) != nil) {
431 [self setBackgroundColor:[UIColor clearColor]];
432 for (UIView *child in [self subviews])
433 [child setBackgroundColor:[UIColor clearColor]];
434 } return self;
435 }
436
437 MSHook(id, SBSearchTableViewCell$initWithStyle$reuseIdentifier$, SBSearchTableViewCell *self, SEL sel, int style, NSString *reuse) {
438 if ((self = _SBSearchTableViewCell$initWithStyle$reuseIdentifier$(self, sel, style, reuse)) != nil) {
439 [self setBackgroundColor:[UIColor clearColor]];
440 } return self;
441 }
442
443 MSHook(void, SBSearchTableViewCell$drawRect$, SBSearchTableViewCell *self, SEL sel, struct CGRect rect, BOOL selected) {
444 _SBSearchTableViewCell$drawRect$(self, sel, rect, selected);
445 float inset([self edgeInset]);
446 [[UIColor clearColor] set];
447 UIRectFill(CGRectMake(0, 0, inset, rect.size.height));
448 UIRectFill(CGRectMake(rect.size.width - inset, 0, inset, rect.size.height));
449 }
450
451 MSHook(UIImage *, SBApplicationIcon$icon, SBApplicationIcon *self, SEL sel) {
452 if (![Info_ wb$boolForKey:@"ComposeStoreIcons"])
453 if (NSString *path = $pathForIcon$([self application]))
454 return [UIImage imageWithContentsOfFile:path];
455 return _SBApplicationIcon$icon(self, sel);
456 }
457
458 MSHook(UIImage *, SBWidgetApplicationIcon$icon, SBWidgetApplicationIcon *self, SEL sel) {
459 if (Debug_)
460 NSLog(@"WB:Debug:Widget(%@:%@)", [self displayIdentifier], [self displayName]);
461 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Icons/%@.png", [self displayName]]]))
462 return [UIImage imageWithContentsOfFile:path];
463 return _SBWidgetApplicationIcon$icon(self, sel);
464 }
465
466 MSHook(UIImage *, SBBookmarkIcon$icon, SBBookmarkIcon *self, SEL sel) {
467 if (Debug_)
468 NSLog(@"WB:Debug:Bookmark(%@:%@)", [self displayIdentifier], [self displayName]);
469 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Icons/%@.png", [self displayName]]]))
470 return [UIImage imageWithContentsOfFile:path];
471 return _SBBookmarkIcon$icon(self, sel);
472 }
473
474 MSHook(NSString *, SBApplication$pathForIcon, SBApplication *self, SEL sel) {
475 if (NSString *path = $pathForIcon$(self))
476 return path;
477 return _SBApplication$pathForIcon(self, sel);
478 }
479
480 static UIImage *CachedImageAtPath(NSString *path) {
481 path = [path stringByResolvingSymlinksInPath];
482 UIImage *image = [PathImages_ objectForKey:path];
483 if (image != nil)
484 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
485 image = [[UIImage alloc] initWithContentsOfFile:path cache:true];
486 if (image != nil)
487 image = [image autorelease];
488 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:path];
489 return image;
490 }
491
492 MSHook(CGImageRef, _UIImageRefAtPath, NSString *name, bool cache, UIImageOrientation *orientation) {
493 if (Debug_)
494 NSLog(@"WB:Debug: _UIImageRefAtPath(\"%@\", %s)", name, cache ? "true" : "false");
495 return __UIImageRefAtPath([name wb$themedPath], cache, orientation);
496 }
497
498 /*MSHook(UIImage *, _UIImageAtPath, NSString *name, NSBundle *bundle) {
499 if (bundle == nil)
500 return __UIImageAtPath(name, nil);
501 else {
502 NSString *key = [NSString stringWithFormat:@"B:%@/%@", [bundle bundleIdentifier], name];
503 UIImage *image = [PathImages_ objectForKey:key];
504 if (image != nil)
505 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
506 if (Debug_)
507 NSLog(@"WB:Debug: _UIImageAtPath(\"%@\", %@)", name, bundle);
508 if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
509 image = CachedImageAtPath(path);
510 if (image == nil)
511 image = __UIImageAtPath(name, bundle);
512 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
513 return image;
514 }
515 }*/
516
517 MSHook(UIImage *, _UIApplicationImageWithName, NSString *name) {
518 NSBundle *bundle = [NSBundle mainBundle];
519 if (Debug_)
520 NSLog(@"WB:Debug: _UIApplicationImageWithName(\"%@\", %@)", name, bundle);
521 if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
522 return CachedImageAtPath(path);
523 return __UIApplicationImageWithName(name);
524 }
525
526 #define WBDelegate(delegate) \
527 - (NSMethodSignature*) methodSignatureForSelector:(SEL)sel { \
528 if (Engineer_) \
529 NSLog(@"WB:MS:%s:(%s)", class_getName([self class]), sel_getName(sel)); \
530 if (NSMethodSignature *sig = [delegate methodSignatureForSelector:sel]) \
531 return sig; \
532 NSLog(@"WB:Error: [%s methodSignatureForSelector:(%s)]", class_getName([self class]), sel_getName(sel)); \
533 return nil; \
534 } \
535 \
536 - (void) forwardInvocation:(NSInvocation*)inv { \
537 SEL sel = [inv selector]; \
538 if ([delegate respondsToSelector:sel]) \
539 [inv invokeWithTarget:delegate]; \
540 else \
541 NSLog(@"WB:Error: [%s forwardInvocation:(%s)]", class_getName([self class]), sel_getName(sel)); \
542 }
543
544 MSHook(NSString *, NSBundle$pathForResource$ofType$, NSBundle *self, SEL sel, NSString *resource, NSString *type) {
545 NSString *file = type == nil ? resource : [NSString stringWithFormat:@"%@.%@", resource, type];
546 if (Debug_)
547 NSLog(@"WB:Debug: [NSBundle(%@) pathForResource:\"%@\"]", [self bundleIdentifier], file);
548 if (NSString *path = $pathForFile$inBundle$(file, self, false))
549 return path;
550 return _NSBundle$pathForResource$ofType$(self, sel, resource, type);
551 }
552
553 void $setBarStyle$_(NSString *name, int &style) {
554 if (Debug_)
555 NSLog(@"WB:Debug:%@Style:%d", name, style);
556 NSNumber *number = nil;
557 if (number == nil)
558 number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style-%d", name, style]];
559 if (number == nil)
560 number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style", name]];
561 if (number != nil) {
562 style = [number intValue];
563 if (Debug_)
564 NSLog(@"WB:Debug:%@Style=%d", name, style);
565 }
566 }
567
568 MSHook(void, SBCalendarIconContentsView$drawRect$, SBCalendarIconContentsView *self, SEL sel, CGRect rect) {
569 NSBundle *bundle([NSBundle mainBundle]);
570
571 CFLocaleRef locale(CFLocaleCopyCurrent());
572 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, locale, kCFDateFormatterNoStyle, kCFDateFormatterNoStyle));
573 CFRelease(locale);
574
575 CFDateRef now(CFDateCreate(NULL, CFAbsoluteTimeGetCurrent()));
576
577 CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NUMBER_FORMAT" value:@"" table:@"SpringBoard"]);
578 CFStringRef date(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
579 CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NAME_FORMAT" value:@"cccc" table:@"SpringBoard"]);
580 CFStringRef day(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
581
582 CFRelease(now);
583
584 CFRelease(formatter);
585
586 NSString *datestyle(@""
587 "font-family: Helvetica; "
588 "font-weight: bold; "
589 "font-size: 39px; "
590 "color: #333333; "
591 "alpha: 1.0; "
592 "");
593
594 NSString *daystyle(@""
595 "font-family: Helvetica; "
596 "font-weight: bold; "
597 "font-size: 9px; "
598 "color: white; "
599 "text-shadow: rgba(0, 0, 0, 0.2) -1px -1px 2px; "
600 "");
601
602 if (NSString *style = [Info_ objectForKey:@"CalendarIconDateStyle"])
603 datestyle = [datestyle stringByAppendingString:style];
604 if (NSString *style = [Info_ objectForKey:@"CalendarIconDayStyle"])
605 daystyle = [daystyle stringByAppendingString:style];
606
607 float width([self bounds].size.width);
608 float leeway(10);
609 CGSize datesize = [(NSString *)date sizeWithStyle:datestyle forWidth:(width + leeway)];
610 CGSize daysize = [(NSString *)day sizeWithStyle:daystyle forWidth:(width + leeway)];
611
612 unsigned base($GSFontGetUseLegacyFontMetrics() ? 71 : 70);
613
614 [(NSString *)date drawAtPoint:CGPointMake(
615 (width + 1 - datesize.width) / 2, (base - datesize.height) / 2
616 ) withStyle:datestyle];
617
618 [(NSString *)day drawAtPoint:CGPointMake(
619 (width + 1 - daysize.width) / 2, (16 - daysize.height) / 2
620 ) withStyle:daystyle];
621
622 CFRelease(date);
623 CFRelease(day);
624 }
625
626 /*static id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
627 _trace();
628
629 if (NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"])
630 style = [number intValue];
631
632 if (UIColor *color = [Info_ wb$colorForKey:@"NavigationBarTint"])
633 tint = color;
634
635 return [self wb$initWithFrame:frame withBarStyle:style withTintColor:tint];
636 }*/
637
638 /*static id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
639 self = [self wb$initWithCoder:coder];
640 if (self == nil)
641 return nil;
642 UINavigationBar$setBarStyle$_(self);
643 return self;
644 }
645
646 static id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
647 self = [self wb$initWithFrame:frame];
648 if (self == nil)
649 return nil;
650 UINavigationBar$setBarStyle$_(self);
651 return self;
652 }*/
653
654 MSHook(void, UIToolbar$setBarStyle$, UIToolbar *self, SEL sel, int style) {
655 $setBarStyle$_(@"Toolbar", style);
656 return _UIToolbar$setBarStyle$(self, sel, style);
657 }
658
659 MSHook(void, UINavigationBar$setBarStyle$, UINavigationBar *self, SEL sel, int style) {
660 $setBarStyle$_(@"NavigationBar", style);
661 return _UINavigationBar$setBarStyle$(self, sel, style);
662 }
663
664 MSHook(void, SBButtonBar$didMoveToSuperview, UIView *self, SEL sel) {
665 [[self superview] setBackgroundColor:[UIColor clearColor]];
666 _SBButtonBar$didMoveToSuperview(self, sel);
667 }
668
669 MSHook(void, SBStatusBarContentsView$didMoveToSuperview, UIView *self, SEL sel) {
670 [[self superview] setBackgroundColor:[UIColor clearColor]];
671 _SBStatusBarContentsView$didMoveToSuperview(self, sel);
672 }
673
674 MSHook(UIImage *, UIImage$defaultDesktopImage, UIImage *self, SEL sel) {
675 if (Debug_)
676 NSLog(@"WB:Debug:DefaultDesktopImage");
677 if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"LockBackground.png", @"LockBackground.jpg", nil]))
678 return [UIImage imageWithContentsOfFile:path];
679 return _UIImage$defaultDesktopImage(self, sel);
680 }
681
682 static NSArray *Wallpapers_;
683 static NSString *WallpaperFile_;
684 static UIImageView *WallpaperImage_;
685 static UIWebDocumentView *WallpaperPage_;
686 static NSURL *WallpaperURL_;
687
688 #define _release(object) \
689 do if (object != nil) { \
690 [object release]; \
691 object = nil; \
692 } while (false)
693
694 MSHook(id, SBUIController$init, SBUIController *self, SEL sel) {
695 self = _SBUIController$init(self, sel);
696 if (self == nil)
697 return nil;
698
699 UIWindow *&_window(MSHookIvar<UIWindow *>(self, "_window"));
700 UIView *&_contentLayer(MSHookIvar<UIView *>(self, "_contentLayer"));
701 UIView *&_contentView(MSHookIvar<UIView *>(self, "_contentView"));
702
703 UIView *layer;
704 if (&_contentLayer != NULL)
705 layer = _contentLayer;
706 else if (&_contentView != NULL)
707 layer = _contentView;
708 else
709 layer = nil;
710
711 UIView *content([[[UIView alloc] initWithFrame:[layer frame]] autorelease]);
712 [content setBackgroundColor:[layer backgroundColor]];
713 [layer setBackgroundColor:[UIColor clearColor]];
714 [layer setFrame:[content bounds]];
715 [_window setContentView:content];
716
717 _release(WallpaperFile_);
718 _release(WallpaperImage_);
719 _release(WallpaperPage_);
720 _release(WallpaperURL_);
721
722 if (NSString *theme = $getTheme$(Wallpapers_, true)) {
723 NSString *mp4 = [theme stringByAppendingPathComponent:@"Wallpaper.mp4"];
724 if ([Manager_ fileExistsAtPath:mp4]) {
725 #if UseAVController
726 NSError *error;
727
728 static AVController *controller_(nil);
729 if (controller_ == nil) {
730 AVQueue *queue([AVQueue avQueue]);
731 controller_ = [[AVController avControllerWithQueue:queue error:&error] retain];
732 }
733
734 AVQueue *queue([controller_ queue]);
735
736 UIView *video([[[UIView alloc] initWithFrame:[content bounds]] autorelease]);
737 [controller_ setLayer:[video _layer]];
738
739 AVItem *item([[[AVItem alloc] initWithPath:mp4 error:&error] autorelease]);
740 [queue appendItem:item error:&error];
741
742 [controller_ play:&error];
743 #elif UseMPMoviePlayerController
744 NSURL *url([NSURL fileURLWithPath:mp4]);
745 MPMoviePlayerController *controller = [[MPMoviePlayerController alloc] initWithContentURL:url];
746 controller.movieControlMode = MPMovieControlModeHidden;
747 [controller play];
748 #else
749 MPVideoView *video = [[[$MPVideoView alloc] initWithFrame:[content bounds]] autorelease];
750 [video setMovieWithPath:mp4];
751 [video setRepeatMode:1];
752 [video setRepeatGap:-1];
753 [video playFromBeginning];;
754 #endif
755
756 [content addSubview:video];
757 }
758
759 NSString *png = [theme stringByAppendingPathComponent:@"Wallpaper.png"];
760 NSString *jpg = [theme stringByAppendingPathComponent:@"Wallpaper.jpg"];
761
762 NSString *path;
763 if ([Manager_ fileExistsAtPath:png])
764 path = png;
765 else if ([Manager_ fileExistsAtPath:jpg])
766 path = jpg;
767 else path = nil;
768
769 UIImage *image;
770 if (path != nil) {
771 image = [[UIImage alloc] initWithContentsOfFile:path];
772 if (image != nil)
773 image = [image autorelease];
774 } else image = nil;
775
776 if (image != nil) {
777 WallpaperFile_ = [path retain];
778 WallpaperImage_ = [[UIImageView alloc] initWithImage:image];
779 if (NSNumber *number = [Info_ objectForKey:@"WallpaperAlpha"])
780 [WallpaperImage_ setAlpha:[number floatValue]];
781 [content addSubview:WallpaperImage_];
782 }
783
784 NSString *html = [theme stringByAppendingPathComponent:@"Wallpaper.html"];
785 if ([Manager_ fileExistsAtPath:html]) {
786 CGRect bounds = [content bounds];
787
788 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
789 [view setAutoresizes:true];
790
791 WallpaperPage_ = [view retain];
792 WallpaperURL_ = [[NSURL fileURLWithPath:html] retain];
793
794 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
795
796 [view setBackgroundColor:[UIColor clearColor]];
797 if ([view respondsToSelector:@selector(setDrawsBackground:)])
798 [view setDrawsBackground:NO];
799 [[view webView] setDrawsBackground:NO];
800
801 [content addSubview:view];
802 }
803 }
804
805 for (size_t i(0), e([themes_ count]); i != e; ++i) {
806 NSString *theme = [themes_ objectAtIndex:(e - i - 1)];
807 NSString *html = [theme stringByAppendingPathComponent:@"Widget.html"];
808 if ([Manager_ fileExistsAtPath:html]) {
809 CGRect bounds = [content bounds];
810
811 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
812 [view setAutoresizes:true];
813
814 NSURL *url = [NSURL fileURLWithPath:html];
815 [view loadRequest:[NSURLRequest requestWithURL:url]];
816
817 [view setBackgroundColor:[UIColor clearColor]];
818 if ([view respondsToSelector:@selector(setDrawsBackground:)])
819 [view setDrawsBackground:NO];
820 [[view webView] setDrawsBackground:NO];
821
822 [content addSubview:view];
823 }
824 }
825
826 [content addSubview:layer];
827
828 return self;
829 }
830
831 MSHook(void, SBAwayView$updateDesktopImage$, SBAwayView *self, SEL sel, UIImage *image) {
832 NSString *path = $getTheme$([NSArray arrayWithObject:@"LockBackground.html"]);
833 UIView *&_backgroundView(MSHookIvar<UIView *>(self, "_backgroundView"));
834
835 if (path != nil && _backgroundView != nil)
836 path = nil;
837
838 _SBAwayView$updateDesktopImage$(self, sel, image);
839
840 if (path != nil) {
841 CGRect bounds = [self bounds];
842
843 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
844 [view setAutoresizes:true];
845
846 if (WallpaperPage_ != nil)
847 [WallpaperPage_ release];
848 WallpaperPage_ = [view retain];
849
850 if (WallpaperURL_ != nil)
851 [WallpaperURL_ release];
852 WallpaperURL_ = [[NSURL fileURLWithPath:path] retain];
853
854 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
855
856 [[view webView] setDrawsBackground:false];
857 [view setBackgroundColor:[UIColor clearColor]];
858
859 [self insertSubview:view aboveSubview:_backgroundView];
860 }
861 }
862
863 /*extern "C" CGColorRef CGGStateGetSystemColor(void *);
864 extern "C" CGColorRef CGGStateGetFillColor(void *);
865 extern "C" CGColorRef CGGStateGetStrokeColor(void *);
866 extern "C" NSString *UIStyleStringFromColor(CGColorRef);*/
867
868 /* WBTimeLabel {{{ */
869 @interface WBTimeLabel : NSProxy {
870 NSString *time_;
871 _transient SBStatusBarTimeView *view_;
872 }
873
874 - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view;
875
876 @end
877
878 @implementation WBTimeLabel
879
880 - (void) dealloc {
881 [time_ release];
882 [super dealloc];
883 }
884
885 - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view {
886 time_ = [time retain];
887 view_ = view;
888 return self;
889 }
890
891 - (NSString *) description {
892 return time_;
893 }
894
895 WBDelegate(time_)
896
897 - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
898 if (NSString *custom = [Info_ objectForKey:@"TimeStyle"]) {
899 BOOL &_mode(MSHookIvar<BOOL>(view_, "_mode"));;
900
901 [time_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
902 "font-family: Helvetica; "
903 "font-weight: bold; "
904 "font-size: 14px; "
905 "color: %@; "
906 "%@", _mode ? @"white" : @"black", custom]];
907
908 return CGSizeZero;
909 }
910
911 return [time_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
912 }
913
914 @end
915 /* }}} */
916 /* WBBadgeLabel {{{ */
917 @interface WBBadgeLabel : NSProxy {
918 NSString *badge_;
919 }
920
921 - (id) initWithBadge:(NSString *)badge;
922
923 @end
924
925 @implementation WBBadgeLabel
926
927 - (void) dealloc {
928 [badge_ release];
929 [super dealloc];
930 }
931
932 - (id) initWithBadge:(NSString *)badge {
933 badge_ = [badge retain];
934 return self;
935 }
936
937 WBDelegate(badge_)
938
939 - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
940 if (NSString *custom = [Info_ objectForKey:@"BadgeStyle"]) {
941 [badge_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
942 "font-family: Helvetica; "
943 "font-weight: bold; "
944 "font-size: 17px; "
945 "color: white; "
946 "%@", custom]];
947
948 return CGSizeZero;
949 }
950
951 return [badge_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
952 }
953
954 @end
955 /* }}} */
956
957 MSHook(void, SBIcon$setAlpha$, SBIcon *self, SEL sel, float alpha) {
958 if (NSNumber *number = [Info_ objectForKey:@"IconAlpha"])
959 alpha = [number floatValue];
960 return _SBIcon$setAlpha$(self, sel, alpha);
961 }
962
963 MSHook(id, SBIconBadge$initWithBadge$, SBIconBadge *self, SEL sel, NSString *badge) {
964 if ((self = _SBIconBadge$initWithBadge$(self, sel, badge)) != nil) {
965 id &_badge(MSHookIvar<id>(self, "_badge"));
966 if (_badge != nil)
967 if (id label = [[WBBadgeLabel alloc] initWithBadge:[_badge autorelease]])
968 _badge = label;
969 } return self;
970 }
971
972 void SBStatusBarController$setStatusBarMode(int &mode) {
973 if (Debug_)
974 NSLog(@"WB:Debug:setStatusBarMode:%d", mode);
975 if (mode < 100) // 104:hidden 105:glowing
976 if (NSNumber *number = [Info_ objectForKey:@"StatusBarMode"])
977 mode = [number intValue];
978 }
979
980 /*MSHook(void, SBStatusBarController$setStatusBarMode$orientation$duration$animation$, SBStatusBarController *self, SEL sel, int mode, int orientation, double duration, int animation) {
981 NSLog(@"mode:%d orientation:%d duration:%f animation:%d", mode, orientation, duration, animation);
982 SBStatusBarController$setStatusBarMode(mode);
983 return _SBStatusBarController$setStatusBarMode$orientation$duration$animation$(self, sel, mode, orientation, duration, animation);
984 }*/
985
986 MSHook(void, SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$, SBStatusBarController *self, SEL sel, int mode, int orientation, float duration, int fenceID, int animation) {
987 //NSLog(@"mode:%d orientation:%d duration:%f fenceID:%d animation:%d", mode, orientation, duration, fenceID, animation);
988 SBStatusBarController$setStatusBarMode(mode);
989 return _SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$(self, sel, mode, orientation, duration, fenceID, animation);
990 }
991
992 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) {
993 //NSLog(@"mode:%d orientation:%d duration:%f fenceID:%d animation:%d startTime:%f", mode, orientation, duration, fenceID, animation, startTime);
994 SBStatusBarController$setStatusBarMode(mode);
995 //NSLog(@"mode=%u", mode);
996 return _SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$startTime$(self, sel, mode, orientation, duration, fenceID, animation, startTime);
997 }
998
999 /*MSHook(id, SBStatusBarContentsView$initWithStatusBar$mode$, SBStatusBarContentsView *self, SEL sel, id bar, int mode) {
1000 if (NSNumber *number = [Info_ objectForKey:@"StatusBarContentsMode"])
1001 mode = [number intValue];
1002 return _SBStatusBarContentsView$initWithStatusBar$mode$(self, sel, bar, mode);
1003 }*/
1004
1005 MSHook(NSString *, SBStatusBarOperatorNameView$operatorNameStyle, SBStatusBarOperatorNameView *self, SEL sel) {
1006 NSString *style(_SBStatusBarOperatorNameView$operatorNameStyle(self, sel));
1007 if (Debug_)
1008 NSLog(@"operatorNameStyle= %@", style);
1009 if (NSString *custom = [Info_ objectForKey:@"OperatorNameStyle"])
1010 style = [NSString stringWithFormat:@"%@; %@", style, custom];
1011 return style;
1012 }
1013
1014 MSHook(void, SBStatusBarOperatorNameView$setOperatorName$fullSize$, SBStatusBarOperatorNameView *self, SEL sel, NSString *name, BOOL full) {
1015 if (Debug_)
1016 NSLog(@"setOperatorName:\"%@\" fullSize:%u", name, full);
1017 return _SBStatusBarOperatorNameView$setOperatorName$fullSize$(self, sel, name, NO);
1018 }
1019
1020 // XXX: replace this with [SBStatusBarTimeView tile]
1021 MSHook(void, SBStatusBarTimeView$drawRect$, SBStatusBarTimeView *self, SEL sel, CGRect rect) {
1022 id &_time(MSHookIvar<id>(self, "_time"));
1023 if (_time != nil && [_time class] != [WBTimeLabel class])
1024 object_setInstanceVariable(self, "_time", reinterpret_cast<void *>([[WBTimeLabel alloc] initWithTime:[_time autorelease] view:self]));
1025 return _SBStatusBarTimeView$drawRect$(self, sel, rect);
1026 }
1027
1028 @interface UIView (WinterBoard)
1029 - (bool) wb$isWBImageView;
1030 - (void) wb$logHierarchy;
1031 @end
1032
1033 @implementation UIView (WinterBoard)
1034
1035 - (bool) wb$isWBImageView {
1036 return false;
1037 }
1038
1039 - (void) wb$logHierarchy {
1040 WBLogHierarchy(self);
1041 }
1042
1043 @end
1044
1045 @interface WBImageView : UIImageView {
1046 }
1047
1048 - (bool) wb$isWBImageView;
1049 - (void) wb$updateFrame;
1050 @end
1051
1052 @implementation WBImageView
1053
1054 - (bool) wb$isWBImageView {
1055 return true;
1056 }
1057
1058 - (void) wb$updateFrame {
1059 CGRect frame([self frame]);
1060 frame.origin.y = 0;
1061
1062 for (UIView *view(self); ; ) {
1063 view = [view superview];
1064 if (view == nil)
1065 break;
1066 frame.origin.y -= [view frame].origin.y;
1067 }
1068
1069 [self setFrame:frame];
1070 }
1071
1072 @end
1073
1074 MSHook(void, SBIconList$setFrame$, SBIconList *self, SEL sel, CGRect frame) {
1075 NSArray *subviews([self subviews]);
1076 WBImageView *view([subviews count] == 0 ? nil : [subviews objectAtIndex:0]);
1077 if (view != nil && [view wb$isWBImageView])
1078 [view wb$updateFrame];
1079 _SBIconList$setFrame$(self, sel, frame);
1080 }
1081
1082 MSHook(void, SBIconController$noteNumberOfIconListsChanged, SBIconController *self, SEL sel) {
1083 SBIconModel *&_iconModel(MSHookIvar<SBIconModel *>(self, "_iconModel"));
1084 NSArray *lists([_iconModel iconLists]);
1085
1086 for (unsigned i(0), e([lists count]); i != e; ++i)
1087 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Page%u.png", i]])) {
1088 SBIconList *list([lists objectAtIndex:i]);
1089 NSArray *subviews([list subviews]);
1090
1091 WBImageView *view([subviews count] == 0 ? nil : [subviews objectAtIndex:0]);
1092 if (view == nil || ![view wb$isWBImageView]) {
1093 view = [[[WBImageView alloc] init] autorelease];
1094 [list insertSubview:view atIndex:0];
1095 }
1096
1097 UIImage *image([UIImage imageWithContentsOfFile:path]);
1098
1099 CGRect frame([view frame]);
1100 frame.size = [image size];
1101 [view setFrame:frame];
1102
1103 [view setImage:image];
1104 [view wb$updateFrame];
1105 }
1106
1107 return _SBIconController$noteNumberOfIconListsChanged(self, sel);
1108 }
1109
1110 MSHook(id, SBIconLabel$initWithSize$label$, SBIconLabel *self, SEL sel, CGSize size, NSString *label) {
1111 self = _SBIconLabel$initWithSize$label$(self, sel, size, label);
1112 if (self != nil)
1113 [self setClipsToBounds:NO];
1114 return self;
1115 }
1116
1117 MSHook(void, SBIconLabel$setInDock$, SBIconLabel *self, SEL sel, BOOL docked) {
1118 id &_label(MSHookIvar<id>(self, "_label"));
1119 if (![Info_ wb$boolForKey:@"UndockedIconLabels"])
1120 docked = true;
1121 if (_label != nil && [_label respondsToSelector:@selector(setInDock:)])
1122 [_label setInDock:docked];
1123 return _SBIconLabel$setInDock$(self, sel, docked);
1124 }
1125
1126 MSHook(NSString *, NSBundle$localizedStringForKey$value$table$, NSBundle *self, SEL sel, NSString *key, NSString *value, NSString *table) {
1127 NSString *identifier = [self bundleIdentifier];
1128 NSLocale *locale = [NSLocale currentLocale];
1129 NSString *language = [locale objectForKey:NSLocaleLanguageCode];
1130 if (Debug_)
1131 NSLog(@"WB:Debug:[NSBundle(%@) localizedStringForKey:\"%@\" value:\"%@\" table:\"%@\"] (%@)", identifier, key, value, table, language);
1132 NSString *file = table == nil ? @"Localizable" : table;
1133 NSString *name = [NSString stringWithFormat:@"%@:%@", identifier, file];
1134 NSDictionary *strings;
1135 if ((strings = [Strings_ objectForKey:name]) != nil) {
1136 if (static_cast<id>(strings) != [NSNull null]) strings:
1137 if (NSString *value = [strings objectForKey:key])
1138 return value;
1139 } else if (NSString *path = $pathForFile$inBundle$([NSString stringWithFormat:@"%@.lproj/%@.strings",
1140 language, file
1141 ], self, false)) {
1142 if ((strings = [[NSDictionary alloc] initWithContentsOfFile:path]) != nil) {
1143 [Strings_ setObject:[strings autorelease] forKey:name];
1144 goto strings;
1145 } else goto null;
1146 } else null:
1147 [Strings_ setObject:[NSNull null] forKey:name];
1148 return _NSBundle$localizedStringForKey$value$table$(self, sel, key, value, table);
1149 }
1150
1151 @class WebCoreFrameBridge;
1152 MSHook(CGSize, WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$, WebCoreFrameBridge *self, SEL sel, id node, float width) {
1153 if (node == nil)
1154 return CGSizeZero;
1155 void **core(reinterpret_cast<void **>([node _node]));
1156 if (core == NULL || core[6] == NULL)
1157 return CGSizeZero;
1158 return _WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$(self, sel, node, width);
1159 }
1160
1161 MSHook(void, SBIconLabel$drawRect$, SBIconLabel *self, SEL sel, CGRect rect) {
1162 CGRect bounds = [self bounds];
1163
1164 static Ivar drawMoreLegibly = object_getInstanceVariable(self, "_drawMoreLegibly", NULL);
1165
1166 BOOL docked;
1167 Ivar ivar = object_getInstanceVariable(self, "_inDock", reinterpret_cast<void **>(&docked));
1168 docked = (docked & (ivar_getOffset(ivar) == ivar_getOffset(drawMoreLegibly) ? 0x2 : 0x1)) != 0;
1169
1170 NSString *label(MSHookIvar<NSString *>(self, "_label"));
1171
1172 NSString *style = [NSString stringWithFormat:@""
1173 "font-family: Helvetica; "
1174 "font-weight: bold; "
1175 "font-size: 11px; "
1176 "color: %@; "
1177 "", docked ? @"white" : @"#b3b3b3"];
1178
1179 if (docked)
1180 style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; "];
1181
1182 bool ellipsis(false);
1183 float max = 75, width;
1184 width:
1185 width = [(ellipsis ? [label stringByAppendingString:@"..."] : label) sizeWithStyle:style forWidth:320].width;
1186
1187 if (width > max) {
1188 size_t length([label length]);
1189 float spacing((width - max) / (length - 1));
1190
1191 if (spacing > 1.25) {
1192 ellipsis = true;
1193 label = [label substringToIndex:(length - 1)];
1194 goto width;
1195 }
1196
1197 style = [style stringByAppendingString:[NSString stringWithFormat:@"letter-spacing: -%f; ", spacing]];
1198 }
1199
1200 if (ellipsis)
1201 label = [label stringByAppendingString:@"..."];
1202
1203 if (NSString *custom = [Info_ objectForKey:(docked ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle")])
1204 style = [style stringByAppendingString:custom];
1205
1206 CGSize size = [label sizeWithStyle:style forWidth:bounds.size.width];
1207 [label drawAtPoint:CGPointMake((bounds.size.width - size.width) / 2, 0) withStyle:style];
1208 }
1209
1210 MSHook(void, CKMessageCell$addBalloonView$, id self, SEL sel, CKBalloonView *balloon) {
1211 _CKMessageCell$addBalloonView$(self, sel, balloon);
1212 [balloon setBackgroundColor:[UIColor clearColor]];
1213 }
1214
1215 MSHook(id, CKMessageCell$initWithStyle$reuseIdentifier$, id self, SEL sel, int style, NSString *reuse) {
1216 if ((self = _CKMessageCell$initWithStyle$reuseIdentifier$(self, sel, style, reuse)) != nil) {
1217 [[self contentView] setBackgroundColor:[UIColor clearColor]];
1218 } return self;
1219 }
1220
1221 MSHook(id, CKTimestampView$initWithStyle$reuseIdentifier$, id self, SEL sel, int style, NSString *reuse) {
1222 if ((self = _CKTimestampView$initWithStyle$reuseIdentifier$(self, sel, style, reuse)) != nil) {
1223 UILabel *&_label(MSHookIvar<UILabel *>(self, "_label"));
1224 [_label setBackgroundColor:[UIColor clearColor]];
1225 } return self;
1226 }
1227
1228 MSHook(void, CKTranscriptTableView$setSeparatorStyle$, id self, SEL sel, int style) {
1229 _CKTranscriptTableView$setSeparatorStyle$(self, sel, UITableViewCellSeparatorStyleNone);
1230 }
1231
1232 MSHook(id, CKTranscriptTableView$initWithFrame$style$, id self, SEL sel, CGRect frame, int style) {
1233 _trace();
1234 if ((self = _CKTranscriptTableView$initWithFrame$style$(self, sel, frame, style)) != nil) {
1235 [self setSeparatorStyle:UITableViewCellSeparatorStyleNone];
1236 } return self;
1237 }
1238
1239 MSHook(void, TranscriptController$loadView, mSMSMessageTranscriptController *self, SEL sel) {
1240 _TranscriptController$loadView(self, sel);
1241
1242 if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"SMSBackground.png", @"SMSBackground.jpg", nil]))
1243 if (UIImage *image = [[UIImage alloc] initWithContentsOfFile:path]) {
1244 [image autorelease];
1245
1246 UIView *&_transcriptTable(MSHookIvar<UIView *>(self, "_transcriptTable"));
1247 UIView *&_transcriptLayer(MSHookIvar<UIView *>(self, "_transcriptLayer"));
1248 UIView *table;
1249 if (&_transcriptTable != NULL)
1250 table = _transcriptTable;
1251 else if (&_transcriptLayer != NULL)
1252 table = _transcriptLayer;
1253 else
1254 table = nil;
1255
1256 UIView *placard(table != nil ? [table superview] : MSHookIvar<UIView *>(self, "_backPlacard"));
1257 UIImageView *background([[[UIImageView alloc] initWithImage:image] autorelease]);
1258
1259 if (table == nil)
1260 [placard insertSubview:background atIndex:0];
1261 else {
1262 [table setBackgroundColor:[UIColor clearColor]];
1263 [placard insertSubview:background belowSubview:table];
1264 }
1265 }
1266 }
1267
1268 MSHook(UIImage *, _UIImageWithName, NSString *name) {
1269 int id(_UISharedImageNameGetIdentifier(name));
1270 if (Debug_)
1271 NSLog(@"WB:Debug: _UIImageWithName(\"%@\": %d)", name, id);
1272
1273 if (id == -1)
1274 return _UIImageAtPath(name, _UIKitBundle());
1275 else {
1276 NSNumber *key([NSNumber numberWithInt:id]);
1277 UIImage *image = [UIImages_ objectForKey:key];
1278 if (image != nil)
1279 return reinterpret_cast<id>(image) == [NSNull null] ? _UISharedImageWithIdentifier(id) : image;
1280 if (NSString *path = $pathForFile$inBundle$(name, _UIKitBundle(), true)) {
1281 image = [[UIImage alloc] initWithContentsOfFile:path cache:true];
1282 if (image != nil)
1283 [image autorelease];
1284 }
1285 [UIImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
1286 return image == nil ? _UISharedImageWithIdentifier(id) : image;
1287 }
1288 }
1289
1290 MSHook(UIImage *, _UIImageWithNameInDomain, NSString *name, NSString *domain) {
1291 NSString *key([NSString stringWithFormat:@"D:%zu%@%@", [domain length], domain, name]);
1292 UIImage *image([PathImages_ objectForKey:key]);
1293 if (image != nil)
1294 return reinterpret_cast<id>(image) == [NSNull null] ? __UIImageWithNameInDomain(name, domain) : image;
1295 if (Debug_)
1296 NSLog(@"WB:Debug: UIImageWithNameInDomain(\"%@\", \"%@\")", name, domain);
1297 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Domains/%@/%@", domain, name]])) {
1298 image = [[UIImage alloc] initWithContentsOfFile:path];
1299 if (image != nil)
1300 [image autorelease];
1301 }
1302 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
1303 return image == nil ? __UIImageWithNameInDomain(name, domain) : image;
1304 }
1305
1306 MSHook(GSFontRef, GSFontCreateWithName, const char *name, GSFontSymbolicTraits traits, float size) {
1307 if (Debug_)
1308 NSLog(@"WB:Debug: GSFontCreateWithName(\"%s\", %f)", name, size);
1309 if (NSString *font = [Info_ objectForKey:[NSString stringWithFormat:@"FontName-%s", name]])
1310 name = [font UTF8String];
1311 return _GSFontCreateWithName(name, traits, size);
1312 }
1313
1314 #define AudioToolbox "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox"
1315 #define UIKit "/System/Library/Frameworks/UIKit.framework/UIKit"
1316
1317 bool (*_Z24GetFileNameForThisActionmPcRb)(unsigned long a0, char *a1, bool &a2);
1318
1319 MSHook(bool, _Z24GetFileNameForThisActionmPcRb, unsigned long a0, char *a1, bool &a2) {
1320 if (Debug_)
1321 NSLog(@"WB:Debug:GetFileNameForThisAction(%u, %p, %u)", a0, a1, a2);
1322 bool value = __Z24GetFileNameForThisActionmPcRb(a0, a1, a2);
1323 if (Debug_)
1324 NSLog(@"WB:Debug:GetFileNameForThisAction(%u, %s, %u) = %u", a0, value ? a1 : NULL, a2, value);
1325
1326 if (value) {
1327 NSString *path = [NSString stringWithUTF8String:a1];
1328 if ([path hasPrefix:@"/System/Library/Audio/UISounds/"]) {
1329 NSString *file = [path substringFromIndex:31];
1330 for (NSString *theme in themes_) {
1331 NSString *path([NSString stringWithFormat:@"%@/UISounds/%@", theme, file]);
1332 if ([Manager_ fileExistsAtPath:path]) {
1333 strcpy(a1, [path UTF8String]);
1334 continue;
1335 }
1336 }
1337 }
1338 }
1339 return value;
1340 }
1341
1342 static void ChangeWallpaper(
1343 CFNotificationCenterRef center,
1344 void *observer,
1345 CFStringRef name,
1346 const void *object,
1347 CFDictionaryRef info
1348 ) {
1349 if (Debug_)
1350 NSLog(@"WB:Debug:ChangeWallpaper!");
1351
1352 UIImage *image;
1353 if (WallpaperFile_ != nil) {
1354 image = [[UIImage alloc] initWithContentsOfFile:WallpaperFile_];
1355 if (image != nil)
1356 image = [image autorelease];
1357 } else image = nil;
1358
1359 if (WallpaperImage_ != nil)
1360 [WallpaperImage_ setImage:image];
1361 if (WallpaperPage_ != nil)
1362 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
1363
1364 }
1365
1366 #define WBRename(name, sel, imp) \
1367 _ ## name ## $ ## imp = MSHookMessage($ ## name, @selector(sel), &$ ## name ## $ ## imp)
1368
1369 template <typename Type_>
1370 static void nlset(Type_ &function, struct nlist *nl, size_t index) {
1371 struct nlist &name(nl[index]);
1372 uintptr_t value(name.n_value);
1373 if ((name.n_desc & N_ARM_THUMB_DEF) != 0)
1374 value |= 0x00000001;
1375 function = reinterpret_cast<Type_>(value);
1376 }
1377
1378 template <typename Type_>
1379 static void dlset(Type_ &function, const char *name) {
1380 function = reinterpret_cast<Type_>(dlsym(RTLD_DEFAULT, name));
1381 }
1382
1383 extern "C" void WBInitialize() {
1384 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
1385
1386 NSString *identifier([[NSBundle mainBundle] bundleIdentifier]);
1387
1388 NSLog(@"WB:Notice: WinterBoard");
1389
1390 dlset(_GSFontGetUseLegacyFontMetrics, "GSFontGetUseLegacyFontMetrics");
1391
1392 struct nlist nl[8];
1393
1394 memset(nl, 0, sizeof(nl));
1395 nl[0].n_un.n_name = (char *) "__UIApplicationImageWithName";
1396 nl[1].n_un.n_name = (char *) "__UIImageAtPath";
1397 nl[2].n_un.n_name = (char *) "__UIImageRefAtPath";
1398 nl[3].n_un.n_name = (char *) "__UIImageWithNameInDomain";
1399 nl[4].n_un.n_name = (char *) "__UIKitBundle";
1400 nl[5].n_un.n_name = (char *) "__UISharedImageNameGetIdentifier";
1401 nl[6].n_un.n_name = (char *) "__UISharedImageWithIdentifier";
1402 nlist(UIKit, nl);
1403
1404 nlset(_UIApplicationImageWithName, nl, 0);
1405 nlset(_UIImageAtPath, nl, 1);
1406 nlset(_UIImageRefAtPath, nl, 2);
1407 nlset(_UIImageWithNameInDomain, nl, 3);
1408 nlset(_UIKitBundle, nl, 4);
1409 nlset(_UISharedImageNameGetIdentifier, nl, 5);
1410 nlset(_UISharedImageWithIdentifier, nl, 6);
1411
1412 MSHookFunction(_UIApplicationImageWithName, &$_UIApplicationImageWithName, &__UIApplicationImageWithName);
1413 MSHookFunction(_UIImageRefAtPath, &$_UIImageRefAtPath, &__UIImageRefAtPath);
1414 MSHookFunction(_UIImageWithName, &$_UIImageWithName, &__UIImageWithName);
1415 MSHookFunction(_UIImageWithNameInDomain, &$_UIImageWithNameInDomain, &__UIImageWithNameInDomain);
1416
1417 MSHookFunction(&GSFontCreateWithName, &$GSFontCreateWithName, &_GSFontCreateWithName);
1418
1419 if (dlopen(AudioToolbox, RTLD_LAZY | RTLD_NOLOAD) != NULL) {
1420 struct nlist nl[2];
1421 memset(nl, 0, sizeof(nl));
1422 nl[0].n_un.n_name = (char *) "__Z24GetFileNameForThisActionmPcRb";
1423 nlist(AudioToolbox, nl);
1424 nlset(_Z24GetFileNameForThisActionmPcRb, nl, 0);
1425 MSHookFunction(_Z24GetFileNameForThisActionmPcRb, &$_Z24GetFileNameForThisActionmPcRb, &__Z24GetFileNameForThisActionmPcRb);
1426 }
1427
1428 $NSBundle = objc_getClass("NSBundle");
1429
1430 _NSBundle$localizedStringForKey$value$table$ = MSHookMessage($NSBundle, @selector(localizedStringForKey:value:table:), &$NSBundle$localizedStringForKey$value$table$);
1431 _NSBundle$pathForResource$ofType$ = MSHookMessage($NSBundle, @selector(pathForResource:ofType:), &$NSBundle$pathForResource$ofType$);
1432
1433 $UIImage = objc_getClass("UIImage");
1434 $UINavigationBar = objc_getClass("UINavigationBar");
1435 $UIToolbar = objc_getClass("UIToolbar");
1436
1437 _UIImage$defaultDesktopImage = MSHookMessage(object_getClass($UIImage), @selector(defaultDesktopImage), &$UIImage$defaultDesktopImage);
1438
1439 //WBRename("UINavigationBar", @selector(initWithCoder:", (IMP) &UINavigationBar$initWithCoder$);
1440 //WBRename("UINavigationBarBackground", @selector(initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
1441
1442 _UINavigationBar$setBarStyle$ = MSHookMessage($UINavigationBar, @selector(setBarStyle:), &$UINavigationBar$setBarStyle$);
1443 _UIToolbar$setBarStyle$ = MSHookMessage($UIToolbar, @selector(setBarStyle:), &$UIToolbar$setBarStyle$);
1444
1445 Manager_ = [[NSFileManager defaultManager] retain];
1446 UIImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
1447 PathImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
1448 Strings_ = [[NSMutableDictionary alloc] initWithCapacity:0];
1449 Bundles_ = [[NSMutableDictionary alloc] initWithCapacity:2];
1450 Themed_ = [[NSMutableDictionary alloc] initWithCapacity:128];
1451
1452 themes_ = [[NSMutableArray alloc] initWithCapacity:8];
1453
1454 if (NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"/User/Library/Preferences/com.saurik.WinterBoard.plist"]]) {
1455 [settings autorelease];
1456
1457 if (NSNumber *debug = [settings objectForKey:@"Debug"])
1458 Debug_ = [debug boolValue];
1459
1460 NSArray *themes = [settings objectForKey:@"Themes"];
1461 if (themes == nil)
1462 if (NSString *theme = [settings objectForKey:@"Theme"])
1463 themes = [NSArray arrayWithObject:[NSDictionary dictionaryWithObjectsAndKeys:
1464 theme, @"Name",
1465 [NSNumber numberWithBool:true], @"Active",
1466 nil]];
1467 if (themes != nil)
1468 for (NSDictionary *theme in themes) {
1469 NSNumber *active = [theme objectForKey:@"Active"];
1470 if (![active boolValue])
1471 continue;
1472
1473 NSString *name = [theme objectForKey:@"Name"];
1474 if (name == nil)
1475 continue;
1476
1477 NSString *theme = nil;
1478
1479 #define testForTheme(format...) \
1480 if (theme == nil) { \
1481 NSString *path = [NSString stringWithFormat:format]; \
1482 if ([Manager_ fileExistsAtPath:path]) { \
1483 [themes_ addObject:path]; \
1484 continue; \
1485 } \
1486 }
1487
1488 testForTheme(@"/Library/Themes/%@.theme", name)
1489 testForTheme(@"/Library/Themes/%@", name)
1490 testForTheme(@"%@/Library/SummerBoard/Themes/%@", NSHomeDirectory(), name)
1491 }
1492 }
1493
1494 Info_ = [[NSMutableDictionary dictionaryWithCapacity:16] retain];
1495
1496 for (NSString *theme in themes_)
1497 if (NSDictionary *info = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Info.plist", theme]]) {
1498 [info autorelease];
1499 for (NSString *key in [info allKeys])
1500 if ([Info_ objectForKey:key] == nil)
1501 [Info_ setObject:[info objectForKey:key] forKey:key];
1502 }
1503
1504 bool sms($getTheme$([NSArray arrayWithObjects:@"SMSBackground.png", @"SMSBackground.jpg", nil]) != nil);
1505
1506 if ([NSBundle bundleWithIdentifier:@"com.apple.chatkit"])
1507 if (sms) {
1508 $CKMessageCell = objc_getClass("CKMessageCell");
1509 _CKMessageCell$addBalloonView$ = MSHookMessage($CKMessageCell, @selector(addBalloonView:), &$CKMessageCell$addBalloonView$);
1510 _CKMessageCell$initWithStyle$reuseIdentifier$ = MSHookMessage($CKMessageCell, @selector(initWithStyle:reuseIdentifier:), &$CKMessageCell$initWithStyle$reuseIdentifier$);
1511
1512 $CKTranscriptTableView = objc_getClass("CKTranscriptTableView");
1513 _CKTranscriptTableView$setSeparatorStyle$ = MSHookMessage($CKTranscriptTableView, @selector(setSeparatorStyle:), &$CKTranscriptTableView$setSeparatorStyle$);
1514 _CKTranscriptTableView$initWithFrame$style$ = MSHookMessage($CKTranscriptTableView, @selector(initWithFrame:style:), &$CKTranscriptTableView$initWithFrame$style$);
1515
1516 $CKTimestampView = objc_getClass("CKTimestampView");
1517 _CKTimestampView$initWithStyle$reuseIdentifier$ = MSHookMessage($CKTimestampView, @selector(initWithStyle:reuseIdentifier:), &$CKTimestampView$initWithStyle$reuseIdentifier$);
1518
1519 $CKTranscriptController = objc_getClass("CKTranscriptController");
1520 _TranscriptController$loadView = MSHookMessage($CKTranscriptController, @selector(loadView), &$TranscriptController$loadView);
1521 }
1522
1523 if ([identifier isEqualToString:@"com.apple.MobileSMS"]) {
1524 if (sms) {
1525 if (_TranscriptController$loadView == NULL) {
1526 Class mSMSMessageTranscriptController = objc_getClass("mSMSMessageTranscriptController");
1527 _TranscriptController$loadView = MSHookMessage(mSMSMessageTranscriptController, @selector(loadView), &$TranscriptController$loadView);
1528 }
1529 }
1530 } else if ([identifier isEqualToString:@"com.apple.springboard"]) {
1531 CFNotificationCenterAddObserver(
1532 CFNotificationCenterGetDarwinNotifyCenter(),
1533 NULL, &ChangeWallpaper, (CFStringRef) @"com.saurik.winterboard.lockbackground", NULL, 0
1534 );
1535
1536 NSBundle *MediaPlayer = [NSBundle bundleWithPath:@"/System/Library/Frameworks/MediaPlayer.framework"];
1537 if (MediaPlayer != nil)
1538 [MediaPlayer load];
1539
1540 $MPMoviePlayerController = objc_getClass("MPMoviePlayerController");
1541 $MPVideoView = objc_getClass("MPVideoView");
1542 $WebCoreFrameBridge = objc_getClass("WebCoreFrameBridge");
1543
1544 $SBApplication = objc_getClass("SBApplication");
1545 $SBApplicationIcon = objc_getClass("SBApplicationIcon");
1546 $SBAwayView = objc_getClass("SBAwayView");
1547 $SBBookmarkIcon = objc_getClass("SBBookmarkIcon");
1548 $SBButtonBar = objc_getClass("SBButtonBar");
1549 $SBCalendarIconContentsView = objc_getClass("SBCalendarIconContentsView");
1550 $SBIcon = objc_getClass("SBIcon");
1551 $SBIconBadge = objc_getClass("SBIconBadge");
1552 $SBIconController = objc_getClass("SBIconController");
1553 $SBIconLabel = objc_getClass("SBIconLabel");
1554 $SBIconList = objc_getClass("SBIconList");
1555 $SBIconModel = objc_getClass("SBIconModel");
1556 //$SBImageCache = objc_getClass("SBImageCache");
1557 $SBSearchView = objc_getClass("SBSearchView");
1558 $SBSearchTableViewCell = objc_getClass("SBSearchTableViewCell");
1559 $SBStatusBarContentsView = objc_getClass("SBStatusBarContentsView");
1560 $SBStatusBarController = objc_getClass("SBStatusBarController");
1561 $SBStatusBarOperatorNameView = objc_getClass("SBStatusBarOperatorNameView");
1562 $SBStatusBarTimeView = objc_getClass("SBStatusBarTimeView");
1563 $SBUIController = objc_getClass("SBUIController");
1564 $SBWidgetApplicationIcon = objc_getClass("SBWidgetApplicationIcon");
1565
1566 WBRename(WebCoreFrameBridge, renderedSizeOfNode:constrainedToWidth:, renderedSizeOfNode$constrainedToWidth$);
1567
1568 WBRename(SBApplication, pathForIcon, pathForIcon);
1569 WBRename(SBApplicationIcon, icon, icon);
1570 WBRename(SBBookmarkIcon, icon, icon);
1571 WBRename(SBButtonBar, didMoveToSuperview, didMoveToSuperview);
1572 WBRename(SBCalendarIconContentsView, drawRect:, drawRect$);
1573 WBRename(SBIcon, setAlpha:, setAlpha$);
1574 WBRename(SBIconBadge, initWithBadge:, initWithBadge$);
1575 WBRename(SBIconController, noteNumberOfIconListsChanged, noteNumberOfIconListsChanged);
1576 WBRename(SBUIController, init, init);
1577 WBRename(SBWidgetApplicationIcon, icon, icon);
1578
1579 WBRename(SBIconLabel, drawRect:, drawRect$);
1580 WBRename(SBIconLabel, initWithSize:label:, initWithSize$label$);
1581 WBRename(SBIconLabel, setInDock:, setInDock$);
1582
1583 WBRename(SBIconList, setFrame:, setFrame$);
1584
1585 WBRename(SBIconModel, cacheImageForIcon:, cacheImageForIcon$);
1586 WBRename(SBIconModel, cacheImagesForIcon:, cacheImagesForIcon$);
1587 WBRename(SBIconModel, getCachedImagedForIcon:, getCachedImagedForIcon$);
1588 WBRename(SBIconModel, getCachedImagedForIcon:smallIcon:, getCachedImagedForIcon$smallIcon$);
1589
1590 WBRename(SBSearchView, initWithFrame:, initWithFrame$);
1591 WBRename(SBSearchTableViewCell, drawRect:, drawRect$);
1592 WBRename(SBSearchTableViewCell, initWithStyle:reuseIdentifier:, initWithStyle$reuseIdentifier$);
1593
1594 //WBRename(SBImageCache, initWithName:forImageWidth:imageHeight:initialCapacity:, initWithName$forImageWidth$imageHeight$initialCapacity$);
1595
1596 WBRename(SBAwayView, updateDesktopImage:, updateDesktopImage$);
1597 WBRename(SBStatusBarContentsView, didMoveToSuperview, didMoveToSuperview);
1598 //WBRename(SBStatusBarContentsView, initWithStatusBar:mode:, initWithStatusBar$mode$);
1599 //WBRename(SBStatusBarController, setStatusBarMode:orientation:duration:animation:, setStatusBarMode$orientation$duration$animation$);
1600 WBRename(SBStatusBarController, setStatusBarMode:orientation:duration:fenceID:animation:, setStatusBarMode$orientation$duration$fenceID$animation$);
1601 WBRename(SBStatusBarController, setStatusBarMode:orientation:duration:fenceID:animation:startTime:, setStatusBarMode$orientation$duration$fenceID$animation$startTime$);
1602 WBRename(SBStatusBarOperatorNameView, operatorNameStyle, operatorNameStyle);
1603 WBRename(SBStatusBarOperatorNameView, setOperatorName:fullSize:, setOperatorName$fullSize$);
1604 WBRename(SBStatusBarTimeView, drawRect:, drawRect$);
1605
1606 English_ = [[NSDictionary alloc] initWithContentsOfFile:@"/System/Library/CoreServices/SpringBoard.app/English.lproj/LocalizedApplicationNames.strings"];
1607 Cache_ = [[NSMutableDictionary alloc] initWithCapacity:64];
1608 }
1609
1610 Wallpapers_ = [[NSArray arrayWithObjects:@"Wallpaper.mp4", @"Wallpaper.png", @"Wallpaper.jpg", @"Wallpaper.html", nil] retain];
1611
1612 if ([Info_ objectForKey:@"UndockedIconLabels"] == nil)
1613 [Info_ setObject:[NSNumber numberWithBool:(
1614 $getTheme$(Wallpapers_) == nil ||
1615 [Info_ objectForKey:@"DockedIconLabelStyle"] != nil ||
1616 [Info_ objectForKey:@"UndockedIconLabelStyle"] != nil
1617 )] forKey:@"UndockedIconLabels"];
1618
1619 if (Debug_)
1620 NSLog(@"WB:Debug:Info = %@", [Info_ description]);
1621
1622 [pool release];
1623 }