#define _trace() NSLog(@"WB:_trace(%u)", __LINE__);
#define _transient
-#include <objc/runtime.h>
-#include <objc/message.h>
-
-#include <dlfcn.h>
-
-extern "C" {
- #include <mach-o/nlist.h>
-}
-
-#include <mach/mach_init.h>
-#include <mach/vm_map.h>
-
-#include <sys/mman.h>
+#include <substrate.h>
+#import <CoreFoundation/CoreFoundation.h>
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>
#import <SpringBoard/SBApplication.h>
#import <SpringBoard/SBApplicationIcon.h>
#import <SpringBoard/SBAppWindow.h>
+#import <SpringBoard/SBBookmarkIcon.h>
#import <SpringBoard/SBButtonBar.h>
+#import <SpringBoard/SBCalendarIconContentsView.h>
#import <SpringBoard/SBContentLayer.h>
#import <SpringBoard/SBIconController.h>
#import <SpringBoard/SBIconLabel.h>
+#import <SpringBoard/SBSlidingAlertDisplay.h>
#import <SpringBoard/SBStatusBarContentsView.h>
#import <SpringBoard/SBStatusBarController.h>
#import <SpringBoard/SBStatusBarTimeView.h>
bool Engineer_ = false;
/* WinterBoard Backend {{{ */
-#define WBPrefix "wb_"
-
void WBInject(const char *classname, const char *oldname, IMP newimp, const char *type) {
Class _class = objc_getClass(classname);
if (_class == nil)
NSLog(@"WB:Error: failed to inject [%s %s]", classname, oldname);
}
-void WBRename(bool instance, const char *classname, const char *oldname, IMP newimp) {
- Class _class = objc_getClass(classname);
- if (_class == nil) {
- if (Debug_)
- NSLog(@"WB:Warning: cannot find class [%s]", classname);
- return;
- }
- if (!instance)
- _class = object_getClass(_class);
- Method method = class_getInstanceMethod(_class, sel_getUid(oldname));
- if (method == nil) {
- if (Debug_)
- NSLog(@"WB:Warning: cannot find method [%s %s]", classname, oldname);
- return;
- }
- size_t namelen = strlen(oldname);
- char newname[sizeof(WBPrefix) + namelen];
- memcpy(newname, WBPrefix, sizeof(WBPrefix) - 1);
- memcpy(newname + sizeof(WBPrefix) - 1, oldname, namelen + 1);
- const char *type = method_getTypeEncoding(method);
- if (!class_addMethod(_class, sel_registerName(newname), method_getImplementation(method), type))
- NSLog(@"WB:Error: failed to rename [%s %s]", classname, oldname);
- unsigned int count;
- Method *methods = class_copyMethodList(_class, &count);
- for (unsigned int index(0); index != count; ++index)
- if (methods[index] == method)
- goto found;
- if (newimp != NULL)
- if (!class_addMethod(_class, sel_getUid(oldname), newimp, type))
- NSLog(@"WB:Error: failed to rename [%s %s]", classname, oldname);
- goto done;
- found:
- if (newimp != NULL)
- method_setImplementation(method, newimp);
- done:
- free(methods);
-}
/* }}} */
@protocol WinterBoard
+- (CGSize) wb_renderedSizeOfNode:(id)node constrainedToWidth:(float)width;
+- (void *) _node;
+- (void) wb_updateDesktopImage:(UIImage *)image;
+- (UIImage *) wb_defaultDesktopImage;
+- (NSString *) wb_bundlePath;
- (NSString *) wb_pathForIcon;
- (NSString *) wb_pathForResource:(NSString *)resource ofType:(NSString *)type;
- (id) wb_init;
- (void) wb_appendIconList:(SBIconList *)list;
- (id) wb_initWithStatusBar:(id)bar mode:(int)mode;
- (id) wb_initWithMode:(int)mode orientation:(int)orientation;
+- (id) wb_imageAtPath:(NSString *)path;
+- (id) wb_initWithContentsOfFile:(NSString *)file;
+- (id) wb_initWithContentsOfFile:(NSString *)file cache:(BOOL)cache;
- (void) wb_setStatusBarMode:(int)mode orientation:(int)orientation duration:(float)duration fenceID:(int)id animation:(int)animation;
@end
-NSMutableDictionary **__mappedImages;
-NSMutableDictionary *UIImages_;
-NSMutableDictionary *PathImages_;
+static NSMutableDictionary **__mappedImages;
+static NSMutableDictionary *UIImages_;
+static NSMutableDictionary *PathImages_;
+
+static NSFileManager *Manager_;
+static NSDictionary *English_;
+static NSMutableDictionary *Info_;
+static NSMutableArray *themes_;
+
+static NSString *$getTheme$(NSArray *files) {
+ for (NSString *theme in themes_)
+ for (NSString *file in files) {
+ NSString *path([NSString stringWithFormat:@"%@/%@", theme, file]);
+ if ([Manager_ fileExistsAtPath:path])
+ return path;
+ }
-NSFileManager *Manager_;
-NSDictionary *English_;
-NSMutableDictionary *Info_;
-NSMutableArray *themes_;
+ return nil;
+}
-NSString *$pathForIcon$(SBApplication<WinterBoard> *self) {
+static NSString *$pathForIcon$(SBApplication<WinterBoard> *self) {
for (NSString *theme in themes_) {
NSString *identifier = [self bundleIdentifier];
NSString *folder = [[self path] lastPathComponent];
return [self wb_icon];
}
+static UIImage *SBBookmarkIcon$icon(SBBookmarkIcon<WinterBoard> *self, SEL sel) {
+ if (Debug_)
+ NSLog(@"WB:Debug:Bookmark(%@:%@)", [self displayIdentifier], [self displayName]);
+ if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Icons/%@.png", [self displayName]]]))
+ return [$UIImage imageWithContentsOfFile:path];
+ return [self wb_icon];
+}
+
static NSString *SBApplication$pathForIcon(SBApplication<WinterBoard> *self, SEL sel) {
if (NSString *path = $pathForIcon$(self))
return path;
return [self wb_pathForIcon];
}
-static NSString *$pathForFile$inBundle$(NSString *file, NSBundle *bundle, bool ui) {
+static NSString *$pathForFile$inBundle$(NSString *file, NSBundle<WinterBoard> *bundle, bool ui) {
for (NSString *theme in themes_) {
NSString *identifier = [bundle bundleIdentifier];
return path;
}
- if (NSString *folder = [[bundle bundlePath] lastPathComponent]) {
+ if (NSString *folder = [[bundle wb_bundlePath] lastPathComponent]) {
NSString *path = [NSString stringWithFormat:@"%@/Folders/%@/%@", theme, folder, file];
if ([Manager_ fileExistsAtPath:path])
return path;
UIImage *image = [PathImages_ objectForKey:path];
if (image != nil)
return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
- image = [[$UIImage alloc] initWithContentsOfFile:path cache:true];
+ image = [[$UIImage alloc] wb_initWithContentsOfFile:path cache:true];
if (image != nil)
image = [image autorelease];
[PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:path];
}
static UIImage *UIImage$imageNamed$inBundle$(Class<WinterBoard> self, SEL sel, NSString *name, NSBundle *bundle) {
- NSString *key = [NSString stringWithFormat:@"%@/%@", [bundle bundleIdentifier], name];
+ NSString *key = [NSString stringWithFormat:@"B:%@/%@", [bundle bundleIdentifier], name];
UIImage *image = [PathImages_ objectForKey:key];
if (image != nil)
return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
return [self wb_applicationImageNamed:name];
}
+@interface NSString (WinterBoard)
+- (NSString *) wb_themedPath;
+@end
+
+@implementation NSString (WinterBoard)
+
+- (NSString *) wb_themedPath {
+ if (Debug_)
+ NSLog(@"WB:Debug:Bypass(\"%@\")", self);
+ return self;
+}
+
+@end
+
+static NSMutableDictionary *Files_;
+
+#define WBDelegate(delegate) \
+ - (NSMethodSignature*) methodSignatureForSelector:(SEL)sel { \
+ if (Engineer_) \
+ NSLog(@"WB:MS:%s:(%s)", class_getName([self class]), sel_getName(sel)); \
+ if (NSMethodSignature *sig = [delegate methodSignatureForSelector:sel]) \
+ return sig; \
+ NSLog(@"WB:Error: [%s methodSignatureForSelector:(%s)]", class_getName([self class]), sel_getName(sel)); \
+ return nil; \
+ } \
+\
+ - (void) forwardInvocation:(NSInvocation*)inv { \
+ SEL sel = [inv selector]; \
+ if ([delegate respondsToSelector:sel]) \
+ [inv invokeWithTarget:delegate]; \
+ else \
+ NSLog(@"WB:Error: [%s forwardInvocation:(%s)]", class_getName([self class]), sel_getName(sel)); \
+ }
+
+/*@interface WBBundlePath : NSProxy {
+ NSBundle<WinterBoard> *bundle_;
+ NSString *path_;
+}
+
+- (id) initWithBundle:(NSBundle *)bundle path:(NSString *)path;
+
+- (NSString *) wb_themedPath;
+
+@end
+
+@implementation WBBundlePath
+
+- (void) dealloc {
+ [bundle_ release];
+ [path_ release];
+ [super dealloc];
+}
+
+- (id) initWithBundle:(NSBundle *)bundle path:(NSString *)path {
+ bundle_ = [bundle retain];
+ path_ = [path retain];
+ return self;
+}
+
+WBDelegate(path_)
+
+- (NSString *) stringByAppendingPathComponent:(NSString *)component {
+ NSLog(@"WB:Debug:app:%@:%@", path_, component);
+ return [[[WBBundlePath alloc] initWithBundle:bundle_ path:[path_ stringByAppendingPathComponent:component]] autorelease];
+}
+
+- (NSString *) stringByAppendingPathExtension:(NSString *)extension {
+ return [[[WBBundlePath alloc] initWithBundle:bundle_ path:[path_ stringByAppendingPathExtension:extension]] autorelease];
+}
+
+- (const char *) UTF8String {
+ const char *string = [path_ UTF8String];
+ NSLog(@"WB:Debug:UTF=%s", string);
+ return string;
+}
+
+- (NSString *) description {
+ return [path_ description];
+}
+
+- (NSString *) wb_themedPath {
+ return path_;
+ NSString *path = [Files_ objectForKey:path_];
+ if (path == nil) {
+ NSString *path = [bundle_ wb_bundlePath];
+ if (![path_ hasPrefix:path]) {
+ NSLog(@"WB:Error:![@\"%@\" hasPrefix:@\"%@\"]", path_, path);
+ return path_;
+ }
+ path = [path_ substringFromIndex:([path length] + 1)];
+ path = $pathForFile$inBundle$(path, bundle_, false);
+ if (path == nil)
+ path = reinterpret_cast<NSString *>([NSNull null]);
+ [Files_ setObject:path forKey:path_];
+ if (Debug_)
+ NSLog(@"WB:Debug:ThemePath(\"%@\")->\"%@\"", path_, path);
+ }
+ if (reinterpret_cast<id>(path) == [NSNull null])
+ path = path_;
+ NSLog(@"WB:Debug:ThemePath=%@", path);
+ return path;
+}
+
+@end*/
+
+static NSString *NSBundle$bundlePath$(NSBundle<WinterBoard> *self, SEL sel) {
+ //return [[WBBundlePath alloc] initWithBundle:self path:[self wb_bundlePath]];
+ return [self wb_bundlePath];
+}
+
static NSString *NSBundle$pathForResource$ofType$(NSBundle<WinterBoard> *self, SEL sel, NSString *resource, NSString *type) {
NSString *file = type == nil ? resource : [NSString stringWithFormat:@"%@.%@", resource, type];
if (Debug_)
return [self wb_pathForResource:resource ofType:type];
}
-bool $setBarStyle$_(NSString *name, UIView<WinterBoard> *self, int style) {
+static bool $setBarStyle$_(NSString *name, UIView<WinterBoard> *self, int style) {
if (Debug_)
NSLog(@"WB:Debug:%@Style:%d", name, style);
NSNumber *number = nil;
}
}
-/*id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
+static void SBCalendarIconContentsView$drawRect$(SBCalendarIconContentsView<WinterBoard> *self, SEL sel, CGRect rect) {
+ CFLocaleRef locale(CFLocaleCopyCurrent());
+ CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, locale, kCFDateFormatterNoStyle, kCFDateFormatterNoStyle));
+ CFRelease(locale);
+
+ CFDateRef now(CFDateCreate(NULL, CFAbsoluteTimeGetCurrent()));
+
+ CFDateFormatterSetFormat(formatter, CFSTR("d"));
+ CFStringRef date(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
+ CFDateFormatterSetFormat(formatter, CFSTR("EEEE"));
+ CFStringRef day(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
+
+ CFRelease(now);
+
+ CFRelease(formatter);
+
+ NSString *datestyle(@""
+ "font-family: Helvetica; "
+ "font-weight: bold; "
+ "font-size: 39px; "
+ "color: #333333; "
+ "alpha: 1.0; "
+ "");
+
+ NSString *daystyle(@""
+ "font-family: Helvetica; "
+ "font-weight: bold; "
+ "font-size: 9px; "
+ "color: white; "
+ "text-shadow: rgba(0, 0, 0, 0.2) -1px -1px 2px; "
+ "");
+
+ if (NSString *style = [Info_ objectForKey:@"CalendarIconDateStyle"])
+ datestyle = [datestyle stringByAppendingString:style];
+ if (NSString *style = [Info_ objectForKey:@"CalendarIconDayStyle"])
+ daystyle = [daystyle stringByAppendingString:style];
+
+ float width([self bounds].size.width);
+ CGSize datesize = [(NSString *)date sizeWithStyle:datestyle forWidth:width];
+ CGSize daysize = [(NSString *)day sizeWithStyle:daystyle forWidth:width];
+
+ [(NSString *)date drawAtPoint:CGPointMake(
+ (width + 4 - datesize.width) / 2, (71 - datesize.height) / 2
+ ) withStyle:datestyle];
+
+ [(NSString *)day drawAtPoint:CGPointMake(
+ (width - daysize.width) / 2, (16 - daysize.height) / 2
+ ) withStyle:daystyle];
+
+ CFRelease(date);
+ CFRelease(day);
+}
+
+/*static id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
_trace();
if (NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"])
return [self wb_initWithFrame:frame withBarStyle:style withTintColor:tint];
}*/
-/*id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
+/*static id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
self = [self wb_initWithCoder:coder];
if (self == nil)
return nil;
return self;
}
-id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
+static id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
self = [self wb_initWithFrame:frame];
if (self == nil)
return nil;
[self wb_didMoveToSuperview];
}
-static NSString *$getTheme$(NSArray *files) {
- for (NSString *theme in themes_)
- for (NSString *file in files) {
- NSString *path([NSString stringWithFormat:@"%@/%@", theme, file]);
- if ([Manager_ fileExistsAtPath:path])
- return path;
- }
+static id UIImage$imageAtPath$(NSObject<WinterBoard> *self, SEL sel, NSString *path) {
+ return [self wb_imageAtPath:[path wb_themedPath]];
+}
- return nil;
+static id $initWithContentsOfFile$(NSObject<WinterBoard> *self, SEL sel, NSString *file) {
+ return [self wb_initWithContentsOfFile:[file wb_themedPath]];
+}
+
+static id UIImage$initWithContentsOfFile$cache$(UIImage<WinterBoard> *self, SEL sel, NSString *file, BOOL cache) {
+ return [self wb_initWithContentsOfFile:[file wb_themedPath] cache:cache];
+}
+
+static UIImage *UIImage$defaultDesktopImage$(UIImage<WinterBoard> *self, SEL sel) {
+ if (Debug_)
+ NSLog(@"WB:Debug:DefaultDesktopImage");
+ if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"LockBackground.png", @"LockBackground.jpg", nil]))
+ return [$UIImage imageWithContentsOfFile:path];
+ return [self wb_defaultDesktopImage];
}
-static UIImageView *Wallpaper_;
+static UIImageView *WallpaperImage_;
+static UIWebDocumentView *WallpaperPage_;
+static NSURL *WallpaperURL_;
static id SBContentLayer$initWithSize$(SBContentLayer<WinterBoard> *self, SEL sel, CGSize size) {
self = [self wb_initWithSize:size];
UIImage *image;
if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"Wallpaper.png", @"Wallpaper.jpg", nil])) {
- image = [[$UIImage alloc] initWithContentsOfFile:path];
+ image = [[$UIImage alloc] wb_initWithContentsOfFile:path];
if (image != nil)
image = [image autorelease];
} else image = nil;
- if (Wallpaper_ != nil)
- [Wallpaper_ release];
- Wallpaper_ = [[$UIImageView alloc] initWithImage:image];
- [self addSubview:Wallpaper_];
+ if (WallpaperImage_ != nil)
+ [WallpaperImage_ release];
+ WallpaperImage_ = [[$UIImageView alloc] initWithImage:image];
+ [self addSubview:WallpaperImage_];
if (NSString *path = $getTheme$([NSArray arrayWithObject:@"Wallpaper.html"])) {
CGRect bounds = [self bounds];
UIWebDocumentView *view([[[$UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
[view setAutoresizes:true];
- [view loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]];
+ if (WallpaperPage_ != nil)
+ [WallpaperPage_ release];
+ WallpaperPage_ = [view retain];
+
+ if (WallpaperURL_ != nil)
+ [WallpaperURL_ release];
+ WallpaperURL_ = [[NSURL fileURLWithPath:path] retain];
+
+ [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
[[view webView] setDrawsBackground:false];
[view setBackgroundColor:[$UIColor clearColor]];
return self;
}
-#define WBDelegate(delegate) \
- - (NSMethodSignature*) methodSignatureForSelector:(SEL)sel { \
- if (Engineer_) \
- NSLog(@"WB:MS:%s:(%s)", class_getName([self class]), sel_getName(sel)); \
- if (NSMethodSignature *sig = [delegate methodSignatureForSelector:sel]) \
- return sig; \
- NSLog(@"WB:Error: [%s methodSignatureForSelector:(%s)]", class_getName([self class]), sel_getName(sel)); \
- return nil; \
- } \
-\
- - (void) forwardInvocation:(NSInvocation*)inv { \
- SEL sel = [inv selector]; \
- if ([delegate respondsToSelector:sel]) \
- [inv invokeWithTarget:delegate]; \
- else \
- NSLog(@"WB:Error: [%s forwardInvocation:(%s)]", class_getName([self class]), sel_getName(sel)); \
+static void SBSlidingAlertDisplay$updateDesktopImage$(SBSlidingAlertDisplay<WinterBoard> *self, SEL sel, UIImage *image) {
+ NSString *path = $getTheme$([NSArray arrayWithObject:@"LockBackground.html"]);
+
+ if (path) {
+ UIView *background;
+ object_getInstanceVariable(self, "_backgroundView", reinterpret_cast<void **>(&background));
+ if (background != nil)
+ path = nil;
}
+ [self wb_updateDesktopImage:image];
+
+ if (path != nil) {
+ CGRect bounds = [self bounds];
+
+ UIWebDocumentView *view([[[$UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
+ [view setAutoresizes:true];
+
+ if (WallpaperPage_ != nil)
+ [WallpaperPage_ release];
+ WallpaperPage_ = [view retain];
+
+ if (WallpaperURL_ != nil)
+ [WallpaperURL_ release];
+ WallpaperURL_ = [[NSURL fileURLWithPath:path] retain];
+
+ [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
+
+ [[view webView] setDrawsBackground:false];
+ [view setBackgroundColor:[$UIColor clearColor]];
+
+ UIView *background;
+ object_getInstanceVariable(self, "_backgroundView", reinterpret_cast<void **>(&background));
+ NSLog(@"back:%@", background);
+
+ [self insertSubview:view aboveSubview:background];
+ }
+}
+
static unsigned *__currentContextCount;
static void ***__currentContextStack;
@end
-@implementation WBIconLabel
-
-- (void) dealloc {
- [string_ release];
- [super dealloc];
-}
-
-- (id) initWithString:(NSString *)string {
- string_ = [string retain];
- return self;
-}
-
-WBDelegate(string_)
-
-- (NSString *) _iconLabelStyle {
- NSString *key = docked_ ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle";
- NSString *style = [Info_ objectForKey:key];
- return style;
-}
-
-- (CGSize) drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(int)mode alignment:(int)alignment {
- if (NSString *custom = [self _iconLabelStyle]) {
- NSString *style = [NSString stringWithFormat:@""
- "font-family: Helvetica; "
- "font-weight: bold; "
- "font-size: 11px; "
- "text-align: center; "
- "color: %@; "
- "%@", docked_ ? @"white" : @"#b3b3b3", custom];
-
- if (Debug_)
- NSLog(@"WB:Debug:style = %@", style);
- [string_ drawInRect:rect withStyle:style];
- return CGSizeZero;
- }
-
- return [string_ drawInRect:rect withFont:font lineBreakMode:mode alignment:alignment];
-}
-
-- (void) drawInRect:(CGRect)rect withStyle:(NSString *)style {
- if (NSString *custom = [self _iconLabelStyle]) {
- NSString *combined = [NSString stringWithFormat:@"%@; %@", style, custom];
- if (Debug_)
- NSLog(@"WB:Debug:combined = %@", combined);
- return [string_ drawInRect:rect withStyle:combined];
- }
- return [string_ drawInRect:rect withStyle:style];
-}
-
-- (BOOL) respondsToSelector:(SEL)sel {
- return
- sel == @selector(setInDock:)
- ? true : [super respondsToSelector:sel];
-}
-
-- (void) setInDock:(BOOL)docked {
- docked_ = docked;
-}
-
-@end
-
static void SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$(SBStatusBarController<WinterBoard> *self, SEL sel, int mode, int orientation, float duration, int id, int animation) {
if (Debug_)
NSLog(@"WB:Debug:setStatusBarMode:%d", mode);
- if (mode != 104)
+ if (mode < 100) // 104:hidden 105:glowing
if (NSNumber *number = [Info_ objectForKey:@"StatusBarMode"])
mode = [number intValue];
return [self wb_setStatusBarMode:mode orientation:orientation duration:duration fenceID:id animation:animation];
return [self wb_appendIconList:list];
}
+static id SBIconLabel$initWithSize$label$(SBIconLabel<WinterBoard> *self, SEL sel, CGSize size, NSString *label) {
+ self = [self wb_initWithSize:size label:label];
+ if (self != nil)
+ [self setClipsToBounds:NO];
+ return self;
+}
+
static void SBIconLabel$setInDock$(SBIconLabel<WinterBoard> *self, SEL sel, BOOL docked) {
id label;
object_getInstanceVariable(self, "_label", reinterpret_cast<void **>(&label));
return [self wb_setInDock:docked];
}
-static id SBIconLabel$initWithSize$label$(SBIconLabel<WinterBoard> *self, SEL sel, CGSize size, NSString *label) {
- // XXX: technically I'm misusing self here
- return [self wb_initWithSize:size label:[[[WBIconLabel alloc] initWithString:label] autorelease]];
- //return [self wb_initWithSize:size label:label];
+@class WebCoreFrameBridge;
+static CGSize WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$(WebCoreFrameBridge<WinterBoard> *self, SEL sel, id node, float width) {
+ if (node == nil)
+ return CGSizeZero;
+ void **core(reinterpret_cast<void **>([node _node]));
+ if (core == NULL || core[6] == NULL)
+ return CGSizeZero;
+ return [self wb_renderedSizeOfNode:node constrainedToWidth:width];
+}
+
+static void SBIconLabel$drawRect$(SBIconLabel<WinterBoard> *self, SEL sel, CGRect rect) {
+ CGRect bounds = [self bounds];
+
+ static Ivar drawMoreLegibly = object_getInstanceVariable(self, "_drawMoreLegibly", NULL);
+
+ BOOL docked;
+ Ivar ivar = object_getInstanceVariable(self, "_inDock", reinterpret_cast<void **>(&docked));
+ docked = (docked & (ivar_getOffset(ivar) == ivar_getOffset(drawMoreLegibly) ? 0x2 : 0x1)) != 0;
+
+ NSString *label;
+ object_getInstanceVariable(self, "_label", reinterpret_cast<void **>(&label));
+
+ NSString *style = [NSString stringWithFormat:@""
+ "font-family: Helvetica; "
+ "font-weight: bold; "
+ "font-size: 11px; "
+ "color: %@; "
+ "", docked ? @"white" : @"#b3b3b3"];
+
+ if (docked)
+ style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; "];
+ float max = 75, width = [label sizeWithStyle:style forWidth:320].width;
+ if (width > max)
+ style = [style stringByAppendingString:[NSString stringWithFormat:@"letter-spacing: -%f; ", ((width - max) / ([label length] - 1))]];
+ if (NSString *custom = [Info_ objectForKey:(docked ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle")])
+ style = [style stringByAppendingString:custom];
+
+ CGSize size = [label sizeWithStyle:style forWidth:bounds.size.width];
+ [label drawAtPoint:CGPointMake((bounds.size.width - size.width) / 2, 0) withStyle:style];
}
extern "C" void FindMappedImages(void);
static UIImage *(*_UIImageAtPath)(NSString *name, NSBundle *path);
static CGImageRef *(*_UIImageRefAtPath)(NSString *path, bool cache, UIImageOrientation *orientation);
static UIImage *(*_UIImageWithName)(NSString *name);
+static UIImage *(*_UIImageWithNameInDomain)(NSString *name, NSString *domain);
static NSBundle *(*_UIKitBundle)();
static void (*_UISharedImageInitialize)(bool);
static int (*_UISharedImageNameGetIdentifier)(NSString *);
if (image != nil)
return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
if (NSString *path = $pathForFile$inBundle$(name, _UIKitBundle(), true)) {
- image = [[$UIImage alloc] initWithContentsOfFile:path];
+ image = [[$UIImage alloc] wb_initWithContentsOfFile:path];
if (image != nil)
[image autorelease];
}
}
}
-// ldr pc, [pc, #-4]
-#define ldr_pc_$pc_m4$ 0xe51ff004
-
-template <typename Type_>
-static void WBReplace(Type_ *symbol, Type_ *replace, Type_ **result) {
+static UIImage *$_UIImageWithNameInDomain(NSString *name, NSString *domain) {
+ NSString *key = [NSString stringWithFormat:@"D:%zu%@%@", [domain length], domain, name];
+ UIImage *image = [PathImages_ objectForKey:key];
+ if (image != nil)
+ return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
if (Debug_)
- NSLog(@"WB:Notice: Remapping %p to %p", symbol, replace);
- if (symbol == NULL)
- return;
-
- int page = getpagesize();
- uintptr_t base = reinterpret_cast<uintptr_t>(symbol) / page * page;
-
- mach_port_t self = mach_task_self();
-
- if (kern_return_t error = vm_protect(self, base, page, FALSE, VM_PROT_READ | VM_PROT_WRITE | VM_PROT_COPY)) {
- NSLog(@"WB:Error:vm_protect():%d", error);
- return;
- }
-
- uint32_t *code = reinterpret_cast<uint32_t *>(symbol);
- uint32_t backup[2] = {code[0], code[1]};
-
- code[0] = ldr_pc_$pc_m4$;
- code[1] = reinterpret_cast<uint32_t>(replace);
-
- __clear_cache(reinterpret_cast<char *>(code), reinterpret_cast<char *>(code + 2));
-
- if (kern_return_t error = vm_protect(self, base, page, FALSE, VM_PROT_READ | VM_PROT_EXECUTE))
- NSLog(@"WB:Error:vm_protect():%d", error);
-
- if (result != NULL) {
- uint32_t *buffer = reinterpret_cast<uint32_t *>(mmap(
- NULL, sizeof(uint32_t) * 4,
- PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE,
- -1, 0
- ));
-
- if (buffer == MAP_FAILED) {
- NSLog(@"WB:Error:mmap():%d", errno);
- return;
- }
-
- buffer[0] = backup[0];
- buffer[1] = backup[1];
- buffer[2] = ldr_pc_$pc_m4$;
- buffer[3] = reinterpret_cast<uint32_t>(code + 2);
-
- if (mprotect(buffer, sizeof(uint32_t) * 4, PROT_READ | PROT_EXEC) == -1) {
- NSLog(@"WB:Error:mprotect():%d", errno);
- return;
- }
-
- *result = reinterpret_cast<Type_ *>(buffer);
+ NSLog(@"WB:Debug: UIImageWithNameInDomain(\"%@\", \"%@\")", name, domain);
+ if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Domains/%@/%@", domain, name]])) {
+ image = [[$UIImage alloc] wb_initWithContentsOfFile:path];
+ if (image != nil)
+ [image autorelease];
}
+ if (image == nil)
+ image = _UIImageWithNameInDomain(name, domain);
+ [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
+ return image;
}
template <typename Type_>
) {
if (Debug_)
NSLog(@"WB:Debug:ChangeWallpaper!");
+
UIImage *image;
if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"Wallpaper.png", @"Wallpaper.jpg", nil])) {
- image = [[$UIImage alloc] initWithContentsOfFile:path];
+ image = [[$UIImage alloc] wb_initWithContentsOfFile:path];
if (image != nil)
image = [image autorelease];
} else image = nil;
- [Wallpaper_ setImage:image];
+
+ if (WallpaperImage_ != nil)
+ [WallpaperImage_ setImage:image];
+ if (WallpaperPage_ != nil)
+ [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
+
+}
+
+void WBRename(bool instance, const char *name, SEL sel, IMP imp) {
+ Class _class = objc_getClass(name);
+ if (_class == nil) {
+ if (Debug_)
+ NSLog(@"WB:Warning: cannot find class [%s]", name);
+ return;
+ }
+ if (!instance)
+ _class = object_getClass(_class);
+ MSHookMessage(_class, sel, imp, "wb_");
}
extern "C" void WBInitialize() {
$UIImageView = objc_getClass("UIImageView");
$UIWebDocumentView = objc_getClass("UIWebDocumentView");
- struct nlist nl[11];
+ struct nlist nl[12];
memset(nl, 0, sizeof(nl));
nl[0].n_un.n_name = (char *) "___currentContextCount";
nl[3].n_un.n_name = (char *) "__UIImageAtPath";
nl[4].n_un.n_name = (char *) "__UIImageRefAtPath";
nl[5].n_un.n_name = (char *) "__UIImageWithName";
- nl[6].n_un.n_name = (char *) "__UIKitBundle";
- nl[7].n_un.n_name = (char *) "__UISharedImageInitialize";
- nl[8].n_un.n_name = (char *) "__UISharedImageNameGetIdentifier";
- nl[9].n_un.n_name = (char *) "__UISharedImageWithIdentifier";
+ nl[6].n_un.n_name = (char *) "__UIImageWithNameInDomain";
+ nl[7].n_un.n_name = (char *) "__UIKitBundle";
+ nl[8].n_un.n_name = (char *) "__UISharedImageInitialize";
+ nl[9].n_un.n_name = (char *) "__UISharedImageNameGetIdentifier";
+ nl[10].n_un.n_name = (char *) "__UISharedImageWithIdentifier";
nlist(UIKit, nl);
_UIImageAtPath = (UIImage *(*)(NSString *, NSBundle *)) nl[3].n_value;
_UIImageRefAtPath = (CGImageRef *(*)(NSString *, bool, UIImageOrientation *)) nl[4].n_value;
_UIImageWithName = (UIImage *(*)(NSString *)) nl[5].n_value;
- _UIKitBundle = (NSBundle *(*)()) nl[6].n_value;
- _UISharedImageInitialize = (void (*)(bool)) nl[7].n_value;
- _UISharedImageNameGetIdentifier = (int (*)(NSString *)) nl[8].n_value;
- _UISharedImageWithIdentifier = (UIImage *(*)(int)) nl[9].n_value;
+ _UIImageWithNameInDomain = (UIImage *(*)(NSString *, NSString *)) nl[6].n_value;
+ _UIKitBundle = (NSBundle *(*)()) nl[7].n_value;
+ _UISharedImageInitialize = (void (*)(bool)) nl[8].n_value;
+ _UISharedImageNameGetIdentifier = (int (*)(NSString *)) nl[9].n_value;
+ _UISharedImageWithIdentifier = (UIImage *(*)(int)) nl[10].n_value;
- WBReplace(_UIImageWithName, &$_UIImageWithName);
+ MSHookFunction(_UIImageWithName, &$_UIImageWithName, &_UIImageWithName);
+ MSHookFunction(_UIImageWithNameInDomain, &$_UIImageWithNameInDomain, &_UIImageWithNameInDomain);
if (dlopen(AudioToolbox, RTLD_LAZY | RTLD_NOLOAD) != NULL) {
struct nlist nl[2];
nl[0].n_un.n_name = (char *) "__Z24GetFileNameForThisActionmPcRb";
nlist(AudioToolbox, nl);
_Z24GetFileNameForThisActionmPcRb = (bool (*)(unsigned long, char *, bool &)) nl[0].n_value;
- WBReplace(_Z24GetFileNameForThisActionmPcRb, &$_Z24GetFileNameForThisActionmPcRb, &_Z24GetFileNameForThisActionmPcRb);
+ MSHookFunction(_Z24GetFileNameForThisActionmPcRb, &$_Z24GetFileNameForThisActionmPcRb, &_Z24GetFileNameForThisActionmPcRb);
}
+ WBRename(false, "UIImage", @selector(applicationImageNamed:), (IMP) &UIImage$applicationImageNamed$);
+ WBRename(false, "UIImage", @selector(defaultDesktopImage), (IMP) &UIImage$defaultDesktopImage$);
+ WBRename(false, "UIImage", @selector(imageAtPath:), (IMP) &UIImage$imageAtPath$);
+ WBRename(false, "UIImage", @selector(imageNamed:), (IMP) &UIImage$imageNamed$);
+ WBRename(false, "UIImage", @selector(imageNamed:inBundle:), (IMP) &UIImage$imageNamed$inBundle$);
+
+ //WBRename("UINavigationBar", @selector(initWithCoder:", (IMP) &UINavigationBar$initWithCoder$);
+ //WBRename("UINavigationBarBackground", @selector(initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
+ //WBRename(true, "SBStatusBar", @selector(initWithMode:orientation:", (IMP) &SBStatusBar$initWithMode$orientation$);
+ //WBRename(true, "UIWebDocumentView", @selector(setViewportSize:forDocumentTypes:", (IMP) &UIWebDocumentView$setViewportSize$forDocumentTypes$);
+
+ WBRename(true, "NSBundle", @selector(bundlePath), (IMP) &NSBundle$bundlePath$);
+ WBRename(true, "NSBundle", @selector(pathForResource:ofType:), (IMP) &NSBundle$pathForResource$ofType$);
+
+ WBRename(true, "UIImage", @selector(initWithContentsOfFile:), (IMP) &$initWithContentsOfFile$);
+ WBRename(true, "UIImage", @selector(initWithContentsOfFile:cache:), (IMP) &UIImage$initWithContentsOfFile$cache$);
+ WBRename(true, "UINavigationBar", @selector(setBarStyle:), (IMP) &UINavigationBar$setBarStyle$);
+ WBRename(true, "UIToolbar", @selector(setBarStyle:), (IMP) &UIToolbar$setBarStyle$);
+
+ WBRename(true, "WebCoreFrameBridge", @selector(renderedSizeOfNode:constrainedToWidth:), (IMP) &WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$);
+
+ WBRename(true, "SBApplication", @selector(pathForIcon), (IMP) &SBApplication$pathForIcon);
+ WBRename(true, "SBApplicationIcon", @selector(icon), (IMP) &SBApplicationIcon$icon);
+ WBRename(true, "SBBookmarkIcon", @selector(icon), (IMP) &SBBookmarkIcon$icon);
+ WBRename(true, "SBButtonBar", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview);
+ WBRename(true, "SBCalendarIconContentsView", @selector(drawRect:), (IMP) &SBCalendarIconContentsView$drawRect$);
+ WBRename(true, "SBContentLayer", @selector(initWithSize:), (IMP) &SBContentLayer$initWithSize$);
+ WBRename(true, "SBIconLabel", @selector(initWithSize:label:), (IMP) &SBIconLabel$initWithSize$label$);
+ WBRename(true, "SBIconLabel", @selector(setInDock:), (IMP) &SBIconLabel$setInDock$);
+ WBRename(true, "SBIconLabel", @selector(drawRect:), (IMP) &SBIconLabel$drawRect$);
+ WBRename(true, "SBSlidingAlertDisplay", @selector(updateDesktopImage:), (IMP) &SBSlidingAlertDisplay$updateDesktopImage$);
+ WBRename(true, "SBStatusBarContentsView", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview);
+ WBRename(true, "SBStatusBarContentsView", @selector(initWithStatusBar:mode:), (IMP) &SBStatusBarContentsView$initWithStatusBar$mode$);
+ WBRename(true, "SBStatusBarController", @selector(setStatusBarMode:orientation:duration:fenceID:animation:), (IMP) &SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$);
+ WBRename(true, "SBStatusBarTimeView", @selector(drawRect:), (IMP) &SBStatusBarTimeView$drawRect$);
+ WBRename(true, "SBIconController", @selector(appendIconList:), (IMP) &SBIconController$appendIconList$);
+
_UISharedImageInitialize(false);
English_ = [[NSDictionary alloc] initWithContentsOfFile:@"/System/Library/CoreServices/SpringBoard.app/English.lproj/LocalizedApplicationNames.strings"];
Manager_ = [[NSFileManager defaultManager] retain];
UIImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
PathImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
-
- WBRename(false, "UIImage", "applicationImageNamed:", (IMP) &UIImage$applicationImageNamed$);
- WBRename(false, "UIImage", "imageNamed:", (IMP) &UIImage$imageNamed$);
- WBRename(false, "UIImage", "imageNamed:inBundle:", (IMP) &UIImage$imageNamed$inBundle$);
-
- //WBRename("UINavigationBar", "initWithCoder:", (IMP) &UINavigationBar$initWithCoder$);
- //WBRename("UINavigationBarBackground", "initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
- //WBRename(true, "SBStatusBar", "initWithMode:orientation:", (IMP) &SBStatusBar$initWithMode$orientation$);
- //WBRename(true, "UIWebDocumentView", "setViewportSize:forDocumentTypes:", (IMP) &UIWebDocumentView$setViewportSize$forDocumentTypes$);
-
- WBRename(true, "NSBundle", "pathForResource:ofType:", (IMP) &NSBundle$pathForResource$ofType$);
-
- WBRename(true, "UINavigationBar", "setBarStyle:", (IMP) &UINavigationBar$setBarStyle$);
- WBRename(true, "UIToolbar", "setBarStyle:", (IMP) &UIToolbar$setBarStyle$);
-
- WBRename(true, "SBApplication", "pathForIcon", (IMP) &SBApplication$pathForIcon);
- WBRename(true, "SBApplicationIcon", "icon", (IMP) &SBApplicationIcon$icon);
- WBRename(true, "SBButtonBar", "didMoveToSuperview", (IMP) &$didMoveToSuperview);
- WBRename(true, "SBContentLayer", "initWithSize:", (IMP) &SBContentLayer$initWithSize$);
- WBRename(true, "SBIconLabel", "setInDock:", (IMP) &SBIconLabel$setInDock$);
- WBRename(true, "SBIconLabel", "initWithSize:label:", (IMP) &SBIconLabel$initWithSize$label$);
- WBRename(true, "SBStatusBarContentsView", "didMoveToSuperview", (IMP) &$didMoveToSuperview);
- WBRename(true, "SBStatusBarContentsView", "initWithStatusBar:mode:", (IMP) &SBStatusBarContentsView$initWithStatusBar$mode$);
- WBRename(true, "SBStatusBarController", "setStatusBarMode:orientation:duration:fenceID:animation:", (IMP) &SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$);
- WBRename(true, "SBStatusBarTimeView", "drawRect:", (IMP) &SBStatusBarTimeView$drawRect$);
- WBRename(true, "SBIconController", "appendIconList:", (IMP) &SBIconController$appendIconList$);
+ Files_ = [[NSMutableDictionary alloc] initWithCapacity:16];
themes_ = [[NSMutableArray alloc] initWithCapacity:8];