mirror of https://github.com/axmolengine/axmol.git
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
/*
|
|
typedef enum
|
|
{
|
|
kCCMenuStateWaiting,
|
|
kCCMenuStateTrackingTouch
|
|
} tCCMenuState;
|
|
|
|
enum {
|
|
//* priority used by the menu for the event handler
|
|
kCCMenuHandlerPriority = -128,
|
|
};
|
|
*/
|
|
class CCMenu : public CCLayer
|
|
{
|
|
void alignItemsVertically();
|
|
void alignItemsVerticallyWithPadding(float padding);
|
|
void alignItemsHorizontally();
|
|
void alignItemsHorizontallyWithPadding(float padding);
|
|
// void alignItemsInColumns(unsigned int columns, va_list args);
|
|
// void alignItemsInRows(unsigned int rows, va_list args);
|
|
|
|
setHandlerPriority(int newPriority);
|
|
|
|
void addChild(CCMenuItem* child, int zOrder = 0, int tag = -1);
|
|
|
|
void setOpacity(GLubyte opacity);
|
|
GLubyte getOpacity(void);
|
|
void setColor(ccColor3B color);
|
|
ccColor3B getColor(void);
|
|
|
|
void setOpacityModifyRGB(bool bValue);
|
|
bool isOpacityModifyRGB(void);
|
|
|
|
bool isEnabled();
|
|
void setEnabled(bool value);
|
|
|
|
static CCMenu* create();
|
|
static CCMenu* createWithItem(CCMenuItem* item);
|
|
static CCMenu* createWithArray(CCArray* pArrayOfItems);
|
|
};
|