author | koda |
Wed, 28 Mar 2012 01:56:42 +0200 | |
changeset 6832 | fae8fd118da9 |
parent 6700 | e04da46ee43c |
child 6914 | e6094d329108 |
permissions | -rw-r--r-- |
3829 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
6700 | 3 |
* Copyright (c) 2009-2012 Vittorio Giovara <vittorio.giovara@gmail.com> |
3829 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
17 |
*/ |
|
18 |
||
3547 | 19 |
|
20 |
#import "SquareButtonView.h" |
|
21 |
#import <QuartzCore/QuartzCore.h> |
|
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5208
diff
changeset
|
22 |
|
3547 | 23 |
|
24 |
@implementation SquareButtonView |
|
25 |
@synthesize colorArray, selectedColor, ownerDictionary; |
|
26 |
||
27 |
-(id) initWithFrame:(CGRect)frame { |
|
28 |
if ((self = [super initWithFrame:frame])) { |
|
29 |
colorIndex = -1; |
|
30 |
selectedColor = 0; |
|
31 |
||
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5208
diff
changeset
|
32 |
self.colorArray = [HWUtils teamColors]; |
3547 | 33 |
|
34 |
// set the color to the first available one |
|
35 |
[self nextColor]; |
|
3697 | 36 |
|
3547 | 37 |
// this makes the button round and nice with a border |
38 |
[self.layer setCornerRadius:7.0f]; |
|
3697 | 39 |
[self.layer setMasksToBounds:YES]; |
3547 | 40 |
[self.layer setBorderWidth:2]; |
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5208
diff
changeset
|
41 |
[self.layer setBorderColor:[[UIColor darkYellowColor] CGColor]]; |
3697 | 42 |
|
3547 | 43 |
// this changes the color at button press |
44 |
[self addTarget:self action:@selector(nextColor) forControlEvents:UIControlEventTouchUpInside]; |
|
45 |
} |
|
46 |
return self; |
|
47 |
} |
|
48 |
||
49 |
-(void) nextColor { |
|
50 |
colorIndex++; |
|
51 |
||
52 |
if (colorIndex >= [colorArray count]) |
|
53 |
colorIndex = 0; |
|
54 |
||
55 |
NSUInteger color = [[self.colorArray objectAtIndex:colorIndex] unsignedIntValue]; |
|
3697 | 56 |
self.backgroundColor = [UIColor colorWithRed:((color & 0x00FF0000) >> 16)/255.0f |
57 |
green:((color & 0x0000FF00) >> 8)/255.0f |
|
58 |
blue: (color & 0x000000FF)/255.0f |
|
3547 | 59 |
alpha:1.0f]; |
3697 | 60 |
|
3547 | 61 |
[ownerDictionary setObject:[NSNumber numberWithInt:color] forKey:@"color"]; |
62 |
} |
|
63 |
||
64 |
-(void) selectColor:(NSUInteger) color { |
|
65 |
if (color != selectedColor) { |
|
66 |
selectedColor = color; |
|
6078
8c0cc07731e5
headers cleanup, converted some function-only sources into proper class method files, more use of OOP power, removed some 'respondsToSelector' calls, moved defines into their own header, more use of objc categories
koda
parents:
5208
diff
changeset
|
67 |
colorIndex = [self.colorArray indexOfObject:[NSNumber numberWithUnsignedInt:color]]; |
3697 | 68 |
|
69 |
self.backgroundColor = [UIColor colorWithRed:((color & 0x00FF0000) >> 16)/255.0f |
|
70 |
green:((color & 0x0000FF00) >> 8)/255.0f |
|
71 |
blue: (color & 0x000000FF)/255.0f |
|
3547 | 72 |
alpha:1.0f]; |
73 |
} |
|
74 |
} |
|
75 |
||
76 |
-(void) dealloc { |
|
5208 | 77 |
releaseAndNil(ownerDictionary); |
78 |
releaseAndNil(colorArray); |
|
3547 | 79 |
[super dealloc]; |
80 |
} |
|
81 |
||
82 |
||
83 |
@end |