author | unc0rr |
Tue, 28 Aug 2012 20:30:57 +0400 | |
changeset 7615 | b39beffcf05e |
parent 6832 | fae8fd118da9 |
child 10108 | c68cf030eded |
permissions | -rw-r--r-- |
6208
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
1 |
/* |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
3 |
* Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com> |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
4 |
* |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
8 |
* |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
12 |
* GNU General Public License for more details. |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
13 |
* |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
17 |
*/ |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
18 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
19 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
20 |
#import <Foundation/Foundation.h> |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
21 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
22 |
|
6209 | 23 |
@interface UIScreen (safe) |
24 |
||
25 |
-(CGFloat) safeScale; |
|
6615 | 26 |
-(CGRect) safeBounds; |
6209 | 27 |
|
28 |
@end |
|
29 |
||
30 |
||
6208
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
31 |
@interface UITableView (backgroundColor) |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
32 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
33 |
-(void) setBackgroundColorForAnyTable:(UIColor *)color; |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
34 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
35 |
@end |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
36 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
37 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
38 |
@interface UIColor (HWColors) |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
39 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
40 |
+(UIColor *)darkYellowColor; |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
41 |
+(UIColor *)lightYellowColor; |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
42 |
+(UIColor *)darkBlueColor; |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
43 |
+(UIColor *)darkBlueColorTransparent; |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
44 |
+(UIColor *)blackColorTransparent; |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
45 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
46 |
@end |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
47 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
48 |
|
6711 | 49 |
@interface UIButton (quickStyle) |
50 |
||
51 |
-(id) initWithFrame:(CGRect) frame andTitle:(NSString *)title; |
|
52 |
||
53 |
@end |
|
54 |
||
55 |
||
6208
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
56 |
@interface UILabel (quickStyle) |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
57 |
|
6711 | 58 |
-(id) initWithFrame:(CGRect)frame andTitle:(NSString *)title; |
59 |
-(id) initWithFrame:(CGRect)frame andTitle:(NSString *)title withBorderWidth:(CGFloat) borderWidth; |
|
60 |
-(id) initWithFrame:(CGRect)frame andTitle:(NSString *)title withBorderWidth:(CGFloat) borderWidth |
|
61 |
withBorderColor:(UIColor *)borderColor withBackgroundColor:(UIColor *)backColor; |
|
6208
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
62 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
63 |
@end |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
64 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
65 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
66 |
@interface NSString (MD5) |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
67 |
|
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
68 |
-(NSString *)MD5hash; |
b831679e9467
move all extra categories in a single source, add caching for HWUtils
koda
parents:
diff
changeset
|
69 |
|
6300 | 70 |
@end |
71 |