]> git.saurik.com Git - winterboard.git/commitdiff
Added fully general theme support.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 3 Aug 2008 01:29:29 +0000 (01:29 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 3 Aug 2008 01:29:29 +0000 (01:29 +0000)
Application.mm
Dock.png [deleted file]
Library.mm
Nature/Bundles/com.apple.springboard/SBDockBG.png [new file with mode: 0644]
Nature/Info.plist [new file with mode: 0644]
Nature/Wallpaper.png [new file with mode: 0644]
Test.sh
Wallpaper.png [deleted file]
control
makefile

index 2e129d75c7d9a64052b74e51d9701af77a8649b4..a7c72ad0696a47c9ae996fca57123316e37e6440 100644 (file)
@@ -47,7 +47,7 @@
 > {
     UIWindow *window_;
     UITableView *themesTable_;
 > {
     UIWindow *window_;
     UITableView *themesTable_;
-    NSArray *themesArray_;
+    NSMutableArray *themesArray_;
 }
 
 @end
 }
 
 @end
     window_ = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
     [window_ makeKeyAndVisible];
 
     window_ = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
     [window_ makeKeyAndVisible];
 
+    themesArray_ = [[NSMutableArray arrayWithCapacity:32] retain];
     NSFileManager *manager = [NSFileManager defaultManager];
     NSFileManager *manager = [NSFileManager defaultManager];
-    themesArray_ = [[manager contentsOfDirectoryAtPath:@"/Library/Themes" error:nil] retain];
+
+    [themesArray_ addObjectsFromArray:[manager contentsOfDirectoryAtPath:@"/Library/Themes" error:NULL]];
+    [themesArray_ addObjectsFromArray:[manager contentsOfDirectoryAtPath:[NSString stringWithFormat:@"%@/Library/SummerBoard/Themes", NSHomeDirectory()] error:NULL]];
 
     themesTable_ = [[UITableView alloc] initWithFrame:window_.bounds];
     [window_ addSubview:themesTable_];
 
     themesTable_ = [[UITableView alloc] initWithFrame:window_.bounds];
     [window_ addSubview:themesTable_];
diff --git a/Dock.png b/Dock.png
deleted file mode 100644 (file)
index 4904b93..0000000
Binary files a/Dock.png and /dev/null differ
index 992563c663e759f3abfcc8fbcf8ad9c9281397f3..1f00ced464a0c261a82d7d563536a39ca8cb0d4e 100644 (file)
@@ -45,6 +45,7 @@
 #import <UIKit/UIColor.h>
 #import <UIKit/UIImage.h>
 #import <UIKit/UIImageView.h>
 #import <UIKit/UIColor.h>
 #import <UIKit/UIImage.h>
 #import <UIKit/UIImageView.h>
+#import <UIKit/UINavigationBarBackground.h>
 
 #import <UIKit/UIView-Geometry.h>
 #import <UIKit/UIView-Hierarchy.h>
 
 #import <UIKit/UIView-Geometry.h>
 #import <UIKit/UIView-Hierarchy.h>
 
 #import <CoreGraphics/CGGeometry.h>
 
 
 #import <CoreGraphics/CGGeometry.h>
 
+@interface NSDictionary (WinterBoard)
+- (UIColor *) colorForKey:(NSString *)key;
+@end
+
+@implementation NSDictionary (WinterBoard)
+
+- (UIColor *) colorForKey:(NSString *)key {
+    NSString *value = [self objectForKey:key];
+    if (value == nil)
+        return nil;
+    /* XXX: incorrect */
+    return nil;
+}
+
+@end
+
 /* WinterBoard Backend {{{ */
 #define WBPrefix "wb_"
 
 /* WinterBoard Backend {{{ */
 #define WBPrefix "wb_"
 
@@ -71,15 +88,19 @@ void WBInject(const char *classname, const char *oldname, IMP newimp, const char
 
 void WBRename(const char *classname, const char *oldname, IMP newimp) {
     Class _class = objc_getClass(classname);
 
 void WBRename(const char *classname, const char *oldname, IMP newimp) {
     Class _class = objc_getClass(classname);
-    if (_class == nil)
+    if (_class == nil) {
+        NSLog(@"WB: cannot find class [%s]", classname);
+        return;
+    }
+    Method method = class_getInstanceMethod(_class, sel_getUid(oldname));
+    if (method == nil) {
+        NSLog(@"WB: cannot find method [%s %s]", classname, oldname);
         return;
         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);
     size_t namelen = strlen(oldname);
     char newname[sizeof(WBPrefix) + namelen];
     memcpy(newname, WBPrefix, sizeof(WBPrefix) - 1);
     memcpy(newname + sizeof(WBPrefix) - 1, oldname, namelen + 1);
-    Method method = class_getInstanceMethod(_class, sel_getUid(oldname));
-    if (method == nil)
-        return;
     const char *type = method_getTypeEncoding(method);
     if (!class_addMethod(_class, sel_registerName(newname), method_getImplementation(method), type))
         NSLog(@"WB: failed to rename [%s %s]", classname, oldname);
     const char *type = method_getTypeEncoding(method);
     if (!class_addMethod(_class, sel_registerName(newname), method_getImplementation(method), type))
         NSLog(@"WB: failed to rename [%s %s]", classname, oldname);
@@ -98,8 +119,6 @@ void WBRename(const char *classname, const char *oldname, IMP newimp) {
   done:
     free(methods);
 }
   done:
     free(methods);
 }
-
-static NSString *Dylib_ = @"/Applications/WinterBoard.app/WinterBoard.dylib";
 /* }}} */
 
 @protocol WinterBoard
 /* }}} */
 
 @protocol WinterBoard
@@ -107,40 +126,61 @@ static NSString *Dylib_ = @"/Applications/WinterBoard.app/WinterBoard.dylib";
 - (NSString *) wb_pathForResource:(NSString *)resource ofType:(NSString *)type;
 - (id) wb_initWithSize:(CGSize)size;
 - (id) wb_initWithFrame:(CGRect)frame;
 - (NSString *) wb_pathForResource:(NSString *)resource ofType:(NSString *)type;
 - (id) wb_initWithSize:(CGSize)size;
 - (id) wb_initWithFrame:(CGRect)frame;
+- (id) wb_initWithCoder:(NSCoder *)coder;
 - (void) wb_setFrame:(CGRect)frame;
 - (void) wb_setBackgroundColor:(id)color;
 - (void) wb_setAlpha:(float)value;
 - (void) wb_setFrame:(CGRect)frame;
 - (void) wb_setBackgroundColor:(id)color;
 - (void) wb_setAlpha:(float)value;
-- (void) wb_addSubview:(UIView *)addSubview;
+- (void) wb_setBarStyle:(int)style;
+- (id) wb_initWithFrame:(CGRect)frame withBarStyle:(int)style withTintColor:(UIColor *)color;
 @end
 
 @end
 
-NSString *Themes_ = @"/Library/Themes";
+NSFileManager *Manager_;
+NSDictionary *Info_;
 NSString *theme_;
 NSString *Wallpaper_;
 
 NSString *SBApplication$pathForIcon(SBApplication<WinterBoard> *self, SEL sel) {
     if (theme_ != nil) {
 NSString *theme_;
 NSString *Wallpaper_;
 
 NSString *SBApplication$pathForIcon(SBApplication<WinterBoard> *self, SEL sel) {
     if (theme_ != nil) {
-        NSFileManager *manager([NSFileManager defaultManager]);
+        NSString *identifier = [self bundleIdentifier];
 
         #define testForIcon(Name) \
             if (NSString *name = Name) { \
 
         #define testForIcon(Name) \
             if (NSString *name = Name) { \
-                NSString *path = [NSString stringWithFormat:@"%@/%@/Icons/%@.png", Themes_, theme_, name]; \
-                if ([manager fileExistsAtPath:path]) \
+                NSString *path = [NSString stringWithFormat:@"%@/Icons/%@.png", theme_, name]; \
+                if ([Manager_ fileExistsAtPath:path]) \
                     return path; \
             }
 
         testForIcon([self displayName]);
                     return path; \
             }
 
         testForIcon([self displayName]);
-        testForIcon([self bundleIdentifier]);
+        testForIcon(identifier);
+
+        if (identifier != nil) {
+            NSString *path = [NSString stringWithFormat:@"%@/Bundles/%@/icon.png", theme_, identifier];
+            if ([Manager_ fileExistsAtPath:path])
+                return path;
+        }
     }
 
     return [self wb_pathForIcon];
 }
 
 NSString *NSBundle$pathForResource$ofType$(NSBundle<WinterBoard> *self, SEL sel, NSString *resource, NSString *type) {
     }
 
     return [self wb_pathForIcon];
 }
 
 NSString *NSBundle$pathForResource$ofType$(NSBundle<WinterBoard> *self, SEL sel, NSString *resource, NSString *type) {
-    if (theme_ != nil && [resource isEqualToString:@"SBDockBG"] && [type isEqualToString:@"png"]) {
-        NSFileManager *manager([NSFileManager defaultManager]);
-        NSString *path = [NSString stringWithFormat:@"%@/%@/Dock.png", Themes_, theme_];
-        if ([manager fileExistsAtPath:path])
-            return path;
+    NSLog(@"WB: NSBundle(%@) pathForResource:%@ ofType:%@", [self bundleIdentifier], resource, type);
+
+    if (theme_ != nil) {
+        NSString *identifier = [self bundleIdentifier];
+
+        if (identifier != nil) {
+            NSString *path = [NSString stringWithFormat:@"%@/Bundles/%@/%@.%@", theme_, identifier, resource, type];
+            if ([Manager_ fileExistsAtPath:path])
+                return path;
+            NSLog(@"p...%@ (%u)", path, [Manager_ fileExistsAtPath:path]);
+        }
+
+        if ([resource isEqualToString:@"SBDockBG"] && [type isEqualToString:@"png"]) {
+            NSString *path = [NSString stringWithFormat:@"%@/Dock.png", theme_];
+            if ([Manager_ fileExistsAtPath:path])
+                return path;
+        }
     }
 
     return [self wb_pathForResource:resource ofType:type];
     }
 
     return [self wb_pathForResource:resource ofType:type];
@@ -152,6 +192,56 @@ void SBAppWindow$setBackgroundColor$(SBAppWindow<WinterBoard> *self, SEL sel, UI
     return [self wb_setBackgroundColor:color];
 }
 
     return [self wb_setBackgroundColor:color];
 }
 
+bool UINavigationBar$setBarStyle$_(SBAppWindow<WinterBoard> *self) {
+    if (Info_ != nil) {
+        NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"];
+        if (number != nil) {
+            [self wb_setBarStyle:[number intValue]];
+            return true;
+        }
+    }
+
+    return false;
+}
+
+/*id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
+    _trace();
+
+    if (Info_ != nil) {
+        NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"];
+        if (number != nil)
+            style = [number intValue];
+
+        UIColor *color = [Info_ colorForKey:@"NavigationBarTint"];
+        if (color != nil)
+            tint = color;
+    }
+
+    return [self wb_initWithFrame:frame withBarStyle:style withTintColor:tint];
+}*/
+
+/*id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
+    self = [self wb_initWithCoder:coder];
+    if (self == nil)
+        return nil;
+    UINavigationBar$setBarStyle$_(self);
+    return self;
+}
+
+id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
+    self = [self wb_initWithFrame:frame];
+    if (self == nil)
+        return nil;
+    UINavigationBar$setBarStyle$_(self);
+    return self;
+}*/
+
+void UINavigationBar$setBarStyle$(SBAppWindow<WinterBoard> *self, SEL sel, int style) {
+    if (UINavigationBar$setBarStyle$_(self))
+        return;
+    return [self wb_setBarStyle:style];
+}
+
 /*id SBButtonBar$initWithFrame$(SBButtonBar<WinterBoard> *self, SEL sel, CGRect frame) {
     self = [self wb_initWithFrame:frame];
     if (self == nil)
 /*id SBButtonBar$initWithFrame$(SBButtonBar<WinterBoard> *self, SEL sel, CGRect frame) {
     self = [self wb_initWithFrame:frame];
     if (self == nil)
@@ -174,45 +264,50 @@ id SBContentLayer$initWithSize$(SBContentLayer<WinterBoard> *self, SEL sel, CGSi
 }
 
 extern "C" void WBInitialize() {
 }
 
 extern "C" void WBInitialize() {
-    /* WinterBoard FrontEnd {{{ */
-    if (NSClassFromString(@"SpringBoard") == nil)
-        return;
     NSLog(@"WB: installing WinterBoard...");
 
     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 
     NSLog(@"WB: installing WinterBoard...");
 
     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 
-    char *dil = getenv("DYLD_INSERT_LIBRARIES");
-    if (dil == NULL)
-        NSLog(@"WB: DYLD_INSERT_LIBRARIES is unset?");
-    else {
-        NSArray *dylibs = [[NSString stringWithUTF8String:dil] componentsSeparatedByString:@":"];
-        int index = [dylibs indexOfObject:Dylib_];
-        if (index == INT_MAX)
-            NSLog(@"WB: dylib not in DYLD_INSERT_LIBRARIES?");
-        else if ([dylibs count] == 1)
-            unsetenv("DYLD_INSERT_LIBRARIES");
-        else {
-            NSMutableArray *value = [[NSMutableArray alloc] init];
-            [value setArray:dylibs];
-            [value removeObjectAtIndex:index];
-            setenv("DYLD_INSERT_LIBRARIES", [[value componentsJoinedByString:@":"] UTF8String], !0);
-        }
-    }
-    /* }}} */
-
     WBRename("SBApplication", "pathForIcon", (IMP) &SBApplication$pathForIcon);
     WBRename("NSBundle", "pathForResource:ofType:", (IMP) &NSBundle$pathForResource$ofType$);
     WBRename("SBAppWindow", "setBackgroundColor:", (IMP) &SBAppWindow$setBackgroundColor$);
     WBRename("SBContentLayer", "initWithSize:", (IMP) &SBContentLayer$initWithSize$);
     WBRename("SBApplication", "pathForIcon", (IMP) &SBApplication$pathForIcon);
     WBRename("NSBundle", "pathForResource:ofType:", (IMP) &NSBundle$pathForResource$ofType$);
     WBRename("SBAppWindow", "setBackgroundColor:", (IMP) &SBAppWindow$setBackgroundColor$);
     WBRename("SBContentLayer", "initWithSize:", (IMP) &SBContentLayer$initWithSize$);
+    //WBRename("UINavigationBar", "initWithFrame:", (IMP) &UINavigationBar$initWithFrame$);
+    //WBRename("UINavigationBar", "initWithCoder:", (IMP) &UINavigationBar$initWithCoder$);
+    WBRename("UINavigationBar", "setBarStyle:", (IMP) &UINavigationBar$setBarStyle$);
+    //WBRename("UINavigationBarBackground", "initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
+
+    Manager_ = [[NSFileManager defaultManager] retain];
 
     if (NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Library/Preferences/com.saurik.WinterBoard.plist", NSHomeDirectory()]]) {
         [settings autorelease];
 
     if (NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Library/Preferences/com.saurik.WinterBoard.plist", NSHomeDirectory()]]) {
         [settings autorelease];
-        theme_ = [[settings objectForKey:@"Theme"] retain];
+        NSString *name = [settings objectForKey:@"Theme"];
+        NSString *path;
 
 
-        NSFileManager *manager([NSFileManager defaultManager]);
-        NSString *path = [NSString stringWithFormat:@"%@/%@/Wallpaper.png", Themes_, theme_];
-        if ([manager fileExistsAtPath:path])
+        if (theme_ == nil) {
+            path = [NSString stringWithFormat:@"%@/Library/SummerBoard/Themes/%@", NSHomeDirectory(), name];
+            if ([Manager_ fileExistsAtPath:path])
+                theme_ = [path retain];
+        }
+
+        if (theme_ == nil) {
+            path = [NSString stringWithFormat:@"/Library/Themes/%@", name];
+            if ([Manager_ fileExistsAtPath:path])
+                theme_ = [path retain];
+        }
+    }
+
+    if (theme_ != nil) {
+        NSString *path = [NSString stringWithFormat:@"%@/Wallpaper.png", theme_];
+        if ([Manager_ fileExistsAtPath:path])
             Wallpaper_ = [path retain];
             Wallpaper_ = [path retain];
+
+        Info_ = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Info.plist", theme_]];
+        if (Info_ == nil) {
+            //LabelColor_ = [UIColor whiteColor];
+        } else {
+            //LabelColor_ = [Info_ colorForKey:@"LabelColor"];
+        }
     }
 
     [pool release];
     }
 
     [pool release];
diff --git a/Nature/Bundles/com.apple.springboard/SBDockBG.png b/Nature/Bundles/com.apple.springboard/SBDockBG.png
new file mode 100644 (file)
index 0000000..4904b93
Binary files /dev/null and b/Nature/Bundles/com.apple.springboard/SBDockBG.png differ
diff --git a/Nature/Info.plist b/Nature/Info.plist
new file mode 100644 (file)
index 0000000..69b69dc
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0"><dict>
+
+<key>NavigationBarStyle</key>
+<string>1</string>
+
+</dict></plist>
diff --git a/Nature/Wallpaper.png b/Nature/Wallpaper.png
new file mode 100644 (file)
index 0000000..685b952
Binary files /dev/null and b/Nature/Wallpaper.png differ
diff --git a/Test.sh b/Test.sh
index e8e48d95e6049e411bf4f142f5d6961ac3dfe74a..55409f89d46eadf520a4c82681f54faac2c9a414 100755 (executable)
--- a/Test.sh
+++ b/Test.sh
@@ -1,5 +1,6 @@
 #!/bin/bash
 rm -f WinterBoard.dylib
 set -e
 #!/bin/bash
 rm -f WinterBoard.dylib
 set -e
-rsync -SPaz 'saurik@carrier.saurik.com:menes/winterboard/WinterBoard{,.dylib}' .
+rsync --exclude .svn -SPaz 'saurik@carrier.saurik.com:menes/winterboard/WinterBoard{,.dylib}' .
+rsync --exclude .svn -SPaz 'saurik@carrier.saurik.com:menes/winterboard/Nature/' /Library/Themes/com.saurik.WinterBoard.Nature
 #killall SpringBoard
 #killall SpringBoard
diff --git a/Wallpaper.png b/Wallpaper.png
deleted file mode 100644 (file)
index 685b952..0000000
Binary files a/Wallpaper.png and /dev/null differ
diff --git a/control b/control
index 05ffc8e8dcb195efefcf918fdd83c3b735004d3b..85bd389bd5bba64d6b4af64d009ae0a2f5193cc7 100644 (file)
--- a/control
+++ b/control
@@ -3,9 +3,10 @@ Priority: optional
 Section: Themes
 Maintainer: Jay Freeman (saurik) <saurik@saurik.com>
 Architecture: iphoneos-arm
 Section: Themes
 Maintainer: Jay Freeman (saurik) <saurik@saurik.com>
 Architecture: iphoneos-arm
-Version: 0.9.2498-1
+Version: 0.9.2499-2
 Description: open-source SummerBoard replacement
 Description: open-source SummerBoard replacement
- This tool lets you apply SummerBoard themes. Themes are taken from /Library/Themes. Right now the tool is /very/ simplistic: I spent a single night coding it so that we would have some stronger theme support on iPhone 2.x. After you install or uninstall this package you will have to reboot your phone to it to take effect. More work will be done on this package in the very near future to make it actually have an interface ;P. (Also, the wallpaper is cut off at the bottom under the dock. I'm working on that still.)
+ This tool lets you apply SummerBoard themes. Themes are taken from /Library/Themes (or, now, the older SummerBoard folder). Right now the tool is /very/ simplistic: I spent a single night coding it so that we would have some stronger theme support on iPhone 2.x. After you install or uninstall this package you will have to reboot your phone to it to take effect. More work will be done on this package in the very near future to make it actually have an interface ;P. (Also, the wallpaper is cut off at the bottom under the dock. I'm working on that still.)
 Name: WinterBoard
 Name: WinterBoard
+Provides: theme-manager
 Author: Jay Freeman (saurik) <saurik@saurik.com>
 Homepage: http://cydia.saurik.com/winterboard.html
 Author: Jay Freeman (saurik) <saurik@saurik.com>
 Homepage: http://cydia.saurik.com/winterboard.html
index 291a633f4ba2d34e36870f8b7f763058bfe62f7b..e31d0865f67be2190df1fc89c6bf29ec4e7e01dc 100644 (file)
--- a/makefile
+++ b/makefile
@@ -19,10 +19,10 @@ package:
        rm -rf winterboard
        mkdir -p winterboard/DEBIAN
        mkdir -p winterboard/Applications/WinterBoard.app
        rm -rf winterboard
        mkdir -p winterboard/DEBIAN
        mkdir -p winterboard/Applications/WinterBoard.app
-       mkdir -p winterboard/Library/Themes/com.saurik.WinterBoard.Nature
+       mkdir -p winterboard/Library/Themes
+       cp -a Nature winterboard/Library/Themes/com.saurik.WinterBoard.Nature
        cp -a control preinst postinst prerm winterboard/DEBIAN
        cp -a Test.sh WinterBoard.dylib WinterBoard Info.plist ../pledit/pledit winterboard/Applications/WinterBoard.app
        cp -a control preinst postinst prerm winterboard/DEBIAN
        cp -a Test.sh WinterBoard.dylib WinterBoard Info.plist ../pledit/pledit winterboard/Applications/WinterBoard.app
-       cp -a Wallpaper.png Dock.png winterboard/Library/Themes/com.saurik.WinterBoard.Nature
-       dpkg-deb -b winterboard winterboard_0.9.2498-1_iphoneos-arm.deb
+       dpkg-deb -b winterboard winterboard_0.9.2499-2_iphoneos-arm.deb
 
 .PHONY: all clean package
 
 .PHONY: all clean package