]> git.saurik.com Git - winterboard.git/blob - Library.mm
Bug fix release.
[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 #define _trace() NSLog(@"WB:_trace(%u)", __LINE__);
39 #define _transient
40
41 #import <CoreFoundation/CoreFoundation.h>
42 #import <Foundation/Foundation.h>
43 #import <CoreGraphics/CoreGraphics.h>
44
45 #include <substrate.h>
46
47 #import <UIKit/UIKit.h>
48
49 #import <SpringBoard/SBApplication.h>
50 #import <SpringBoard/SBApplicationIcon.h>
51 #import <SpringBoard/SBAppWindow.h>
52 #import <SpringBoard/SBBookmarkIcon.h>
53 #import <SpringBoard/SBButtonBar.h>
54 #import <SpringBoard/SBCalendarIconContentsView.h>
55 #import <SpringBoard/SBContentLayer.h>
56 #import <SpringBoard/SBIconController.h>
57 #import <SpringBoard/SBIconLabel.h>
58 #import <SpringBoard/SBSlidingAlertDisplay.h>
59 #import <SpringBoard/SBStatusBarContentsView.h>
60 #import <SpringBoard/SBStatusBarController.h>
61 #import <SpringBoard/SBStatusBarOperatorNameView.h>
62 #import <SpringBoard/SBStatusBarTimeView.h>
63 #import <SpringBoard/SBUIController.h>
64
65 #import <MobileSMS/mSMSMessageTranscriptController.h>
66
67 #import <MediaPlayer/MPVideoView.h>
68 #import <MediaPlayer/MPVideoView-PlaybackControl.h>
69
70 #import <CoreGraphics/CGGeometry.h>
71
72 extern "C" void __clear_cache (char *beg, char *end);
73
74 Class $MPVideoView;
75
76 @interface NSDictionary (WinterBoard)
77 - (UIColor *) colorForKey:(NSString *)key;
78 - (BOOL) boolForKey:(NSString *)key;
79 @end
80
81 @implementation NSDictionary (WinterBoard)
82
83 - (UIColor *) colorForKey:(NSString *)key {
84 NSString *value = [self objectForKey:key];
85 if (value == nil)
86 return nil;
87 /* XXX: incorrect */
88 return nil;
89 }
90
91 - (BOOL) boolForKey:(NSString *)key {
92 if (NSString *value = [self objectForKey:key])
93 return [value boolValue];
94 return false;
95 }
96
97 @end
98
99 bool Debug_ = false;
100 bool Engineer_ = false;
101
102 @protocol WinterBoard
103 - (void) wb$setOperatorName:(NSString *)name fullSize:(BOOL)full;
104 - (NSString *) wb$operatorNameStyle;
105 - (void) wb$loadView;
106 - (NSString *) wb$localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table;
107 - (id) wb$initWithBadge:(id)badge;
108 - (void) wb$cacheImageForIcon:(SBIcon *)icon;
109 - (UIImage *) wb$getCachedImagedForIcon:(SBIcon *)icon;
110 - (CGSize) wb$renderedSizeOfNode:(id)node constrainedToWidth:(float)width;
111 - (void *) _node;
112 - (void) wb$updateDesktopImage:(UIImage *)image;
113 - (UIImage *) wb$defaultDesktopImage;
114 - (NSString *) wb$pathForIcon;
115 - (NSString *) wb$pathForResource:(NSString *)resource ofType:(NSString *)type;
116 - (id) wb$init;
117 - (id) wb$layer;
118 - (id) wb$initWithSize:(CGSize)size;
119 - (id) wb$initWithSize:(CGSize)size label:(NSString *)label;
120 - (id) wb$initWithFrame:(CGRect)frame;
121 - (id) wb$initWithCoder:(NSCoder *)coder;
122 - (void) wb$setFrame:(CGRect)frame;
123 - (void) wb$drawRect:(CGRect)rect;
124 - (void) wb$setBackgroundColor:(id)color;
125 - (void) wb$setAlpha:(float)value;
126 - (void) wb$setBarStyle:(int)style;
127 - (id) wb$initWithFrame:(CGRect)frame withBarStyle:(int)style withTintColor:(UIColor *)color;
128 - (void) wb$setOpaque:(BOOL)opaque;
129 - (void) wb$setInDock:(BOOL)docked;
130 - (void) wb$didMoveToSuperview;
131 + (UIImage *) wb$imageNamed:(NSString *)name inBundle:(NSBundle *)bundle;
132 + (UIImage *) wb$applicationImageNamed:(NSString *)name;
133 - (NSDictionary *) wb$infoDictionary;
134 - (UIImage *) wb$icon;
135 - (void) wb$appendIconList:(SBIconList *)list;
136 - (id) wb$initWithStatusBar:(id)bar mode:(int)mode;
137 - (id) wb$initWithMode:(int)mode orientation:(int)orientation;
138 - (id) wb$imageAtPath:(NSString *)path;
139 - (id) wb$initWithContentsOfFile:(NSString *)file;
140 - (id) wb$initWithContentsOfFile:(NSString *)file cache:(BOOL)cache;
141 - (void) wb$setStatusBarMode:(int)mode orientation:(int)orientation duration:(float)duration fenceID:(int)id animation:(int)animation;
142 @end
143
144 static NSMutableDictionary *UIImages_;
145 static NSMutableDictionary *PathImages_;
146 static NSMutableDictionary *Cache_;
147 static NSMutableDictionary *Strings_;
148
149 static NSFileManager *Manager_;
150 static NSDictionary *English_;
151 static NSMutableDictionary *Info_;
152 static NSMutableArray *themes_;
153
154 static NSString *$getTheme$(NSArray *files, bool parent = false) {
155 if (Debug_)
156 NSLog(@"WB:Debug: %@", [files description]);
157
158 for (NSString *theme in themes_)
159 for (NSString *file in files) {
160 NSString *path([NSString stringWithFormat:@"%@/%@", theme, file]);
161 if ([Manager_ fileExistsAtPath:path])
162 return parent ? theme : path;
163 }
164
165 return nil;
166 }
167
168 static NSString *$pathForIcon$(SBApplication<WinterBoard> *self) {
169 NSString *identifier = [self bundleIdentifier];
170 NSString *path = [self path];
171 NSString *folder = [path lastPathComponent];
172 NSString *dname = [self displayName];
173 NSString *didentifier = [self displayIdentifier];
174
175 if (Debug_)
176 NSLog(@"WB:Debug: [SBApplication(%@:%@:%@:%@) pathForIcon]", identifier, folder, dname, didentifier);
177
178 NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
179
180 if (identifier != nil)
181 [names addObject:[NSString stringWithFormat:@"Bundles/%@/icon.png", identifier]];
182 if (folder != nil)
183 [names addObject:[NSString stringWithFormat:@"Folders/%@/icon.png", folder]];
184
185 #define testForIcon(Name) \
186 if (NSString *name = Name) \
187 [names addObject:[NSString stringWithFormat:@"Icons/%@.png", name]];
188
189 testForIcon(identifier);
190 testForIcon(dname);
191
192 if (didentifier != nil) {
193 testForIcon([English_ objectForKey:didentifier]);
194
195 NSArray *parts = [didentifier componentsSeparatedByString:@"-"];
196 if ([parts count] != 1)
197 if (NSDictionary *english = [[[NSDictionary alloc] initWithContentsOfFile:[path stringByAppendingString:@"/English.lproj/UIRoleDisplayNames.strings"]] autorelease])
198 testForIcon([english objectForKey:[parts lastObject]]);
199 }
200
201 if (NSString *path = $getTheme$(names))
202 return path;
203 return nil;
204 }
205
206 static void SBIconModel$cacheImageForIcon$(SBIconModel<WinterBoard> *self, SEL sel, SBIcon *icon) {
207 [self wb$cacheImageForIcon:icon];
208 NSString *key([icon displayIdentifier]);
209
210 if (UIImage *image = [icon icon]) {
211 CGColorSpaceRef space(CGColorSpaceCreateDeviceRGB());
212 CGRect rect = {CGPointMake(1, 1), [image size]};
213 CGSize size = {rect.size.width + 2, rect.size.height + 2};
214
215 CGContextRef context(CGBitmapContextCreate(NULL, size.width, size.height, 8, 4 * size.width, space, kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst));
216 CGColorSpaceRelease(space);
217
218 CGContextDrawImage(context, rect, [image CGImage]);
219 CGImageRef ref(CGBitmapContextCreateImage(context));
220 CGContextRelease(context);
221
222 UIImage *image([UIImage imageWithCGImage:ref]);
223 CGImageRelease(ref);
224
225 [Cache_ setObject:image forKey:key];
226 }
227 }
228
229 static UIImage *SBIconModel$getCachedImagedForIcon$(SBIconModel<WinterBoard> *self, SEL sel, SBIcon *icon) {
230 NSString *key([icon displayIdentifier]);
231 if (UIImage *image = [Cache_ objectForKey:key])
232 return image;
233 else
234 return [self wb$getCachedImagedForIcon:icon];
235 }
236
237 static UIImage *SBApplicationIcon$icon(SBApplicationIcon<WinterBoard> *self, SEL sel) {
238 if (![Info_ boolForKey:@"ComposeStoreIcons"])
239 if (NSString *path = $pathForIcon$([self application]))
240 return [UIImage imageWithContentsOfFile:path];
241 return [self wb$icon];
242 }
243
244 static UIImage *SBBookmarkIcon$icon(SBBookmarkIcon<WinterBoard> *self, SEL sel) {
245 if (Debug_)
246 NSLog(@"WB:Debug:Bookmark(%@:%@)", [self displayIdentifier], [self displayName]);
247 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Icons/%@.png", [self displayName]]]))
248 return [UIImage imageWithContentsOfFile:path];
249 return [self wb$icon];
250 }
251
252 static NSString *SBApplication$pathForIcon(SBApplication<WinterBoard> *self, SEL sel) {
253 if (NSString *path = $pathForIcon$(self))
254 return path;
255 return [self wb$pathForIcon];
256 }
257
258 static NSString *$pathForFile$inBundle$(NSString *file, NSBundle<WinterBoard> *bundle, bool ui) {
259 NSString *identifier = [bundle bundleIdentifier];
260 NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
261
262 if (identifier != nil)
263 [names addObject:[NSString stringWithFormat:@"Bundles/%@/%@", identifier, file]];
264 if (NSString *folder = [[bundle bundlePath] lastPathComponent])
265 [names addObject:[NSString stringWithFormat:@"Folders/%@/%@", folder, file]];
266 if (ui)
267 [names addObject:[NSString stringWithFormat:@"UIImages/%@", file]];
268
269 #define remapResourceName(oldname, newname) \
270 else if ([file isEqualToString:oldname]) \
271 [names addObject:[NSString stringWithFormat:@"%@.png", newname]]; \
272
273 if (identifier == nil);
274 else if ([identifier isEqualToString:@"com.apple.calculator"])
275 [names addObject:[NSString stringWithFormat:@"Files/Applications/Calculator.app/%@", file]];
276 else if (![identifier isEqualToString:@"com.apple.springboard"]);
277 remapResourceName(@"FSO_BG.png", @"StatusBar")
278 remapResourceName(@"SBDockBG.png", @"Dock")
279 remapResourceName(@"SBWeatherCelsius.png", @"Icons/Weather")
280
281 if (NSString *path = $getTheme$(names))
282 return path;
283 return nil;
284 }
285
286 static UIImage *CachedImageAtPath(NSString *path) {
287 UIImage *image = [PathImages_ objectForKey:path];
288 if (image != nil)
289 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
290 image = [[UIImage alloc] wb$initWithContentsOfFile:path cache:true];
291 if (image != nil)
292 image = [image autorelease];
293 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:path];
294 return image;
295 }
296
297 static UIImage *UIImage$imageNamed$inBundle$(Class<WinterBoard> self, SEL sel, NSString *name, NSBundle *bundle) {
298 NSString *key = [NSString stringWithFormat:@"B:%@/%@", [bundle bundleIdentifier], name];
299 UIImage *image = [PathImages_ objectForKey:key];
300 if (image != nil)
301 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
302 if (Debug_)
303 NSLog(@"WB:Debug: [UIImage(%@) imageNamed:\"%@\"]", [bundle bundleIdentifier], name);
304 if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
305 image = CachedImageAtPath(path);
306 if (image == nil)
307 image = [self wb$imageNamed:name inBundle:bundle];
308 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
309 return image;
310 }
311
312 static UIImage *UIImage$imageNamed$(Class<WinterBoard> self, SEL sel, NSString *name) {
313 return UIImage$imageNamed$inBundle$(self, sel, name, [NSBundle mainBundle]);
314 }
315
316 static UIImage *UIImage$applicationImageNamed$(Class<WinterBoard> self, SEL sel, NSString *name) {
317 NSBundle *bundle = [NSBundle mainBundle];
318 if (Debug_)
319 NSLog(@"WB:Debug: [UIImage(%@) applicationImageNamed:\"%@\"]", [bundle bundleIdentifier], name);
320 if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
321 return CachedImageAtPath(path);
322 return [self wb$applicationImageNamed:name];
323 }
324
325 @interface NSString (WinterBoard)
326 - (NSString *) wb$themedPath;
327 @end
328
329 @implementation NSString (WinterBoard)
330
331 - (NSString *) wb$themedPath {
332 if (Debug_)
333 NSLog(@"WB:Debug:Bypass(\"%@\")", self);
334
335 if (NSBundle *bundle = [NSBundle mainBundle]) {
336 NSString *prefix([bundle bundlePath]);
337 if ([self hasPrefix:prefix]) {
338 NSUInteger length([prefix length]);
339 if (length != [self length])
340 if (NSString *path = $pathForFile$inBundle$([self substringFromIndex:(length + 1)], bundle, false))
341 return path;
342 }
343 }
344
345 return self;
346 }
347
348 @end
349
350 #define WBDelegate(delegate) \
351 - (NSMethodSignature*) methodSignatureForSelector:(SEL)sel { \
352 if (Engineer_) \
353 NSLog(@"WB:MS:%s:(%s)", class_getName([self class]), sel_getName(sel)); \
354 if (NSMethodSignature *sig = [delegate methodSignatureForSelector:sel]) \
355 return sig; \
356 NSLog(@"WB:Error: [%s methodSignatureForSelector:(%s)]", class_getName([self class]), sel_getName(sel)); \
357 return nil; \
358 } \
359 \
360 - (void) forwardInvocation:(NSInvocation*)inv { \
361 SEL sel = [inv selector]; \
362 if ([delegate respondsToSelector:sel]) \
363 [inv invokeWithTarget:delegate]; \
364 else \
365 NSLog(@"WB:Error: [%s forwardInvocation:(%s)]", class_getName([self class]), sel_getName(sel)); \
366 }
367
368 static NSString *NSBundle$pathForResource$ofType$(NSBundle<WinterBoard> *self, SEL sel, NSString *resource, NSString *type) {
369 NSString *file = type == nil ? resource : [NSString stringWithFormat:@"%@.%@", resource, type];
370 if (Debug_)
371 NSLog(@"WB:Debug: [NSBundle(%@) pathForResource:\"%@\"]", [self bundleIdentifier], file);
372 if (NSString *path = $pathForFile$inBundle$(file, self, false))
373 return path;
374 return [self wb$pathForResource:resource ofType:type];
375 }
376
377 static bool $setBarStyle$_(NSString *name, UIView<WinterBoard> *self, int style) {
378 if (Debug_)
379 NSLog(@"WB:Debug:%@Style:%d", name, style);
380 NSNumber *number = nil;
381 if (number == nil)
382 number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style-%d", name, style]];
383 if (number == nil)
384 number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style", name]];
385 if (number == nil)
386 return false;
387 else {
388 style = [number intValue];
389 if (Debug_)
390 NSLog(@"WB:Debug:%@Style=%d", name, style);
391 [self wb$setBarStyle:style];
392 return true;
393 }
394 }
395
396 static void SBCalendarIconContentsView$drawRect$(SBCalendarIconContentsView<WinterBoard> *self, SEL sel, CGRect rect) {
397 NSBundle *bundle([NSBundle mainBundle]);
398
399 CFLocaleRef locale(CFLocaleCopyCurrent());
400 CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, locale, kCFDateFormatterNoStyle, kCFDateFormatterNoStyle));
401 CFRelease(locale);
402
403 CFDateRef now(CFDateCreate(NULL, CFAbsoluteTimeGetCurrent()));
404
405 CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NUMBER_FORMAT" value:@"" table:@"SpringBoard"]);
406 CFStringRef date(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
407 CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NAME_FORMAT" value:@"" table:@"SpringBoard"]);
408 CFStringRef day(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
409
410 CFRelease(now);
411
412 CFRelease(formatter);
413
414 NSString *datestyle(@""
415 "font-family: Helvetica; "
416 "font-weight: bold; "
417 "font-size: 39px; "
418 "color: #333333; "
419 "alpha: 1.0; "
420 "");
421
422 NSString *daystyle(@""
423 "font-family: Helvetica; "
424 "font-weight: bold; "
425 "font-size: 9px; "
426 "color: white; "
427 "text-shadow: rgba(0, 0, 0, 0.2) -1px -1px 2px; "
428 "");
429
430 if (NSString *style = [Info_ objectForKey:@"CalendarIconDateStyle"])
431 datestyle = [datestyle stringByAppendingString:style];
432 if (NSString *style = [Info_ objectForKey:@"CalendarIconDayStyle"])
433 daystyle = [daystyle stringByAppendingString:style];
434
435 float width([self bounds].size.width);
436 float leeway(10);
437 CGSize datesize = [(NSString *)date sizeWithStyle:datestyle forWidth:(width + leeway)];
438 CGSize daysize = [(NSString *)day sizeWithStyle:daystyle forWidth:(width + leeway)];
439
440 [(NSString *)date drawAtPoint:CGPointMake(
441 (width + 1 - datesize.width) / 2, (71 - datesize.height) / 2
442 ) withStyle:datestyle];
443
444 [(NSString *)day drawAtPoint:CGPointMake(
445 (width + 1 - daysize.width) / 2, (16 - daysize.height) / 2
446 ) withStyle:daystyle];
447
448 CFRelease(date);
449 CFRelease(day);
450 }
451
452 /*static id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
453 _trace();
454
455 if (NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"])
456 style = [number intValue];
457
458 if (UIColor *color = [Info_ colorForKey:@"NavigationBarTint"])
459 tint = color;
460
461 return [self wb$initWithFrame:frame withBarStyle:style withTintColor:tint];
462 }*/
463
464 /*static id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
465 self = [self wb$initWithCoder:coder];
466 if (self == nil)
467 return nil;
468 UINavigationBar$setBarStyle$_(self);
469 return self;
470 }
471
472 static id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
473 self = [self wb$initWithFrame:frame];
474 if (self == nil)
475 return nil;
476 UINavigationBar$setBarStyle$_(self);
477 return self;
478 }*/
479
480 static void UIToolbar$setBarStyle$(UIToolbar<WinterBoard> *self, SEL sel, int style) {
481 if ($setBarStyle$_(@"Toolbar", self, style))
482 return;
483 return [self wb$setBarStyle:style];
484 }
485
486 static void UINavigationBar$setBarStyle$(UINavigationBar<WinterBoard> *self, SEL sel, int style) {
487 if ($setBarStyle$_(@"NavigationBar", self, style))
488 return;
489 return [self wb$setBarStyle:style];
490 }
491
492 static void $didMoveToSuperview(SBButtonBar<WinterBoard> *self, SEL sel) {
493 [[self superview] setBackgroundColor:[UIColor clearColor]];
494 [self wb$didMoveToSuperview];
495 }
496
497 static id UIImage$imageAtPath$(NSObject<WinterBoard> *self, SEL sel, NSString *path) {
498 return [self wb$imageAtPath:[path wb$themedPath]];
499 }
500
501 static id $initWithContentsOfFile$(NSObject<WinterBoard> *self, SEL sel, NSString *file) {
502 return [self wb$initWithContentsOfFile:[file wb$themedPath]];
503 }
504
505 static id UIImage$initWithContentsOfFile$cache$(UIImage<WinterBoard> *self, SEL sel, NSString *file, BOOL cache) {
506 return [self wb$initWithContentsOfFile:[file wb$themedPath] cache:cache];
507 }
508
509 static UIImage *UIImage$defaultDesktopImage$(UIImage<WinterBoard> *self, SEL sel) {
510 if (Debug_)
511 NSLog(@"WB:Debug:DefaultDesktopImage");
512 if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"LockBackground.png", @"LockBackground.jpg", nil]))
513 return [UIImage imageWithContentsOfFile:path];
514 return [self wb$defaultDesktopImage];
515 }
516
517 static NSArray *Wallpapers_;
518 static NSString *WallpaperFile_;
519 static UIImageView *WallpaperImage_;
520 static UIWebDocumentView *WallpaperPage_;
521 static NSURL *WallpaperURL_;
522
523 #define _release(object) \
524 do if (object != nil) { \
525 [object release]; \
526 object = nil; \
527 } while (false)
528
529 static id SBContentLayer$initWithSize$(SBContentLayer<WinterBoard> *self, SEL sel, CGSize size) {
530 self = [self wb$initWithSize:size];
531 if (self == nil)
532 return nil;
533
534 _release(WallpaperFile_);
535 _release(WallpaperImage_);
536 _release(WallpaperPage_);
537 _release(WallpaperURL_);
538
539 if (NSString *theme = $getTheme$(Wallpapers_, true)) {
540 NSString *mp4 = [theme stringByAppendingPathComponent:@"Wallpaper.mp4"];
541 if ([Manager_ fileExistsAtPath:mp4]) {
542 MPVideoView *video = [[[$MPVideoView alloc] initWithFrame:[self bounds]] autorelease];
543 [video setMovieWithPath:mp4];
544 [video setRepeatMode:1];
545 [video setRepeatGap:0];
546 [self addSubview:video];
547 [video playFromBeginning];;
548 }
549
550 NSString *png = [theme stringByAppendingPathComponent:@"Wallpaper.png"];
551 NSString *jpg = [theme stringByAppendingPathComponent:@"Wallpaper.jpg"];
552
553 NSString *path;
554 if ([Manager_ fileExistsAtPath:png])
555 path = png;
556 else if ([Manager_ fileExistsAtPath:jpg])
557 path = jpg;
558 else path = nil;
559
560 UIImage *image;
561 if (path != nil) {
562 image = [[UIImage alloc] wb$initWithContentsOfFile:path];
563 if (image != nil)
564 image = [image autorelease];
565 } else image = nil;
566
567 if (image != nil) {
568 WallpaperFile_ = [path retain];
569 WallpaperImage_ = [[UIImageView alloc] initWithImage:image];
570 [self addSubview:WallpaperImage_];
571 }
572
573 NSString *html = [theme stringByAppendingPathComponent:@"Wallpaper.html"];
574 if ([Manager_ fileExistsAtPath:html]) {
575 CGRect bounds = [self bounds];
576
577 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
578 [view setAutoresizes:true];
579
580 WallpaperPage_ = [view retain];
581 WallpaperURL_ = [[NSURL fileURLWithPath:html] retain];
582
583 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
584
585 [[view webView] setDrawsBackground:false];
586 [view setBackgroundColor:[UIColor clearColor]];
587
588 [self addSubview:view];
589 }
590 }
591
592 for (size_t i(0), e([themes_ count]); i != e; ++i) {
593 NSString *theme = [themes_ objectAtIndex:(e - i - 1)];
594 NSString *html = [theme stringByAppendingPathComponent:@"Widget.html"];
595 if ([Manager_ fileExistsAtPath:html]) {
596 CGRect bounds = [self bounds];
597
598 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
599 [view setAutoresizes:true];
600
601 NSURL *url = [NSURL fileURLWithPath:html];
602 [view loadRequest:[NSURLRequest requestWithURL:url]];
603
604 [[view webView] setDrawsBackground:false];
605 [view setBackgroundColor:[UIColor clearColor]];
606
607 [self addSubview:view];
608 }
609 }
610
611 return self;
612 }
613
614 static void SBSlidingAlertDisplay$updateDesktopImage$(SBSlidingAlertDisplay<WinterBoard> *self, SEL sel, UIImage *image) {
615 NSString *path = $getTheme$([NSArray arrayWithObject:@"LockBackground.html"]);
616 UIView *&_backgroundView(MSHookIvar<UIView *>(self, "_backgroundView"));
617
618 if (path != nil && _backgroundView != nil)
619 path = nil;
620
621 [self wb$updateDesktopImage:image];
622
623 if (path != nil) {
624 CGRect bounds = [self bounds];
625
626 UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
627 [view setAutoresizes:true];
628
629 if (WallpaperPage_ != nil)
630 [WallpaperPage_ release];
631 WallpaperPage_ = [view retain];
632
633 if (WallpaperURL_ != nil)
634 [WallpaperURL_ release];
635 WallpaperURL_ = [[NSURL fileURLWithPath:path] retain];
636
637 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
638
639 [[view webView] setDrawsBackground:false];
640 [view setBackgroundColor:[UIColor clearColor]];
641
642 [self insertSubview:view aboveSubview:_backgroundView];
643 }
644 }
645
646 /*extern "C" CGColorRef CGGStateGetSystemColor(void *);
647 extern "C" CGColorRef CGGStateGetFillColor(void *);
648 extern "C" CGColorRef CGGStateGetStrokeColor(void *);
649 extern "C" NSString *UIStyleStringFromColor(CGColorRef);*/
650
651 /* WBTimeLabel {{{ */
652 @interface WBTimeLabel : NSProxy {
653 NSString *time_;
654 _transient SBStatusBarTimeView *view_;
655 }
656
657 - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view;
658
659 @end
660
661 @implementation WBTimeLabel
662
663 - (void) dealloc {
664 [time_ release];
665 [super dealloc];
666 }
667
668 - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view {
669 time_ = [time retain];
670 view_ = view;
671 return self;
672 }
673
674 WBDelegate(time_)
675
676 - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
677 if (NSString *custom = [Info_ objectForKey:@"TimeStyle"]) {
678 BOOL &_mode(MSHookIvar<BOOL>(view_, "_mode"));;
679
680 [time_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
681 "font-family: Helvetica; "
682 "font-weight: bold; "
683 "font-size: 14px; "
684 "color: %@; "
685 "%@", _mode ? @"white" : @"black", custom]];
686
687 return CGSizeZero;
688 }
689
690 return [time_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
691 }
692
693 @end
694 /* }}} */
695 /* WBBadgeLabel {{{ */
696 @interface WBBadgeLabel : NSProxy {
697 NSString *badge_;
698 }
699
700 - (id) initWithBadge:(NSString *)badge;
701
702 @end
703
704 @implementation WBBadgeLabel
705
706 - (void) dealloc {
707 [badge_ release];
708 [super dealloc];
709 }
710
711 - (id) initWithBadge:(NSString *)badge {
712 badge_ = [badge retain];
713 return self;
714 }
715
716 WBDelegate(badge_)
717
718 - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
719 if (NSString *custom = [Info_ objectForKey:@"BadgeStyle"]) {
720 [badge_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
721 "font-family: Helvetica; "
722 "font-weight: bold; "
723 "font-size: 17px; "
724 "color: white; "
725 "%@", custom]];
726
727 return CGSizeZero;
728 }
729
730 return [badge_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
731 }
732
733 @end
734 /* }}} */
735
736 static id SBIconBadge$initWithBadge$(SBIconBadge<WinterBoard> *self, SEL sel, NSString *badge) {
737 if ((self = [self wb$initWithBadge:badge]) != nil) {
738 id &_badge(MSHookIvar<id>(self, "_badge"));
739 if (_badge != nil)
740 if (id label = [[WBBadgeLabel alloc] initWithBadge:[_badge autorelease]])
741 _badge = label;
742 } return self;
743 }
744
745 static void SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$(SBStatusBarController<WinterBoard> *self, SEL sel, int mode, int orientation, float duration, int id, int animation) {
746 if (Debug_)
747 NSLog(@"WB:Debug:setStatusBarMode:%d", mode);
748 if (mode < 100) // 104:hidden 105:glowing
749 if (NSNumber *number = [Info_ objectForKey:@"StatusBarMode"])
750 mode = [number intValue];
751 return [self wb$setStatusBarMode:mode orientation:orientation duration:duration fenceID:id animation:animation];
752 }
753
754 static id SBStatusBarContentsView$initWithStatusBar$mode$(SBStatusBarContentsView<WinterBoard> *self, SEL sel, id bar, int mode) {
755 if (NSNumber *number = [Info_ objectForKey:@"StatusBarContentsMode"])
756 mode = [number intValue];
757 return [self wb$initWithStatusBar:bar mode:mode];
758 }
759
760 static NSString *SBStatusBarOperatorNameView$operatorNameStyle(SBStatusBarOperatorNameView<WinterBoard> *self, SEL sel, NSString *name, BOOL full) {
761 NSString *style([self wb$operatorNameStyle]);
762 if (Debug_)
763 NSLog(@"operatorNameStyle= %@", style);
764 if (NSString *custom = [Info_ objectForKey:@"OperatorNameStyle"])
765 style = [NSString stringWithFormat:@"%@; %@", style, custom];
766 return style;
767 }
768
769 static void SBStatusBarOperatorNameView$setOperatorName$fullSize$(SBStatusBarOperatorNameView<WinterBoard> *self, SEL sel, NSString *name, BOOL full) {
770 if (Debug_)
771 NSLog(@"setOperatorName:\"%@\" fullSize:%u", name, full);
772 [self wb$setOperatorName:name fullSize:NO];
773 }
774
775 static void SBStatusBarTimeView$drawRect$(SBStatusBarTimeView<WinterBoard> *self, SEL sel, CGRect rect) {
776 id &_time(MSHookIvar<id>(self, "_time"));
777 if (_time != nil && [_time class] != [WBTimeLabel class])
778 object_setInstanceVariable(self, "_time", reinterpret_cast<void *>([[WBTimeLabel alloc] initWithTime:[_time autorelease] view:self]));
779 return [self wb$drawRect:rect];
780 }
781
782 static void SBIconController$appendIconList$(SBIconController<WinterBoard> *self, SEL sel, SBIconList *list) {
783 if (Debug_)
784 NSLog(@"appendIconList:%@", list);
785 return [self wb$appendIconList:list];
786 }
787
788 static id SBIconLabel$initWithSize$label$(SBIconLabel<WinterBoard> *self, SEL sel, CGSize size, NSString *label) {
789 self = [self wb$initWithSize:size label:label];
790 if (self != nil)
791 [self setClipsToBounds:NO];
792 return self;
793 }
794
795 static void SBIconLabel$setInDock$(SBIconLabel<WinterBoard> *self, SEL sel, BOOL docked) {
796 id &_label(MSHookIvar<id>(self, "_label"));
797 if (![Info_ boolForKey:@"UndockedIconLabels"])
798 docked = true;
799 if (_label != nil && [_label respondsToSelector:@selector(setInDock:)])
800 [_label setInDock:docked];
801 return [self wb$setInDock:docked];
802 }
803
804 static NSString *NSBundle$localizedStringForKey$value$table$(NSBundle<WinterBoard> *self, SEL sel, NSString *key, NSString *value, NSString *table) {
805 NSString *identifier = [self bundleIdentifier];
806 NSLocale *locale = [NSLocale currentLocale];
807 NSString *language = [locale objectForKey:NSLocaleLanguageCode];
808 if (Debug_)
809 NSLog(@"WB:Debug:[NSBundle(%@) localizedStringForKey:\"%@\" value:\"%@\" table:\"%@\"] (%@)", identifier, key, value, table, language);
810 NSString *file = table == nil ? @"Localizable" : table;
811 NSString *name = [NSString stringWithFormat:@"%@:%@", identifier, file];
812 NSDictionary *strings;
813 if ((strings = [Strings_ objectForKey:name]) != nil) {
814 if (static_cast<id>(strings) != [NSNull null]) strings:
815 if (NSString *value = [strings objectForKey:key])
816 return value;
817 } else if (NSString *path = $pathForFile$inBundle$([NSString stringWithFormat:@"%@.lproj/%@.strings",
818 language, file
819 ], self, false)) {
820 if ((strings = [[NSDictionary alloc] initWithContentsOfFile:path]) != nil) {
821 [Strings_ setObject:[strings autorelease] forKey:name];
822 goto strings;
823 } else goto null;
824 } else null:
825 [Strings_ setObject:[NSNull null] forKey:name];
826 return [self wb$localizedStringForKey:key value:value table:table];
827 }
828
829 @class WebCoreFrameBridge;
830 static CGSize WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$(WebCoreFrameBridge<WinterBoard> *self, SEL sel, id node, float width) {
831 if (node == nil)
832 return CGSizeZero;
833 void **core(reinterpret_cast<void **>([node _node]));
834 if (core == NULL || core[6] == NULL)
835 return CGSizeZero;
836 return [self wb$renderedSizeOfNode:node constrainedToWidth:width];
837 }
838
839 static void SBIconLabel$drawRect$(SBIconLabel<WinterBoard> *self, SEL sel, CGRect rect) {
840 CGRect bounds = [self bounds];
841
842 static Ivar drawMoreLegibly = object_getInstanceVariable(self, "_drawMoreLegibly", NULL);
843
844 BOOL docked;
845 Ivar ivar = object_getInstanceVariable(self, "_inDock", reinterpret_cast<void **>(&docked));
846 docked = (docked & (ivar_getOffset(ivar) == ivar_getOffset(drawMoreLegibly) ? 0x2 : 0x1)) != 0;
847
848 NSString *&label(MSHookIvar<NSString *>(self, "_label"));
849
850 NSString *style = [NSString stringWithFormat:@""
851 "font-family: Helvetica; "
852 "font-weight: bold; "
853 "font-size: 11px; "
854 "color: %@; "
855 "", docked ? @"white" : @"#b3b3b3"];
856
857 if (docked)
858 style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; "];
859 float max = 75, width = [label sizeWithStyle:style forWidth:320].width;
860 if (width > max)
861 style = [style stringByAppendingString:[NSString stringWithFormat:@"letter-spacing: -%f; ", ((width - max) / ([label length] - 1))]];
862 if (NSString *custom = [Info_ objectForKey:(docked ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle")])
863 style = [style stringByAppendingString:custom];
864
865 CGSize size = [label sizeWithStyle:style forWidth:bounds.size.width];
866 [label drawAtPoint:CGPointMake((bounds.size.width - size.width) / 2, 0) withStyle:style];
867 }
868
869 void mSMSMessageTranscriptController$loadView(mSMSMessageTranscriptController<WinterBoard> *self, SEL sel) {
870 [self wb$loadView];
871 if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"SMSBackground.png", @"SMSBackground.jpg", nil]))
872 if (UIImage *image = [[UIImage alloc] wb$initWithContentsOfFile:path]) {
873 [image autorelease];
874 UIView *&_transcriptLayer(MSHookIvar<UIView *>(self, "_transcriptLayer"));
875 UIView *parent([_transcriptLayer superview]);
876 UIImageView *background([[[UIImageView alloc] initWithImage:image] autorelease]);
877 [parent insertSubview:background belowSubview:_transcriptLayer];
878 [_transcriptLayer setBackgroundColor:[UIColor clearColor]];
879 }
880 }
881
882 extern "C" void FindMappedImages(void);
883 extern "C" NSData *UIImagePNGRepresentation(UIImage *);
884
885 //static CGImageRef *(*_UIImageRefAtPath)(NSString *path, bool cache, UIImageOrientation *orientation);
886 //_UIImageRefAtPath = (CGImageRef *(*)(NSString *, bool, UIImageOrientation *)) nl[3].n_value;
887
888 static UIImage *(*_UIImageAtPath)(NSString *name, NSBundle *path);
889 static UIImage *(*_UIImageWithName)(NSString *name);
890 static UIImage *(*_UIImageWithNameInDomain)(NSString *name, NSString *domain);
891 static NSBundle *(*_UIKitBundle)();
892 static void (*_UISharedImageInitialize)(bool);
893 static int (*_UISharedImageNameGetIdentifier)(NSString *);
894 static UIImage *(*_UISharedImageWithIdentifier)(int);
895
896 static UIImage *$_UIImageWithName(NSString *name) {
897 int id(_UISharedImageNameGetIdentifier(name));
898 if (Debug_)
899 NSLog(@"WB:Debug: UIImageWithName(\"%@\", %d)", name, id);
900
901 if (id == -1)
902 return _UIImageAtPath(name, _UIKitBundle());
903 else {
904 NSNumber *key([NSNumber numberWithInt:id]);
905 UIImage *image = [UIImages_ objectForKey:key];
906 if (image != nil)
907 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
908 if (NSString *path = $pathForFile$inBundle$(name, _UIKitBundle(), true)) {
909 image = [[UIImage alloc] wb$initWithContentsOfFile:path];
910 if (image != nil)
911 [image autorelease];
912 }
913 if (image == nil)
914 image = _UISharedImageWithIdentifier(id);
915 [UIImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
916 return image;
917 }
918 }
919
920 static UIImage *$_UIImageWithNameInDomain(NSString *name, NSString *domain) {
921 NSString *key = [NSString stringWithFormat:@"D:%zu%@%@", [domain length], domain, name];
922 UIImage *image = [PathImages_ objectForKey:key];
923 if (image != nil)
924 return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
925 if (Debug_)
926 NSLog(@"WB:Debug: UIImageWithNameInDomain(\"%@\", \"%@\")", name, domain);
927 if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Domains/%@/%@", domain, name]])) {
928 image = [[UIImage alloc] wb$initWithContentsOfFile:path];
929 if (image != nil)
930 [image autorelease];
931 }
932 if (image == nil)
933 image = _UIImageWithNameInDomain(name, domain);
934 [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
935 return image;
936 }
937
938 #define AudioToolbox "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox"
939 #define UIKit "/System/Library/Frameworks/UIKit.framework/UIKit"
940
941 static bool (*_Z24GetFileNameForThisActionmPcRb)(unsigned long, char *, bool &);
942
943 static bool $_Z24GetFileNameForThisActionmPcRb(unsigned long a0, char *a1, bool &a2) {
944 bool value = _Z24GetFileNameForThisActionmPcRb(a0, a1, a2);
945 if (Debug_)
946 NSLog(@"WB:Debug:GetFileNameForThisAction(%u, %s, %u) = %u", a0, value ? a1 : NULL, a2, value);
947
948 if (value) {
949 NSString *path = [NSString stringWithUTF8String:a1];
950 if ([path hasPrefix:@"/System/Library/Audio/UISounds/"]) {
951 NSString *file = [path substringFromIndex:31];
952 NSLog(@"%@", file);
953 for (NSString *theme in themes_) {
954 NSString *path([NSString stringWithFormat:@"%@/UISounds/%@", theme, file]);
955 if ([Manager_ fileExistsAtPath:path]) {
956 strcpy(a1, [path UTF8String]);
957 continue;
958 }
959 }
960 }
961 }
962 return value;
963 }
964
965 static void ChangeWallpaper(
966 CFNotificationCenterRef center,
967 void *observer,
968 CFStringRef name,
969 const void *object,
970 CFDictionaryRef info
971 ) {
972 if (Debug_)
973 NSLog(@"WB:Debug:ChangeWallpaper!");
974
975 UIImage *image;
976 if (WallpaperFile_ != nil) {
977 image = [[UIImage alloc] wb$initWithContentsOfFile:WallpaperFile_];
978 if (image != nil)
979 image = [image autorelease];
980 } else image = nil;
981
982 if (WallpaperImage_ != nil)
983 [WallpaperImage_ setImage:image];
984 if (WallpaperPage_ != nil)
985 [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
986
987 }
988
989 #define Prefix_ "wb$"
990
991 void WBRename(bool instance, const char *name, SEL sel, IMP imp) {
992 if (Class _class = objc_getClass(name)) {
993 if (!instance)
994 _class = object_getClass(_class);
995 MSHookMessage(_class, sel, imp, Prefix_);
996 } else if (Debug_)
997 NSLog(@"WB:Warning: cannot find class [%s]", name);
998 }
999
1000 extern "C" void WBInitialize() {
1001 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
1002
1003 NSString *identifier([[NSBundle mainBundle] bundleIdentifier]);
1004
1005 NSLog(@"WB:Notice: WinterBoard");
1006
1007 struct nlist nl[8];
1008 memset(nl, 0, sizeof(nl));
1009
1010 nl[0].n_un.n_name = (char *) "__UIImageAtPath";
1011 nl[1].n_un.n_name = (char *) "__UIImageWithName";
1012 nl[2].n_un.n_name = (char *) "__UIImageWithNameInDomain";
1013 nl[3].n_un.n_name = (char *) "__UIKitBundle";
1014 nl[4].n_un.n_name = (char *) "__UISharedImageInitialize";
1015 nl[5].n_un.n_name = (char *) "__UISharedImageNameGetIdentifier";
1016 nl[6].n_un.n_name = (char *) "__UISharedImageWithIdentifier";
1017
1018 nlist(UIKit, nl);
1019
1020 _UIImageAtPath = (UIImage *(*)(NSString *, NSBundle *)) nl[0].n_value;
1021 _UIImageWithName = (UIImage *(*)(NSString *)) nl[1].n_value;
1022 _UIImageWithNameInDomain = (UIImage *(*)(NSString *, NSString *)) nl[2].n_value;
1023 _UIKitBundle = (NSBundle *(*)()) nl[3].n_value;
1024 _UISharedImageInitialize = (void (*)(bool)) nl[4].n_value;
1025 _UISharedImageNameGetIdentifier = (int (*)(NSString *)) nl[5].n_value;
1026 _UISharedImageWithIdentifier = (UIImage *(*)(int)) nl[6].n_value;
1027
1028 MSHookFunction(_UIImageWithName, &$_UIImageWithName, &_UIImageWithName);
1029 MSHookFunction(_UIImageWithNameInDomain, &$_UIImageWithNameInDomain, &_UIImageWithNameInDomain);
1030
1031 if (dlopen(AudioToolbox, RTLD_LAZY | RTLD_NOLOAD) != NULL) {
1032 struct nlist nl[2];
1033 memset(nl, 0, sizeof(nl));
1034 nl[0].n_un.n_name = (char *) "__Z24GetFileNameForThisActionmPcRb";
1035 nlist(AudioToolbox, nl);
1036 _Z24GetFileNameForThisActionmPcRb = (bool (*)(unsigned long, char *, bool &)) nl[0].n_value;
1037 MSHookFunction(_Z24GetFileNameForThisActionmPcRb, &$_Z24GetFileNameForThisActionmPcRb, &_Z24GetFileNameForThisActionmPcRb);
1038 }
1039
1040 WBRename(false, "UIImage", @selector(applicationImageNamed:), (IMP) &UIImage$applicationImageNamed$);
1041 WBRename(false, "UIImage", @selector(defaultDesktopImage), (IMP) &UIImage$defaultDesktopImage$);
1042 WBRename(false, "UIImage", @selector(imageAtPath:), (IMP) &UIImage$imageAtPath$);
1043 WBRename(false, "UIImage", @selector(imageNamed:), (IMP) &UIImage$imageNamed$);
1044 WBRename(false, "UIImage", @selector(imageNamed:inBundle:), (IMP) &UIImage$imageNamed$inBundle$);
1045
1046 //WBRename("UINavigationBar", @selector(initWithCoder:", (IMP) &UINavigationBar$initWithCoder$);
1047 //WBRename("UINavigationBarBackground", @selector(initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
1048
1049 WBRename(true, "NSBundle", @selector(localizedStringForKey:value:table:), (IMP) &NSBundle$localizedStringForKey$value$table$);
1050 WBRename(true, "NSBundle", @selector(pathForResource:ofType:), (IMP) &NSBundle$pathForResource$ofType$);
1051
1052 WBRename(true, "UIImage", @selector(initWithContentsOfFile:), (IMP) &$initWithContentsOfFile$);
1053 WBRename(true, "UIImage", @selector(initWithContentsOfFile:cache:), (IMP) &UIImage$initWithContentsOfFile$cache$);
1054 WBRename(true, "UINavigationBar", @selector(setBarStyle:), (IMP) &UINavigationBar$setBarStyle$);
1055 WBRename(true, "UIToolbar", @selector(setBarStyle:), (IMP) &UIToolbar$setBarStyle$);
1056
1057 _UISharedImageInitialize(false);
1058
1059 Manager_ = [[NSFileManager defaultManager] retain];
1060 UIImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
1061 PathImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
1062 Strings_ = [[NSMutableDictionary alloc] initWithCapacity:0];
1063
1064 themes_ = [[NSMutableArray alloc] initWithCapacity:8];
1065
1066 if (NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"/User/Library/Preferences/com.saurik.WinterBoard.plist"]]) {
1067 [settings autorelease];
1068
1069 if (NSNumber *debug = [settings objectForKey:@"Debug"])
1070 Debug_ = [debug boolValue];
1071
1072 NSArray *themes = [settings objectForKey:@"Themes"];
1073 if (themes == nil)
1074 if (NSString *theme = [settings objectForKey:@"Theme"])
1075 themes = [NSArray arrayWithObject:[NSDictionary dictionaryWithObjectsAndKeys:
1076 theme, @"Name",
1077 [NSNumber numberWithBool:true], @"Active",
1078 nil]];
1079 if (themes != nil)
1080 for (NSDictionary *theme in themes) {
1081 NSNumber *active = [theme objectForKey:@"Active"];
1082 if (![active boolValue])
1083 continue;
1084
1085 NSString *name = [theme objectForKey:@"Name"];
1086 if (name == nil)
1087 continue;
1088
1089 NSString *theme = nil;
1090
1091 #define testForTheme(format...) \
1092 if (theme == nil) { \
1093 NSString *path = [NSString stringWithFormat:format]; \
1094 if ([Manager_ fileExistsAtPath:path]) { \
1095 [themes_ addObject:path]; \
1096 continue; \
1097 } \
1098 }
1099
1100 testForTheme(@"/Library/Themes/%@.theme", name)
1101 testForTheme(@"/Library/Themes/%@", name)
1102 testForTheme(@"%@/Library/SummerBoard/Themes/%@", NSHomeDirectory(), name)
1103 }
1104 }
1105
1106 Info_ = [[NSMutableDictionary dictionaryWithCapacity:16] retain];
1107
1108 for (NSString *theme in themes_)
1109 if (NSDictionary *info = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Info.plist", theme]])
1110 for (NSString *key in [info allKeys])
1111 if ([Info_ objectForKey:key] == nil)
1112 [Info_ setObject:[info objectForKey:key] forKey:key];
1113
1114 if ([identifier isEqualToString:@"com.apple.MobileSMS"]) {
1115 Class mSMSMessageTranscriptController = objc_getClass("mSMSMessageTranscriptController");
1116 MSHookMessage(mSMSMessageTranscriptController, @selector(loadView), (IMP) &mSMSMessageTranscriptController$loadView, Prefix_);
1117 } else if ([identifier isEqualToString:@"com.apple.springboard"]) {
1118 CFNotificationCenterAddObserver(
1119 CFNotificationCenterGetDarwinNotifyCenter(),
1120 NULL, &ChangeWallpaper, (CFStringRef) @"com.saurik.winterboard.lockbackground", NULL, 0
1121 );
1122
1123 NSBundle *MediaPlayer = [NSBundle bundleWithPath:@"/System/Library/Frameworks/MediaPlayer.framework"];
1124 if (MediaPlayer != nil)
1125 [MediaPlayer load];
1126
1127 $MPVideoView = objc_getClass("MPVideoView");
1128
1129 WBRename(true, "WebCoreFrameBridge", @selector(renderedSizeOfNode:constrainedToWidth:), (IMP) &WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$);
1130
1131 WBRename(true, "SBApplication", @selector(pathForIcon), (IMP) &SBApplication$pathForIcon);
1132 WBRename(true, "SBApplicationIcon", @selector(icon), (IMP) &SBApplicationIcon$icon);
1133 WBRename(true, "SBBookmarkIcon", @selector(icon), (IMP) &SBBookmarkIcon$icon);
1134 WBRename(true, "SBButtonBar", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview);
1135 WBRename(true, "SBCalendarIconContentsView", @selector(drawRect:), (IMP) &SBCalendarIconContentsView$drawRect$);
1136 WBRename(true, "SBContentLayer", @selector(initWithSize:), (IMP) &SBContentLayer$initWithSize$);
1137 WBRename(true, "SBIconBadge", @selector(initWithBadge:), (IMP) &SBIconBadge$initWithBadge$);
1138 WBRename(true, "SBIconController", @selector(appendIconList:), (IMP) &SBIconController$appendIconList$);
1139 WBRename(true, "SBIconLabel", @selector(drawRect:), (IMP) &SBIconLabel$drawRect$);
1140 WBRename(true, "SBIconLabel", @selector(initWithSize:label:), (IMP) &SBIconLabel$initWithSize$label$);
1141 WBRename(true, "SBIconLabel", @selector(setInDock:), (IMP) &SBIconLabel$setInDock$);
1142 WBRename(true, "SBIconModel", @selector(cacheImageForIcon:), (IMP) &SBIconModel$cacheImageForIcon$);
1143 WBRename(true, "SBIconModel", @selector(getCachedImagedForIcon:), (IMP) &SBIconModel$getCachedImagedForIcon$);
1144
1145 WBRename(true, "SBSlidingAlertDisplay", @selector(updateDesktopImage:), (IMP) &SBSlidingAlertDisplay$updateDesktopImage$);
1146 WBRename(true, "SBStatusBarContentsView", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview);
1147 WBRename(true, "SBStatusBarContentsView", @selector(initWithStatusBar:mode:), (IMP) &SBStatusBarContentsView$initWithStatusBar$mode$);
1148 WBRename(true, "SBStatusBarController", @selector(setStatusBarMode:orientation:duration:fenceID:animation:), (IMP) &SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$);
1149 WBRename(true, "SBStatusBarOperatorNameView", @selector(operatorNameStyle), (IMP) &SBStatusBarOperatorNameView$operatorNameStyle);
1150 WBRename(true, "SBStatusBarOperatorNameView", @selector(setOperatorName:fullSize:), (IMP) &SBStatusBarOperatorNameView$setOperatorName$fullSize$);
1151 WBRename(true, "SBStatusBarTimeView", @selector(drawRect:), (IMP) &SBStatusBarTimeView$drawRect$);
1152
1153 English_ = [[NSDictionary alloc] initWithContentsOfFile:@"/System/Library/CoreServices/SpringBoard.app/English.lproj/LocalizedApplicationNames.strings"];
1154 if (English_ != nil)
1155 English_ = [English_ retain];
1156
1157 Cache_ = [[NSMutableDictionary alloc] initWithCapacity:64];
1158 }
1159
1160 Wallpapers_ = [[NSArray arrayWithObjects:@"Wallpaper.mp4", @"Wallpaper.png", @"Wallpaper.jpg", @"Wallpaper.html", nil] retain];
1161
1162 if ([Info_ objectForKey:@"UndockedIconLabels"] == nil)
1163 [Info_ setObject:[NSNumber numberWithBool:(
1164 $getTheme$(Wallpapers_) == nil ||
1165 [Info_ objectForKey:@"DockedIconLabelStyle"] != nil ||
1166 [Info_ objectForKey:@"UndockedIconLabelStyle"] != nil
1167 )] forKey:@"UndockedIconLabels"];
1168
1169 if (Debug_)
1170 NSLog(@"WB:Debug:Info = %@", [Info_ description]);
1171
1172 [pool release];
1173 }