removed mods directory from the ATutor codebase
[atutor.git] / mods / atsocial_iphone_app / Classes / StyleSheet.m
diff --git a/mods/atsocial_iphone_app/Classes/StyleSheet.m b/mods/atsocial_iphone_app/Classes/StyleSheet.m
deleted file mode 100644 (file)
index 0213c5f..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-//  StyleSheet.m
-//  ATutor
-//
-//  Created by Quang Anh Do on 25/05/2010.
-//  Copyright 2010 Quang Anh Do. All rights reserved.
-//
-
-#import "StyleSheet.h"
-
-
-@implementation StyleSheet
-
-- (TTStyle*)launcherButton:(UIControlState)state {
-       return
-    [TTPartStyle styleWithName:@"image" style:TTSTYLESTATE(launcherButtonImage:, state) next:
-        [TTTextStyle styleWithFont:[UIFont boldSystemFontOfSize:11] color:[UIColor blackColor]
-                               minimumFontSize:11 shadowColor:nil
-                                  shadowOffset:CGSizeZero next:nil]];
-}
-
-- (TTStyle*)launcherPageDot:(UIControlState)state {
-       if (state != UIControlStateSelected) {
-               return [self pageDotWithColor:[UIColor whiteColor]];
-       } else {
-               return [self pageDotWithColor:[UIColor colorWithRed:0.227 green:0.455 blue:0.647 alpha:1.000]];
-       }
-}
-
-@end