]>
Commit | Line | Data |
---|---|---|
d5168fd6 JF |
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 | ||
889cb4f2 | 38 | #define _trace() NSLog(@"WB:_trace(%u)", __LINE__); |
ca13798d | 39 | #define _transient |
62b2dbad | 40 | |
e6f0817b | 41 | #import <CoreFoundation/CoreFoundation.h> |
d5168fd6 | 42 | #import <Foundation/Foundation.h> |
2435118f | 43 | #import <CoreGraphics/CoreGraphics.h> |
d5168fd6 | 44 | |
2acbe5b8 JF |
45 | #include <substrate.h> |
46 | ||
4668cd8e | 47 | #import <UIKit/UIKit.h> |
d5168fd6 JF |
48 | |
49 | #import <SpringBoard/SBApplication.h> | |
394d1eb5 | 50 | #import <SpringBoard/SBApplicationIcon.h> |
d5168fd6 | 51 | #import <SpringBoard/SBAppWindow.h> |
502d350e | 52 | #import <SpringBoard/SBBookmarkIcon.h> |
62b2dbad | 53 | #import <SpringBoard/SBButtonBar.h> |
e6f0817b | 54 | #import <SpringBoard/SBCalendarIconContentsView.h> |
d5168fd6 | 55 | #import <SpringBoard/SBContentLayer.h> |
95a5777b | 56 | #import <SpringBoard/SBIconController.h> |
889cb4f2 | 57 | #import <SpringBoard/SBIconLabel.h> |
502d350e | 58 | #import <SpringBoard/SBSlidingAlertDisplay.h> |
08454e3a | 59 | #import <SpringBoard/SBStatusBarContentsView.h> |
d5fb6e01 | 60 | #import <SpringBoard/SBStatusBarController.h> |
4668cd8e | 61 | #import <SpringBoard/SBStatusBarOperatorNameView.h> |
08454e3a | 62 | #import <SpringBoard/SBStatusBarTimeView.h> |
d5168fd6 JF |
63 | #import <SpringBoard/SBUIController.h> |
64 | ||
4668cd8e JF |
65 | #import <MobileSMS/mSMSMessageTranscriptController.h> |
66 | ||
d5fb6e01 JF |
67 | #import <MediaPlayer/MPVideoView.h> |
68 | #import <MediaPlayer/MPVideoView-PlaybackControl.h> | |
69 | ||
d5168fd6 JF |
70 | #import <CoreGraphics/CGGeometry.h> |
71 | ||
95a5777b JF |
72 | extern "C" void __clear_cache (char *beg, char *end); |
73 | ||
74 | Class $MPVideoView; | |
75 | ||
26c43b47 JF |
76 | @interface NSDictionary (WinterBoard) |
77 | - (UIColor *) colorForKey:(NSString *)key; | |
889cb4f2 | 78 | - (BOOL) boolForKey:(NSString *)key; |
26c43b47 JF |
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 | ||
889cb4f2 JF |
91 | - (BOOL) boolForKey:(NSString *)key { |
92 | if (NSString *value = [self objectForKey:key]) | |
93 | return [value boolValue]; | |
95a5777b | 94 | return false; |
889cb4f2 JF |
95 | } |
96 | ||
26c43b47 JF |
97 | @end |
98 | ||
f22a8989 | 99 | bool Debug_ = false; |
e6f0817b | 100 | bool Engineer_ = false; |
889cb4f2 | 101 | |
d5168fd6 | 102 | @protocol WinterBoard |
4668cd8e JF |
103 | - (void) wb$setOperatorName:(NSString *)name fullSize:(BOOL)full; |
104 | - (NSString *) wb$operatorNameStyle; | |
105 | - (void) wb$loadView; | |
2acbe5b8 JF |
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; | |
7ff778ee | 111 | - (void *) _node; |
2acbe5b8 JF |
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; | |
d5168fd6 JF |
142 | @end |
143 | ||
502d350e JF |
144 | static NSMutableDictionary *UIImages_; |
145 | static NSMutableDictionary *PathImages_; | |
4668cd8e JF |
146 | static NSMutableDictionary *Cache_; |
147 | static NSMutableDictionary *Strings_; | |
2435118f | 148 | |
502d350e JF |
149 | static NSFileManager *Manager_; |
150 | static NSDictionary *English_; | |
151 | static NSMutableDictionary *Info_; | |
152 | static NSMutableArray *themes_; | |
d5168fd6 | 153 | |
4668cd8e | 154 | static NSString *$getTheme$(NSArray *files, bool parent = false) { |
2acbe5b8 JF |
155 | if (Debug_) |
156 | NSLog(@"WB:Debug: %@", [files description]); | |
157 | ||
502d350e JF |
158 | for (NSString *theme in themes_) |
159 | for (NSString *file in files) { | |
160 | NSString *path([NSString stringWithFormat:@"%@/%@", theme, file]); | |
161 | if ([Manager_ fileExistsAtPath:path]) | |
4668cd8e | 162 | return parent ? theme : path; |
502d350e JF |
163 | } |
164 | ||
165 | return nil; | |
166 | } | |
167 | ||
168 | static NSString *$pathForIcon$(SBApplication<WinterBoard> *self) { | |
2acbe5b8 JF |
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]; | |
d5fb6e01 | 174 | |
2acbe5b8 JF |
175 | if (Debug_) |
176 | NSLog(@"WB:Debug: [SBApplication(%@:%@:%@:%@) pathForIcon]", identifier, folder, dname, didentifier); | |
62b2dbad | 177 | |
2acbe5b8 | 178 | NSMutableArray *names = [NSMutableArray arrayWithCapacity:8]; |
d5fb6e01 | 179 | |
2acbe5b8 JF |
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]]; | |
889cb4f2 | 184 | |
2acbe5b8 JF |
185 | #define testForIcon(Name) \ |
186 | if (NSString *name = Name) \ | |
187 | [names addObject:[NSString stringWithFormat:@"Icons/%@.png", name]]; | |
ca13798d | 188 | |
2acbe5b8 JF |
189 | testForIcon(identifier); |
190 | testForIcon(dname); | |
889cb4f2 | 191 | |
2acbe5b8 JF |
192 | if (didentifier != nil) { |
193 | testForIcon([English_ objectForKey:didentifier]); | |
889cb4f2 | 194 | |
2acbe5b8 JF |
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]]); | |
d5fb6e01 | 199 | } |
889cb4f2 | 200 | |
2acbe5b8 JF |
201 | if (NSString *path = $getTheme$(names)) |
202 | return path; | |
394d1eb5 JF |
203 | return nil; |
204 | } | |
205 | ||
4e0efa01 | 206 | static void SBIconModel$cacheImageForIcon$(SBIconModel<WinterBoard> *self, SEL sel, SBIcon *icon) { |
2acbe5b8 | 207 | [self wb$cacheImageForIcon:icon]; |
4e0efa01 | 208 | NSString *key([icon displayIdentifier]); |
2acbe5b8 JF |
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 | } | |
4e0efa01 JF |
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 | |
2acbe5b8 | 234 | return [self wb$getCachedImagedForIcon:icon]; |
4e0efa01 JF |
235 | } |
236 | ||
394d1eb5 | 237 | static UIImage *SBApplicationIcon$icon(SBApplicationIcon<WinterBoard> *self, SEL sel) { |
d5fb6e01 | 238 | if (![Info_ boolForKey:@"ComposeStoreIcons"]) |
56539693 | 239 | if (NSString *path = $pathForIcon$([self application])) |
2acbe5b8 JF |
240 | return [UIImage imageWithContentsOfFile:path]; |
241 | return [self wb$icon]; | |
394d1eb5 JF |
242 | } |
243 | ||
502d350e JF |
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]]])) | |
2acbe5b8 JF |
248 | return [UIImage imageWithContentsOfFile:path]; |
249 | return [self wb$icon]; | |
502d350e JF |
250 | } |
251 | ||
394d1eb5 | 252 | static NSString *SBApplication$pathForIcon(SBApplication<WinterBoard> *self, SEL sel) { |
d5fb6e01 JF |
253 | if (NSString *path = $pathForIcon$(self)) |
254 | return path; | |
2acbe5b8 | 255 | return [self wb$pathForIcon]; |
d5168fd6 JF |
256 | } |
257 | ||
502d350e | 258 | static NSString *$pathForFile$inBundle$(NSString *file, NSBundle<WinterBoard> *bundle, bool ui) { |
2acbe5b8 JF |
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) | |
7dd9f26e | 267 | [names addObject:[NSString stringWithFormat:@"UIImages/%@", file]]; |
2acbe5b8 JF |
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; | |
889cb4f2 JF |
283 | return nil; |
284 | } | |
285 | ||
95a5777b JF |
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; | |
2acbe5b8 | 290 | image = [[UIImage alloc] wb$initWithContentsOfFile:path cache:true]; |
95a5777b JF |
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 | ||
394d1eb5 | 297 | static UIImage *UIImage$imageNamed$inBundle$(Class<WinterBoard> self, SEL sel, NSString *name, NSBundle *bundle) { |
e6f0817b | 298 | NSString *key = [NSString stringWithFormat:@"B:%@/%@", [bundle bundleIdentifier], name]; |
95a5777b JF |
299 | UIImage *image = [PathImages_ objectForKey:key]; |
300 | if (image != nil) | |
301 | return reinterpret_cast<id>(image) == [NSNull null] ? nil : image; | |
889cb4f2 JF |
302 | if (Debug_) |
303 | NSLog(@"WB:Debug: [UIImage(%@) imageNamed:\"%@\"]", [bundle bundleIdentifier], name); | |
95a5777b JF |
304 | if (NSString *path = $pathForFile$inBundle$(name, bundle, false)) |
305 | image = CachedImageAtPath(path); | |
306 | if (image == nil) | |
2acbe5b8 | 307 | image = [self wb$imageNamed:name inBundle:bundle]; |
95a5777b JF |
308 | [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key]; |
309 | return image; | |
889cb4f2 JF |
310 | } |
311 | ||
394d1eb5 | 312 | static UIImage *UIImage$imageNamed$(Class<WinterBoard> self, SEL sel, NSString *name) { |
889cb4f2 JF |
313 | return UIImage$imageNamed$inBundle$(self, sel, name, [NSBundle mainBundle]); |
314 | } | |
315 | ||
d5fb6e01 JF |
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); | |
95a5777b JF |
320 | if (NSString *path = $pathForFile$inBundle$(name, bundle, false)) |
321 | return CachedImageAtPath(path); | |
2acbe5b8 | 322 | return [self wb$applicationImageNamed:name]; |
d5fb6e01 JF |
323 | } |
324 | ||
502d350e | 325 | @interface NSString (WinterBoard) |
2acbe5b8 | 326 | - (NSString *) wb$themedPath; |
502d350e JF |
327 | @end |
328 | ||
329 | @implementation NSString (WinterBoard) | |
330 | ||
2acbe5b8 | 331 | - (NSString *) wb$themedPath { |
e6f0817b JF |
332 | if (Debug_) |
333 | NSLog(@"WB:Debug:Bypass(\"%@\")", self); | |
2acbe5b8 JF |
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 | ||
502d350e JF |
345 | return self; |
346 | } | |
347 | ||
348 | @end | |
349 | ||
502d350e JF |
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 | ||
394d1eb5 | 368 | static NSString *NSBundle$pathForResource$ofType$(NSBundle<WinterBoard> *self, SEL sel, NSString *resource, NSString *type) { |
889cb4f2 JF |
369 | NSString *file = type == nil ? resource : [NSString stringWithFormat:@"%@.%@", resource, type]; |
370 | if (Debug_) | |
371 | NSLog(@"WB:Debug: [NSBundle(%@) pathForResource:\"%@\"]", [self bundleIdentifier], file); | |
95a5777b | 372 | if (NSString *path = $pathForFile$inBundle$(file, self, false)) |
ca13798d | 373 | return path; |
2acbe5b8 | 374 | return [self wb$pathForResource:resource ofType:type]; |
d5168fd6 JF |
375 | } |
376 | ||
502d350e | 377 | static bool $setBarStyle$_(NSString *name, UIView<WinterBoard> *self, int style) { |
95a5777b JF |
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); | |
2acbe5b8 | 391 | [self wb$setBarStyle:style]; |
d5fb6e01 | 392 | return true; |
26c43b47 | 393 | } |
26c43b47 JF |
394 | } |
395 | ||
e6f0817b | 396 | static void SBCalendarIconContentsView$drawRect$(SBCalendarIconContentsView<WinterBoard> *self, SEL sel, CGRect rect) { |
4668cd8e JF |
397 | NSBundle *bundle([NSBundle mainBundle]); |
398 | ||
e6f0817b JF |
399 | CFLocaleRef locale(CFLocaleCopyCurrent()); |
400 | CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, locale, kCFDateFormatterNoStyle, kCFDateFormatterNoStyle)); | |
401 | CFRelease(locale); | |
402 | ||
403 | CFDateRef now(CFDateCreate(NULL, CFAbsoluteTimeGetCurrent())); | |
404 | ||
4668cd8e | 405 | CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NUMBER_FORMAT" value:@"" table:@"SpringBoard"]); |
e6f0817b | 406 | CFStringRef date(CFDateFormatterCreateStringWithDate(NULL, formatter, now)); |
4668cd8e | 407 | CFDateFormatterSetFormat(formatter, (CFStringRef) [bundle localizedStringForKey:@"CALENDAR_ICON_DAY_NAME_FORMAT" value:@"" table:@"SpringBoard"]); |
e6f0817b JF |
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 | ||
cf31d246 | 435 | float width([self bounds].size.width); |
4668cd8e JF |
436 | float leeway(10); |
437 | CGSize datesize = [(NSString *)date sizeWithStyle:datestyle forWidth:(width + leeway)]; | |
438 | CGSize daysize = [(NSString *)day sizeWithStyle:daystyle forWidth:(width + leeway)]; | |
e6f0817b JF |
439 | |
440 | [(NSString *)date drawAtPoint:CGPointMake( | |
4668cd8e | 441 | (width + 1 - datesize.width) / 2, (71 - datesize.height) / 2 |
e6f0817b JF |
442 | ) withStyle:datestyle]; |
443 | ||
444 | [(NSString *)day drawAtPoint:CGPointMake( | |
4668cd8e | 445 | (width + 1 - daysize.width) / 2, (16 - daysize.height) / 2 |
e6f0817b JF |
446 | ) withStyle:daystyle]; |
447 | ||
448 | CFRelease(date); | |
449 | CFRelease(day); | |
450 | } | |
451 | ||
502d350e | 452 | /*static id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) { |
26c43b47 JF |
453 | _trace(); |
454 | ||
d5fb6e01 JF |
455 | if (NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"]) |
456 | style = [number intValue]; | |
26c43b47 | 457 | |
d5fb6e01 JF |
458 | if (UIColor *color = [Info_ colorForKey:@"NavigationBarTint"]) |
459 | tint = color; | |
26c43b47 | 460 | |
2acbe5b8 | 461 | return [self wb$initWithFrame:frame withBarStyle:style withTintColor:tint]; |
26c43b47 JF |
462 | }*/ |
463 | ||
502d350e | 464 | /*static id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) { |
2acbe5b8 | 465 | self = [self wb$initWithCoder:coder]; |
26c43b47 JF |
466 | if (self == nil) |
467 | return nil; | |
468 | UINavigationBar$setBarStyle$_(self); | |
469 | return self; | |
470 | } | |
471 | ||
502d350e | 472 | static id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) { |
2acbe5b8 | 473 | self = [self wb$initWithFrame:frame]; |
26c43b47 JF |
474 | if (self == nil) |
475 | return nil; | |
476 | UINavigationBar$setBarStyle$_(self); | |
477 | return self; | |
478 | }*/ | |
479 | ||
95a5777b JF |
480 | static void UIToolbar$setBarStyle$(UIToolbar<WinterBoard> *self, SEL sel, int style) { |
481 | if ($setBarStyle$_(@"Toolbar", self, style)) | |
482 | return; | |
2acbe5b8 | 483 | return [self wb$setBarStyle:style]; |
95a5777b JF |
484 | } |
485 | ||
486 | static void UINavigationBar$setBarStyle$(UINavigationBar<WinterBoard> *self, SEL sel, int style) { | |
487 | if ($setBarStyle$_(@"NavigationBar", self, style)) | |
26c43b47 | 488 | return; |
2acbe5b8 | 489 | return [self wb$setBarStyle:style]; |
26c43b47 JF |
490 | } |
491 | ||
394d1eb5 | 492 | static void $didMoveToSuperview(SBButtonBar<WinterBoard> *self, SEL sel) { |
2acbe5b8 JF |
493 | [[self superview] setBackgroundColor:[UIColor clearColor]]; |
494 | [self wb$didMoveToSuperview]; | |
08454e3a | 495 | } |
62b2dbad | 496 | |
502d350e | 497 | static id UIImage$imageAtPath$(NSObject<WinterBoard> *self, SEL sel, NSString *path) { |
2acbe5b8 | 498 | return [self wb$imageAtPath:[path wb$themedPath]]; |
502d350e | 499 | } |
d5fb6e01 | 500 | |
502d350e | 501 | static id $initWithContentsOfFile$(NSObject<WinterBoard> *self, SEL sel, NSString *file) { |
2acbe5b8 | 502 | return [self wb$initWithContentsOfFile:[file wb$themedPath]]; |
394d1eb5 JF |
503 | } |
504 | ||
502d350e | 505 | static id UIImage$initWithContentsOfFile$cache$(UIImage<WinterBoard> *self, SEL sel, NSString *file, BOOL cache) { |
2acbe5b8 | 506 | return [self wb$initWithContentsOfFile:[file wb$themedPath] cache:cache]; |
502d350e JF |
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])) | |
2acbe5b8 JF |
513 | return [UIImage imageWithContentsOfFile:path]; |
514 | return [self wb$defaultDesktopImage]; | |
502d350e JF |
515 | } |
516 | ||
4668cd8e JF |
517 | static NSArray *Wallpapers_; |
518 | static NSString *WallpaperFile_; | |
502d350e JF |
519 | static UIImageView *WallpaperImage_; |
520 | static UIWebDocumentView *WallpaperPage_; | |
521 | static NSURL *WallpaperURL_; | |
95a5777b | 522 | |
4668cd8e JF |
523 | #define _release(object) \ |
524 | do if (object != nil) { \ | |
525 | [object release]; \ | |
526 | object = nil; \ | |
527 | } while (false) | |
528 | ||
394d1eb5 | 529 | static id SBContentLayer$initWithSize$(SBContentLayer<WinterBoard> *self, SEL sel, CGSize size) { |
2acbe5b8 | 530 | self = [self wb$initWithSize:size]; |
d5168fd6 JF |
531 | if (self == nil) |
532 | return nil; | |
533 | ||
4668cd8e JF |
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 | } | |
d5fb6e01 | 549 | |
4668cd8e JF |
550 | NSString *png = [theme stringByAppendingPathComponent:@"Wallpaper.png"]; |
551 | NSString *jpg = [theme stringByAppendingPathComponent:@"Wallpaper.jpg"]; | |
95a5777b | 552 | |
4668cd8e JF |
553 | NSString *path; |
554 | if ([Manager_ fileExistsAtPath:png]) | |
555 | path = png; | |
556 | else if ([Manager_ fileExistsAtPath:jpg]) | |
557 | path = jpg; | |
558 | else path = nil; | |
d5fb6e01 | 559 | |
4668cd8e JF |
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; | |
394d1eb5 | 566 | |
4668cd8e JF |
567 | if (image != nil) { |
568 | WallpaperFile_ = [path retain]; | |
569 | WallpaperImage_ = [[UIImageView alloc] initWithImage:image]; | |
570 | [self addSubview:WallpaperImage_]; | |
571 | } | |
394d1eb5 | 572 | |
4668cd8e JF |
573 | NSString *html = [theme stringByAppendingPathComponent:@"Wallpaper.html"]; |
574 | if ([Manager_ fileExistsAtPath:html]) { | |
575 | CGRect bounds = [self bounds]; | |
502d350e | 576 | |
4668cd8e JF |
577 | UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]); |
578 | [view setAutoresizes:true]; | |
502d350e | 579 | |
4668cd8e JF |
580 | WallpaperPage_ = [view retain]; |
581 | WallpaperURL_ = [[NSURL fileURLWithPath:html] retain]; | |
394d1eb5 | 582 | |
4668cd8e JF |
583 | [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]]; |
584 | ||
585 | [[view webView] setDrawsBackground:false]; | |
586 | [view setBackgroundColor:[UIColor clearColor]]; | |
394d1eb5 | 587 | |
4668cd8e JF |
588 | [self addSubview:view]; |
589 | } | |
08454e3a | 590 | } |
d5168fd6 JF |
591 | |
592 | return self; | |
593 | } | |
594 | ||
502d350e JF |
595 | static void SBSlidingAlertDisplay$updateDesktopImage$(SBSlidingAlertDisplay<WinterBoard> *self, SEL sel, UIImage *image) { |
596 | NSString *path = $getTheme$([NSArray arrayWithObject:@"LockBackground.html"]); | |
2acbe5b8 | 597 | UIView *&_backgroundView(MSHookIvar<UIView *>(self, "_backgroundView")); |
502d350e | 598 | |
2acbe5b8 JF |
599 | if (path != nil && _backgroundView != nil) |
600 | path = nil; | |
502d350e | 601 | |
2acbe5b8 | 602 | [self wb$updateDesktopImage:image]; |
502d350e JF |
603 | |
604 | if (path != nil) { | |
605 | CGRect bounds = [self bounds]; | |
606 | ||
2acbe5b8 | 607 | UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]); |
502d350e JF |
608 | [view setAutoresizes:true]; |
609 | ||
610 | if (WallpaperPage_ != nil) | |
611 | [WallpaperPage_ release]; | |
612 | WallpaperPage_ = [view retain]; | |
613 | ||
614 | if (WallpaperURL_ != nil) | |
615 | [WallpaperURL_ release]; | |
616 | WallpaperURL_ = [[NSURL fileURLWithPath:path] retain]; | |
617 | ||
618 | [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]]; | |
619 | ||
620 | [[view webView] setDrawsBackground:false]; | |
2acbe5b8 | 621 | [view setBackgroundColor:[UIColor clearColor]]; |
502d350e | 622 | |
2acbe5b8 | 623 | [self insertSubview:view aboveSubview:_backgroundView]; |
ca13798d | 624 | } |
502d350e | 625 | } |
ca13798d | 626 | |
95a5777b | 627 | /*extern "C" CGColorRef CGGStateGetSystemColor(void *); |
ca13798d JF |
628 | extern "C" CGColorRef CGGStateGetFillColor(void *); |
629 | extern "C" CGColorRef CGGStateGetStrokeColor(void *); | |
95a5777b | 630 | extern "C" NSString *UIStyleStringFromColor(CGColorRef);*/ |
ca13798d | 631 | |
cd6ad593 JF |
632 | /* WBTimeLabel {{{ */ |
633 | @interface WBTimeLabel : NSProxy { | |
ca13798d JF |
634 | NSString *time_; |
635 | _transient SBStatusBarTimeView *view_; | |
889cb4f2 JF |
636 | } |
637 | ||
ca13798d | 638 | - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view; |
889cb4f2 JF |
639 | |
640 | @end | |
641 | ||
cd6ad593 | 642 | @implementation WBTimeLabel |
889cb4f2 JF |
643 | |
644 | - (void) dealloc { | |
ca13798d | 645 | [time_ release]; |
889cb4f2 JF |
646 | [super dealloc]; |
647 | } | |
648 | ||
ca13798d JF |
649 | - (id) initWithTime:(NSString *)time view:(SBStatusBarTimeView *)view { |
650 | time_ = [time retain]; | |
651 | view_ = view; | |
889cb4f2 JF |
652 | return self; |
653 | } | |
654 | ||
ca13798d JF |
655 | WBDelegate(time_) |
656 | ||
657 | - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode { | |
d5fb6e01 | 658 | if (NSString *custom = [Info_ objectForKey:@"TimeStyle"]) { |
2acbe5b8 | 659 | BOOL &_mode(MSHookIvar<BOOL>(view_, "_mode"));; |
d5fb6e01 JF |
660 | |
661 | [time_ drawAtPoint:point withStyle:[NSString stringWithFormat:@"" | |
662 | "font-family: Helvetica; " | |
663 | "font-weight: bold; " | |
664 | "font-size: 14px; " | |
665 | "color: %@; " | |
2acbe5b8 | 666 | "%@", _mode ? @"white" : @"black", custom]]; |
d5fb6e01 JF |
667 | |
668 | return CGSizeZero; | |
669 | } | |
ca13798d JF |
670 | |
671 | return [time_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode]; | |
889cb4f2 JF |
672 | } |
673 | ||
cd6ad593 JF |
674 | @end |
675 | /* }}} */ | |
676 | /* WBBadgeLabel {{{ */ | |
677 | @interface WBBadgeLabel : NSProxy { | |
678 | NSString *badge_; | |
679 | } | |
680 | ||
681 | - (id) initWithBadge:(NSString *)badge; | |
682 | ||
ca13798d JF |
683 | @end |
684 | ||
cd6ad593 JF |
685 | @implementation WBBadgeLabel |
686 | ||
687 | - (void) dealloc { | |
688 | [badge_ release]; | |
689 | [super dealloc]; | |
889cb4f2 JF |
690 | } |
691 | ||
cd6ad593 JF |
692 | - (id) initWithBadge:(NSString *)badge { |
693 | badge_ = [badge retain]; | |
694 | return self; | |
695 | } | |
696 | ||
697 | WBDelegate(badge_) | |
698 | ||
699 | - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode { | |
700 | if (NSString *custom = [Info_ objectForKey:@"BadgeStyle"]) { | |
701 | [badge_ drawAtPoint:point withStyle:[NSString stringWithFormat:@"" | |
702 | "font-family: Helvetica; " | |
703 | "font-weight: bold; " | |
704 | "font-size: 17px; " | |
705 | "color: white; " | |
706 | "%@", custom]]; | |
707 | ||
708 | return CGSizeZero; | |
709 | } | |
710 | ||
711 | return [badge_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode]; | |
712 | } | |
ca13798d JF |
713 | |
714 | @end | |
cd6ad593 JF |
715 | /* }}} */ |
716 | ||
717 | static id SBIconBadge$initWithBadge$(SBIconBadge<WinterBoard> *self, SEL sel, NSString *badge) { | |
2acbe5b8 JF |
718 | if ((self = [self wb$initWithBadge:badge]) != nil) { |
719 | id &_badge(MSHookIvar<id>(self, "_badge")); | |
720 | if (_badge != nil) | |
721 | if (id label = [[WBBadgeLabel alloc] initWithBadge:[_badge autorelease]]) | |
722 | _badge = label; | |
cd6ad593 JF |
723 | } return self; |
724 | } | |
ca13798d | 725 | |
d5fb6e01 | 726 | static void SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$(SBStatusBarController<WinterBoard> *self, SEL sel, int mode, int orientation, float duration, int id, int animation) { |
95a5777b JF |
727 | if (Debug_) |
728 | NSLog(@"WB:Debug:setStatusBarMode:%d", mode); | |
502d350e | 729 | if (mode < 100) // 104:hidden 105:glowing |
95a5777b JF |
730 | if (NSNumber *number = [Info_ objectForKey:@"StatusBarMode"]) |
731 | mode = [number intValue]; | |
2acbe5b8 | 732 | return [self wb$setStatusBarMode:mode orientation:orientation duration:duration fenceID:id animation:animation]; |
d5fb6e01 JF |
733 | } |
734 | ||
d5fb6e01 JF |
735 | static id SBStatusBarContentsView$initWithStatusBar$mode$(SBStatusBarContentsView<WinterBoard> *self, SEL sel, id bar, int mode) { |
736 | if (NSNumber *number = [Info_ objectForKey:@"StatusBarContentsMode"]) | |
737 | mode = [number intValue]; | |
2acbe5b8 | 738 | return [self wb$initWithStatusBar:bar mode:mode]; |
d5fb6e01 JF |
739 | } |
740 | ||
4668cd8e JF |
741 | static NSString *SBStatusBarOperatorNameView$operatorNameStyle(SBStatusBarOperatorNameView<WinterBoard> *self, SEL sel, NSString *name, BOOL full) { |
742 | NSString *style([self wb$operatorNameStyle]); | |
743 | if (Debug_) | |
744 | NSLog(@"operatorNameStyle= %@", style); | |
745 | if (NSString *custom = [Info_ objectForKey:@"OperatorNameStyle"]) | |
746 | style = [NSString stringWithFormat:@"%@; %@", style, custom]; | |
747 | return style; | |
748 | } | |
749 | ||
750 | static void SBStatusBarOperatorNameView$setOperatorName$fullSize$(SBStatusBarOperatorNameView<WinterBoard> *self, SEL sel, NSString *name, BOOL full) { | |
751 | if (Debug_) | |
752 | NSLog(@"setOperatorName:\"%@\" fullSize:%u", name, full); | |
753 | [self wb$setOperatorName:name fullSize:NO]; | |
754 | } | |
755 | ||
394d1eb5 | 756 | static void SBStatusBarTimeView$drawRect$(SBStatusBarTimeView<WinterBoard> *self, SEL sel, CGRect rect) { |
2acbe5b8 JF |
757 | id &_time(MSHookIvar<id>(self, "_time")); |
758 | if (_time != nil && [_time class] != [WBTimeLabel class]) | |
759 | object_setInstanceVariable(self, "_time", reinterpret_cast<void *>([[WBTimeLabel alloc] initWithTime:[_time autorelease] view:self])); | |
760 | return [self wb$drawRect:rect]; | |
ca13798d JF |
761 | } |
762 | ||
95a5777b JF |
763 | static void SBIconController$appendIconList$(SBIconController<WinterBoard> *self, SEL sel, SBIconList *list) { |
764 | if (Debug_) | |
765 | NSLog(@"appendIconList:%@", list); | |
2acbe5b8 | 766 | return [self wb$appendIconList:list]; |
95a5777b JF |
767 | } |
768 | ||
cf31d246 | 769 | static id SBIconLabel$initWithSize$label$(SBIconLabel<WinterBoard> *self, SEL sel, CGSize size, NSString *label) { |
2acbe5b8 | 770 | self = [self wb$initWithSize:size label:label]; |
cf31d246 JF |
771 | if (self != nil) |
772 | [self setClipsToBounds:NO]; | |
773 | return self; | |
774 | } | |
775 | ||
394d1eb5 | 776 | static void SBIconLabel$setInDock$(SBIconLabel<WinterBoard> *self, SEL sel, BOOL docked) { |
2acbe5b8 | 777 | id &_label(MSHookIvar<id>(self, "_label")); |
d5fb6e01 | 778 | if (![Info_ boolForKey:@"UndockedIconLabels"]) |
95a5777b | 779 | docked = true; |
2acbe5b8 JF |
780 | if (_label != nil && [_label respondsToSelector:@selector(setInDock:)]) |
781 | [_label setInDock:docked]; | |
782 | return [self wb$setInDock:docked]; | |
889cb4f2 JF |
783 | } |
784 | ||
4fa950df JF |
785 | static NSString *NSBundle$localizedStringForKey$value$table$(NSBundle<WinterBoard> *self, SEL sel, NSString *key, NSString *value, NSString *table) { |
786 | NSString *identifier = [self bundleIdentifier]; | |
787 | NSLocale *locale = [NSLocale currentLocale]; | |
788 | NSString *language = [locale objectForKey:NSLocaleLanguageCode]; | |
2acbe5b8 | 789 | if (Debug_) |
4fa950df JF |
790 | NSLog(@"WB:Debug:[NSBundle(%@) localizedStringForKey:\"%@\" value:\"%@\" table:\"%@\"] (%@)", identifier, key, value, table, language); |
791 | NSString *file = table == nil ? @"Localizable" : table; | |
792 | NSString *name = [NSString stringWithFormat:@"%@:%@", identifier, file]; | |
793 | NSDictionary *strings; | |
794 | if ((strings = [Strings_ objectForKey:name]) != nil) { | |
795 | if (static_cast<id>(strings) != [NSNull null]) strings: | |
796 | if (NSString *value = [strings objectForKey:key]) | |
797 | return value; | |
798 | } else if (NSString *path = $pathForFile$inBundle$([NSString stringWithFormat:@"%@.lproj/%@.strings", | |
799 | language, file | |
800 | ], self, false)) { | |
801 | if ((strings = [[NSDictionary alloc] initWithContentsOfFile:path]) != nil) { | |
802 | [Strings_ setObject:[strings autorelease] forKey:name]; | |
803 | goto strings; | |
804 | } else goto null; | |
805 | } else null: | |
806 | [Strings_ setObject:[NSNull null] forKey:name]; | |
2acbe5b8 | 807 | return [self wb$localizedStringForKey:key value:value table:table]; |
4fa950df JF |
808 | } |
809 | ||
7ff778ee JF |
810 | @class WebCoreFrameBridge; |
811 | static CGSize WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$(WebCoreFrameBridge<WinterBoard> *self, SEL sel, id node, float width) { | |
812 | if (node == nil) | |
813 | return CGSizeZero; | |
814 | void **core(reinterpret_cast<void **>([node _node])); | |
815 | if (core == NULL || core[6] == NULL) | |
816 | return CGSizeZero; | |
2acbe5b8 | 817 | return [self wb$renderedSizeOfNode:node constrainedToWidth:width]; |
7ff778ee JF |
818 | } |
819 | ||
cf31d246 JF |
820 | static void SBIconLabel$drawRect$(SBIconLabel<WinterBoard> *self, SEL sel, CGRect rect) { |
821 | CGRect bounds = [self bounds]; | |
e6f0817b | 822 | |
a3fa54a5 JF |
823 | static Ivar drawMoreLegibly = object_getInstanceVariable(self, "_drawMoreLegibly", NULL); |
824 | ||
cf31d246 | 825 | BOOL docked; |
a3fa54a5 JF |
826 | Ivar ivar = object_getInstanceVariable(self, "_inDock", reinterpret_cast<void **>(&docked)); |
827 | docked = (docked & (ivar_getOffset(ivar) == ivar_getOffset(drawMoreLegibly) ? 0x2 : 0x1)) != 0; | |
cf31d246 | 828 | |
2acbe5b8 | 829 | NSString *&label(MSHookIvar<NSString *>(self, "_label")); |
cf31d246 JF |
830 | |
831 | NSString *style = [NSString stringWithFormat:@"" | |
832 | "font-family: Helvetica; " | |
833 | "font-weight: bold; " | |
834 | "font-size: 11px; " | |
835 | "color: %@; " | |
836 | "", docked ? @"white" : @"#b3b3b3"]; | |
837 | ||
838 | if (docked) | |
839 | style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; "]; | |
840 | float max = 75, width = [label sizeWithStyle:style forWidth:320].width; | |
841 | if (width > max) | |
842 | style = [style stringByAppendingString:[NSString stringWithFormat:@"letter-spacing: -%f; ", ((width - max) / ([label length] - 1))]]; | |
843 | if (NSString *custom = [Info_ objectForKey:(docked ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle")]) | |
844 | style = [style stringByAppendingString:custom]; | |
845 | ||
846 | CGSize size = [label sizeWithStyle:style forWidth:bounds.size.width]; | |
847 | [label drawAtPoint:CGPointMake((bounds.size.width - size.width) / 2, 0) withStyle:style]; | |
889cb4f2 JF |
848 | } |
849 | ||
4668cd8e JF |
850 | void mSMSMessageTranscriptController$loadView(mSMSMessageTranscriptController<WinterBoard> *self, SEL sel) { |
851 | [self wb$loadView]; | |
852 | if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"SMSBackground.png", @"SMSBackground.jpg", nil])) | |
853 | if (UIImage *image = [[UIImage alloc] wb$initWithContentsOfFile:path]) { | |
854 | [image autorelease]; | |
855 | UIView *&_transcriptLayer(MSHookIvar<UIView *>(self, "_transcriptLayer")); | |
856 | UIView *parent([_transcriptLayer superview]); | |
857 | UIImageView *background([[[UIImageView alloc] initWithImage:image] autorelease]); | |
858 | [parent insertSubview:background belowSubview:_transcriptLayer]; | |
859 | [_transcriptLayer setBackgroundColor:[UIColor clearColor]]; | |
860 | } | |
861 | } | |
862 | ||
2435118f JF |
863 | extern "C" void FindMappedImages(void); |
864 | extern "C" NSData *UIImagePNGRepresentation(UIImage *); | |
865 | ||
2acbe5b8 JF |
866 | //static CGImageRef *(*_UIImageRefAtPath)(NSString *path, bool cache, UIImageOrientation *orientation); |
867 | //_UIImageRefAtPath = (CGImageRef *(*)(NSString *, bool, UIImageOrientation *)) nl[3].n_value; | |
868 | ||
95a5777b | 869 | static UIImage *(*_UIImageAtPath)(NSString *name, NSBundle *path); |
95a5777b | 870 | static UIImage *(*_UIImageWithName)(NSString *name); |
e6f0817b | 871 | static UIImage *(*_UIImageWithNameInDomain)(NSString *name, NSString *domain); |
95a5777b JF |
872 | static NSBundle *(*_UIKitBundle)(); |
873 | static void (*_UISharedImageInitialize)(bool); | |
874 | static int (*_UISharedImageNameGetIdentifier)(NSString *); | |
875 | static UIImage *(*_UISharedImageWithIdentifier)(int); | |
876 | ||
877 | static UIImage *$_UIImageWithName(NSString *name) { | |
878 | int id(_UISharedImageNameGetIdentifier(name)); | |
879 | if (Debug_) | |
880 | NSLog(@"WB:Debug: UIImageWithName(\"%@\", %d)", name, id); | |
881 | ||
882 | if (id == -1) | |
883 | return _UIImageAtPath(name, _UIKitBundle()); | |
884 | else { | |
885 | NSNumber *key([NSNumber numberWithInt:id]); | |
886 | UIImage *image = [UIImages_ objectForKey:key]; | |
887 | if (image != nil) | |
888 | return reinterpret_cast<id>(image) == [NSNull null] ? nil : image; | |
889 | if (NSString *path = $pathForFile$inBundle$(name, _UIKitBundle(), true)) { | |
2acbe5b8 | 890 | image = [[UIImage alloc] wb$initWithContentsOfFile:path]; |
95a5777b JF |
891 | if (image != nil) |
892 | [image autorelease]; | |
893 | } | |
894 | if (image == nil) | |
895 | image = _UISharedImageWithIdentifier(id); | |
896 | [UIImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key]; | |
897 | return image; | |
898 | } | |
899 | } | |
900 | ||
e6f0817b JF |
901 | static UIImage *$_UIImageWithNameInDomain(NSString *name, NSString *domain) { |
902 | NSString *key = [NSString stringWithFormat:@"D:%zu%@%@", [domain length], domain, name]; | |
903 | UIImage *image = [PathImages_ objectForKey:key]; | |
904 | if (image != nil) | |
905 | return reinterpret_cast<id>(image) == [NSNull null] ? nil : image; | |
95a5777b | 906 | if (Debug_) |
e6f0817b JF |
907 | NSLog(@"WB:Debug: UIImageWithNameInDomain(\"%@\", \"%@\")", name, domain); |
908 | if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Domains/%@/%@", domain, name]])) { | |
2acbe5b8 | 909 | image = [[UIImage alloc] wb$initWithContentsOfFile:path]; |
e6f0817b JF |
910 | if (image != nil) |
911 | [image autorelease]; | |
95a5777b | 912 | } |
e6f0817b JF |
913 | if (image == nil) |
914 | image = _UIImageWithNameInDomain(name, domain); | |
915 | [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key]; | |
916 | return image; | |
95a5777b JF |
917 | } |
918 | ||
95a5777b JF |
919 | #define AudioToolbox "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox" |
920 | #define UIKit "/System/Library/Frameworks/UIKit.framework/UIKit" | |
921 | ||
95a5777b JF |
922 | static bool (*_Z24GetFileNameForThisActionmPcRb)(unsigned long, char *, bool &); |
923 | ||
924 | static bool $_Z24GetFileNameForThisActionmPcRb(unsigned long a0, char *a1, bool &a2) { | |
925 | bool value = _Z24GetFileNameForThisActionmPcRb(a0, a1, a2); | |
926 | if (Debug_) | |
927 | NSLog(@"WB:Debug:GetFileNameForThisAction(%u, %s, %u) = %u", a0, value ? a1 : NULL, a2, value); | |
928 | ||
929 | if (value) { | |
930 | NSString *path = [NSString stringWithUTF8String:a1]; | |
931 | if ([path hasPrefix:@"/System/Library/Audio/UISounds/"]) { | |
932 | NSString *file = [path substringFromIndex:31]; | |
933 | NSLog(@"%@", file); | |
934 | for (NSString *theme in themes_) { | |
935 | NSString *path([NSString stringWithFormat:@"%@/UISounds/%@", theme, file]); | |
936 | if ([Manager_ fileExistsAtPath:path]) { | |
937 | strcpy(a1, [path UTF8String]); | |
938 | continue; | |
939 | } | |
940 | } | |
941 | } | |
942 | } | |
943 | return value; | |
944 | } | |
945 | ||
946 | static void ChangeWallpaper( | |
947 | CFNotificationCenterRef center, | |
948 | void *observer, | |
949 | CFStringRef name, | |
950 | const void *object, | |
951 | CFDictionaryRef info | |
952 | ) { | |
953 | if (Debug_) | |
954 | NSLog(@"WB:Debug:ChangeWallpaper!"); | |
502d350e | 955 | |
95a5777b | 956 | UIImage *image; |
4668cd8e JF |
957 | if (WallpaperFile_ != nil) { |
958 | image = [[UIImage alloc] wb$initWithContentsOfFile:WallpaperFile_]; | |
95a5777b JF |
959 | if (image != nil) |
960 | image = [image autorelease]; | |
961 | } else image = nil; | |
502d350e JF |
962 | |
963 | if (WallpaperImage_ != nil) | |
964 | [WallpaperImage_ setImage:image]; | |
965 | if (WallpaperPage_ != nil) | |
966 | [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]]; | |
967 | ||
95a5777b | 968 | } |
394d1eb5 | 969 | |
4668cd8e JF |
970 | #define Prefix_ "wb$" |
971 | ||
e6f0817b | 972 | void WBRename(bool instance, const char *name, SEL sel, IMP imp) { |
4668cd8e JF |
973 | if (Class _class = objc_getClass(name)) { |
974 | if (!instance) | |
975 | _class = object_getClass(_class); | |
976 | MSHookMessage(_class, sel, imp, Prefix_); | |
977 | } else if (Debug_) | |
978 | NSLog(@"WB:Warning: cannot find class [%s]", name); | |
e6f0817b JF |
979 | } |
980 | ||
d5168fd6 | 981 | extern "C" void WBInitialize() { |
d5168fd6 JF |
982 | NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; |
983 | ||
2acbe5b8 | 984 | NSString *identifier([[NSBundle mainBundle] bundleIdentifier]); |
394d1eb5 | 985 | |
2acbe5b8 | 986 | NSLog(@"WB:Notice: WinterBoard"); |
95a5777b | 987 | |
2acbe5b8 | 988 | struct nlist nl[8]; |
95a5777b | 989 | memset(nl, 0, sizeof(nl)); |
394d1eb5 | 990 | |
2acbe5b8 JF |
991 | nl[0].n_un.n_name = (char *) "__UIImageAtPath"; |
992 | nl[1].n_un.n_name = (char *) "__UIImageWithName"; | |
993 | nl[2].n_un.n_name = (char *) "__UIImageWithNameInDomain"; | |
994 | nl[3].n_un.n_name = (char *) "__UIKitBundle"; | |
995 | nl[4].n_un.n_name = (char *) "__UISharedImageInitialize"; | |
996 | nl[5].n_un.n_name = (char *) "__UISharedImageNameGetIdentifier"; | |
997 | nl[6].n_un.n_name = (char *) "__UISharedImageWithIdentifier"; | |
95a5777b JF |
998 | |
999 | nlist(UIKit, nl); | |
1000 | ||
2acbe5b8 JF |
1001 | _UIImageAtPath = (UIImage *(*)(NSString *, NSBundle *)) nl[0].n_value; |
1002 | _UIImageWithName = (UIImage *(*)(NSString *)) nl[1].n_value; | |
1003 | _UIImageWithNameInDomain = (UIImage *(*)(NSString *, NSString *)) nl[2].n_value; | |
1004 | _UIKitBundle = (NSBundle *(*)()) nl[3].n_value; | |
1005 | _UISharedImageInitialize = (void (*)(bool)) nl[4].n_value; | |
1006 | _UISharedImageNameGetIdentifier = (int (*)(NSString *)) nl[5].n_value; | |
1007 | _UISharedImageWithIdentifier = (UIImage *(*)(int)) nl[6].n_value; | |
95a5777b | 1008 | |
e6f0817b JF |
1009 | MSHookFunction(_UIImageWithName, &$_UIImageWithName, &_UIImageWithName); |
1010 | MSHookFunction(_UIImageWithNameInDomain, &$_UIImageWithNameInDomain, &_UIImageWithNameInDomain); | |
95a5777b JF |
1011 | |
1012 | if (dlopen(AudioToolbox, RTLD_LAZY | RTLD_NOLOAD) != NULL) { | |
1013 | struct nlist nl[2]; | |
1014 | memset(nl, 0, sizeof(nl)); | |
1015 | nl[0].n_un.n_name = (char *) "__Z24GetFileNameForThisActionmPcRb"; | |
1016 | nlist(AudioToolbox, nl); | |
1017 | _Z24GetFileNameForThisActionmPcRb = (bool (*)(unsigned long, char *, bool &)) nl[0].n_value; | |
e6f0817b | 1018 | MSHookFunction(_Z24GetFileNameForThisActionmPcRb, &$_Z24GetFileNameForThisActionmPcRb, &_Z24GetFileNameForThisActionmPcRb); |
95a5777b | 1019 | } |
2435118f | 1020 | |
e6f0817b JF |
1021 | WBRename(false, "UIImage", @selector(applicationImageNamed:), (IMP) &UIImage$applicationImageNamed$); |
1022 | WBRename(false, "UIImage", @selector(defaultDesktopImage), (IMP) &UIImage$defaultDesktopImage$); | |
1023 | WBRename(false, "UIImage", @selector(imageAtPath:), (IMP) &UIImage$imageAtPath$); | |
1024 | WBRename(false, "UIImage", @selector(imageNamed:), (IMP) &UIImage$imageNamed$); | |
1025 | WBRename(false, "UIImage", @selector(imageNamed:inBundle:), (IMP) &UIImage$imageNamed$inBundle$); | |
1026 | ||
1027 | //WBRename("UINavigationBar", @selector(initWithCoder:", (IMP) &UINavigationBar$initWithCoder$); | |
1028 | //WBRename("UINavigationBarBackground", @selector(initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$); | |
e6f0817b | 1029 | |
4fa950df | 1030 | WBRename(true, "NSBundle", @selector(localizedStringForKey:value:table:), (IMP) &NSBundle$localizedStringForKey$value$table$); |
e6f0817b JF |
1031 | WBRename(true, "NSBundle", @selector(pathForResource:ofType:), (IMP) &NSBundle$pathForResource$ofType$); |
1032 | ||
1033 | WBRename(true, "UIImage", @selector(initWithContentsOfFile:), (IMP) &$initWithContentsOfFile$); | |
1034 | WBRename(true, "UIImage", @selector(initWithContentsOfFile:cache:), (IMP) &UIImage$initWithContentsOfFile$cache$); | |
1035 | WBRename(true, "UINavigationBar", @selector(setBarStyle:), (IMP) &UINavigationBar$setBarStyle$); | |
1036 | WBRename(true, "UIToolbar", @selector(setBarStyle:), (IMP) &UIToolbar$setBarStyle$); | |
1037 | ||
502d350e JF |
1038 | _UISharedImageInitialize(false); |
1039 | ||
502d350e JF |
1040 | Manager_ = [[NSFileManager defaultManager] retain]; |
1041 | UIImages_ = [[NSMutableDictionary alloc] initWithCapacity:16]; | |
1042 | PathImages_ = [[NSMutableDictionary alloc] initWithCapacity:16]; | |
4fa950df | 1043 | Strings_ = [[NSMutableDictionary alloc] initWithCapacity:0]; |
502d350e | 1044 | |
d5fb6e01 | 1045 | themes_ = [[NSMutableArray alloc] initWithCapacity:8]; |
26c43b47 | 1046 | |
d5fb6e01 | 1047 | if (NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"/User/Library/Preferences/com.saurik.WinterBoard.plist"]]) { |
62b2dbad | 1048 | [settings autorelease]; |
62b2dbad | 1049 | |
95a5777b JF |
1050 | if (NSNumber *debug = [settings objectForKey:@"Debug"]) |
1051 | Debug_ = [debug boolValue]; | |
1052 | ||
d5fb6e01 JF |
1053 | NSArray *themes = [settings objectForKey:@"Themes"]; |
1054 | if (themes == nil) | |
1055 | if (NSString *theme = [settings objectForKey:@"Theme"]) | |
1056 | themes = [NSArray arrayWithObject:[NSDictionary dictionaryWithObjectsAndKeys: | |
1057 | theme, @"Name", | |
95a5777b | 1058 | [NSNumber numberWithBool:true], @"Active", |
d5fb6e01 JF |
1059 | nil]]; |
1060 | if (themes != nil) | |
1061 | for (NSDictionary *theme in themes) { | |
1062 | NSNumber *active = [theme objectForKey:@"Active"]; | |
1063 | if (![active boolValue]) | |
1064 | continue; | |
26c43b47 | 1065 | |
d5fb6e01 JF |
1066 | NSString *name = [theme objectForKey:@"Name"]; |
1067 | if (name == nil) | |
1068 | continue; | |
1069 | ||
1070 | NSString *theme = nil; | |
1071 | ||
95a5777b JF |
1072 | #define testForTheme(format...) \ |
1073 | if (theme == nil) { \ | |
1074 | NSString *path = [NSString stringWithFormat:format]; \ | |
1075 | if ([Manager_ fileExistsAtPath:path]) { \ | |
1076 | [themes_ addObject:path]; \ | |
1077 | continue; \ | |
1078 | } \ | |
d5fb6e01 | 1079 | } |
d5fb6e01 | 1080 | |
95a5777b JF |
1081 | testForTheme(@"/Library/Themes/%@.theme", name) |
1082 | testForTheme(@"/Library/Themes/%@", name) | |
1083 | testForTheme(@"%@/Library/SummerBoard/Themes/%@", NSHomeDirectory(), name) | |
d5fb6e01 | 1084 | } |
26c43b47 JF |
1085 | } |
1086 | ||
d5fb6e01 JF |
1087 | Info_ = [[NSMutableDictionary dictionaryWithCapacity:16] retain]; |
1088 | ||
95a5777b | 1089 | for (NSString *theme in themes_) |
d5fb6e01 JF |
1090 | if (NSDictionary *info = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Info.plist", theme]]) |
1091 | for (NSString *key in [info allKeys]) | |
1092 | if ([Info_ objectForKey:key] == nil) | |
1093 | [Info_ setObject:[info objectForKey:key] forKey:key]; | |
95a5777b | 1094 | |
4668cd8e JF |
1095 | if ([identifier isEqualToString:@"com.apple.MobileSMS"]) { |
1096 | Class mSMSMessageTranscriptController = objc_getClass("mSMSMessageTranscriptController"); | |
1097 | MSHookMessage(mSMSMessageTranscriptController, @selector(loadView), (IMP) &mSMSMessageTranscriptController$loadView, Prefix_); | |
1098 | } else if ([identifier isEqualToString:@"com.apple.springboard"]) { | |
95a5777b JF |
1099 | CFNotificationCenterAddObserver( |
1100 | CFNotificationCenterGetDarwinNotifyCenter(), | |
1101 | NULL, &ChangeWallpaper, (CFStringRef) @"com.saurik.winterboard.lockbackground", NULL, 0 | |
1102 | ); | |
62b2dbad | 1103 | |
2acbe5b8 JF |
1104 | NSBundle *MediaPlayer = [NSBundle bundleWithPath:@"/System/Library/Frameworks/MediaPlayer.framework"]; |
1105 | if (MediaPlayer != nil) | |
1106 | [MediaPlayer load]; | |
1107 | ||
1108 | $MPVideoView = objc_getClass("MPVideoView"); | |
1109 | ||
1110 | WBRename(true, "WebCoreFrameBridge", @selector(renderedSizeOfNode:constrainedToWidth:), (IMP) &WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$); | |
1111 | ||
1112 | WBRename(true, "SBApplication", @selector(pathForIcon), (IMP) &SBApplication$pathForIcon); | |
1113 | WBRename(true, "SBApplicationIcon", @selector(icon), (IMP) &SBApplicationIcon$icon); | |
1114 | WBRename(true, "SBBookmarkIcon", @selector(icon), (IMP) &SBBookmarkIcon$icon); | |
1115 | WBRename(true, "SBButtonBar", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview); | |
1116 | WBRename(true, "SBCalendarIconContentsView", @selector(drawRect:), (IMP) &SBCalendarIconContentsView$drawRect$); | |
1117 | WBRename(true, "SBContentLayer", @selector(initWithSize:), (IMP) &SBContentLayer$initWithSize$); | |
1118 | WBRename(true, "SBIconBadge", @selector(initWithBadge:), (IMP) &SBIconBadge$initWithBadge$); | |
1119 | WBRename(true, "SBIconController", @selector(appendIconList:), (IMP) &SBIconController$appendIconList$); | |
1120 | WBRename(true, "SBIconLabel", @selector(drawRect:), (IMP) &SBIconLabel$drawRect$); | |
1121 | WBRename(true, "SBIconLabel", @selector(initWithSize:label:), (IMP) &SBIconLabel$initWithSize$label$); | |
1122 | WBRename(true, "SBIconLabel", @selector(setInDock:), (IMP) &SBIconLabel$setInDock$); | |
1123 | WBRename(true, "SBIconModel", @selector(cacheImageForIcon:), (IMP) &SBIconModel$cacheImageForIcon$); | |
1124 | WBRename(true, "SBIconModel", @selector(getCachedImagedForIcon:), (IMP) &SBIconModel$getCachedImagedForIcon$); | |
1125 | ||
1126 | WBRename(true, "SBSlidingAlertDisplay", @selector(updateDesktopImage:), (IMP) &SBSlidingAlertDisplay$updateDesktopImage$); | |
1127 | WBRename(true, "SBStatusBarContentsView", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview); | |
1128 | WBRename(true, "SBStatusBarContentsView", @selector(initWithStatusBar:mode:), (IMP) &SBStatusBarContentsView$initWithStatusBar$mode$); | |
1129 | WBRename(true, "SBStatusBarController", @selector(setStatusBarMode:orientation:duration:fenceID:animation:), (IMP) &SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$); | |
4668cd8e JF |
1130 | WBRename(true, "SBStatusBarOperatorNameView", @selector(operatorNameStyle), (IMP) &SBStatusBarOperatorNameView$operatorNameStyle); |
1131 | WBRename(true, "SBStatusBarOperatorNameView", @selector(setOperatorName:fullSize:), (IMP) &SBStatusBarOperatorNameView$setOperatorName$fullSize$); | |
2acbe5b8 JF |
1132 | WBRename(true, "SBStatusBarTimeView", @selector(drawRect:), (IMP) &SBStatusBarTimeView$drawRect$); |
1133 | ||
1134 | English_ = [[NSDictionary alloc] initWithContentsOfFile:@"/System/Library/CoreServices/SpringBoard.app/English.lproj/LocalizedApplicationNames.strings"]; | |
1135 | if (English_ != nil) | |
1136 | English_ = [English_ retain]; | |
1137 | ||
1138 | Cache_ = [[NSMutableDictionary alloc] initWithCapacity:64]; | |
1139 | } | |
1140 | ||
4668cd8e JF |
1141 | Wallpapers_ = [[NSArray arrayWithObjects:@"Wallpaper.mp4", @"Wallpaper.png", @"Wallpaper.jpg", @"Wallpaper.html", nil] retain]; |
1142 | ||
f22a8989 JF |
1143 | if ([Info_ objectForKey:@"UndockedIconLabels"] == nil) |
1144 | [Info_ setObject:[NSNumber numberWithBool:( | |
4668cd8e | 1145 | $getTheme$(Wallpapers_) == nil || |
f22a8989 JF |
1146 | [Info_ objectForKey:@"DockedIconLabelStyle"] != nil || |
1147 | [Info_ objectForKey:@"UndockedIconLabelStyle"] != nil | |
1148 | )] forKey:@"UndockedIconLabels"]; | |
1149 | ||
d5fb6e01 JF |
1150 | if (Debug_) |
1151 | NSLog(@"WB:Debug:Info = %@", [Info_ description]); | |
1152 | ||
d5168fd6 JF |
1153 | [pool release]; |
1154 | } |