summary refs log tree commit diff stats
path: root/libs/cocos2d/CCMenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/cocos2d/CCMenu.h')
-rwxr-xr-xlibs/cocos2d/CCMenu.h93
1 files changed, 93 insertions, 0 deletions
diff --git a/libs/cocos2d/CCMenu.h b/libs/cocos2d/CCMenu.h new file mode 100755 index 0000000..ef22343 --- /dev/null +++ b/libs/cocos2d/CCMenu.h
@@ -0,0 +1,93 @@
1/*
2 * cocos2d for iPhone: http://www.cocos2d-iphone.org
3 *
4 * Copyright (c) 2008-2010 Ricardo Quesada
5 * Copyright (c) 2011 Zynga Inc.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 *
25 */
26
27
28#import "CCMenuItem.h"
29#import "CCLayer.h"
30
31typedef enum {
32 kCCMenuStateWaiting,
33 kCCMenuStateTrackingTouch
34} tCCMenuState;
35
36enum {
37 //* priority used by the menu for the touches
38 kCCMenuTouchPriority = -128,
39
40 //* priority used by the menu for the mouse
41 kCCMenuMousePriority = -128,
42};
43
44/** A CCMenu
45 *
46 * Features and Limitation:
47 * - You can add MenuItem objects in runtime using addChild:
48 * - But the only accecpted children are MenuItem objects
49 */
50@interface CCMenu : CCLayer <CCRGBAProtocol>
51{
52 tCCMenuState state_;
53 CCMenuItem *selectedItem_;
54 GLubyte opacity_;
55 ccColor3B color_;
56}
57
58/** creates a CCMenu with it's items */
59+ (id) menuWithItems: (CCMenuItem*) item, ... NS_REQUIRES_NIL_TERMINATION;
60
61/** initializes a CCMenu with it's items */
62- (id) initWithItems: (CCMenuItem*) item vaList: (va_list) args;
63
64/** align items vertically */
65-(void) alignItemsVertically;
66/** align items vertically with padding
67 @since v0.7.2
68 */
69-(void) alignItemsVerticallyWithPadding:(float) padding;
70
71/** align items horizontally */
72-(void) alignItemsHorizontally;
73/** align items horizontally with padding
74 @since v0.7.2
75 */
76-(void) alignItemsHorizontallyWithPadding: (float) padding;
77
78
79/** align items in rows of columns */
80-(void) alignItemsInColumns: (NSNumber *) columns, ... NS_REQUIRES_NIL_TERMINATION;
81-(void) alignItemsInColumns: (NSNumber *) columns vaList: (va_list) args;
82
83/** align items in columns of rows */
84-(void) alignItemsInRows: (NSNumber *) rows, ... NS_REQUIRES_NIL_TERMINATION;
85-(void) alignItemsInRows: (NSNumber *) rows vaList: (va_list) args;
86
87
88/** conforms to CCRGBAProtocol protocol */
89@property (nonatomic,readonly) GLubyte opacity;
90/** conforms to CCRGBAProtocol protocol */
91@property (nonatomic,readonly) ccColor3B color;
92
93@end