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