author | koda |
Sat, 01 Oct 2011 02:40:26 +0200 | |
changeset 6074 | 047eaed35cbb |
parent 4976 | 088d40d8aba2 |
permissions | -rw-r--r-- |
3924 | 1 |
/* |
2 |
* Hedgewars-iOS, a Hedgewars port for iOS devices |
|
4976 | 3 |
* Copyright (c) 2009-2011 Vittorio Giovara <vittorio.giovara@gmail.com> |
3924 | 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 |
* File created on 03/10/2010. |
|
19 |
*/ |
|
20 |
||
21 |
||
22 |
#import <UIKit/UIKit.h> |
|
23 |
||
24 |
||
25 |
@interface AmmoMenuViewController : UIViewController { |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
26 |
NSArray *buttonsArray; |
3977 | 27 |
NSArray *imagesArray; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
28 |
|
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3978
diff
changeset
|
29 |
UILabel *nameLabel; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3978
diff
changeset
|
30 |
UILabel *extraLabel; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3978
diff
changeset
|
31 |
UILabel *captionLabel; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3978
diff
changeset
|
32 |
|
3940
cc29628976cc
some optimizations to drawing and fetching data of new ammomenu
koda
parents:
3935
diff
changeset
|
33 |
uint8_t *delay; |
3978 | 34 |
BOOL *shouldUpdateImage; |
4946
076767e86f2b
better ammomenu window dragging algorithm (as suggested by iphonedevelopertips)
koda
parents:
4032
diff
changeset
|
35 |
CGPoint currentPoint; |
4032 | 36 |
CGPoint placingPoint; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
37 |
BOOL isVisible; |
3924 | 38 |
} |
39 |
||
3977 | 40 |
@property (retain) NSArray *buttonsArray; |
41 |
@property (retain) NSArray *imagesArray; |
|
3981
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3978
diff
changeset
|
42 |
@property (nonatomic,retain) UILabel *nameLabel; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3978
diff
changeset
|
43 |
@property (nonatomic,retain) UILabel *extraLabel; |
928e2040d34f
add name, caption and description to the new ammomenu
koda
parents:
3978
diff
changeset
|
44 |
@property (nonatomic,retain) UILabel *captionLabel; |
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
45 |
@property (assign) BOOL isVisible; |
3924 | 46 |
|
3989 | 47 |
-(void) buttonPressed:(id) sender; |
48 |
-(void) buttonReleased:(id) sender; |
|
49 |
-(void) buttonCancelled:(id) sender; |
|
3933
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
50 |
-(void) appearInView:(UIView *)container; |
1a873262f5dd
polishing the cocoa ammomenu a little, still requires work
koda
parents:
3924
diff
changeset
|
51 |
-(void) disappear; |
3989 | 52 |
-(void) updateAmmoVisuals; |
53 |
-(void) loadLabels; |
|
54 |
-(void) loadAmmoStuff:(id) object; |
|
3924 | 55 |
|
56 |
@end |