axmol/tools/tolua++/CCLayer.pkg

73 lines
2.1 KiB
Plaintext
Raw Normal View History

2012-02-02 14:26:38 +08:00
class CCLayer : public CCNode
{
2012-06-15 17:26:11 +08:00
void setTouchEnabled(bool bValue);
bool isTouchEnabled();
2012-02-02 14:26:38 +08:00
2012-06-15 17:26:11 +08:00
void setAccelerometerEnabled(bool bValue);
bool isAccelerometerEnabled();
2012-02-02 14:26:38 +08:00
2012-06-15 17:26:11 +08:00
void setKeypadEnabled(bool bValue);
bool isKeypadEnabled();
2012-02-02 14:26:38 +08:00
void registerScriptTouchHandler(LUA_FUNCTION funcID,
2012-02-07 11:43:29 +08:00
bool bIsMultiTouches = false,
2012-02-02 14:26:38 +08:00
int nPriority = 0,
bool bSwallowsTouches = false);
void unregisterScriptTouchHandler();
static CCLayer *create(void);
2012-02-02 14:26:38 +08:00
};
class CCLayerColor : public CCLayer
{
void changeWidth(GLfloat w);
void changeHeight(GLfloat h);
void changeWidthAndHeight(GLfloat w ,GLfloat h);
void setContentSize(const CCSize & var);
2012-02-02 14:26:38 +08:00
void setOpacity(GLubyte var);
GLubyte getOpacity(void);
void setColor(ccColor3B Value);
ccColor3B getColor(void);
void setBlendFunc(ccBlendFunc Value);
ccBlendFunc getBlendFunc(void);
void setOpacityModifyRGB(bool bValue);
bool isOpacityModifyRGB(void);
static CCLayerColor * create(ccColor4B color, GLfloat width, GLfloat height);
static CCLayerColor * create(ccColor4B color);
2012-02-02 14:26:38 +08:00
};
class CCLayerGradient : public CCLayerColor
{
void setStartColor(ccColor3B colors);
ccColor3B getStartColor();
void setEndColor(ccColor3B Value);
ccColor3B getEndColor(void);
void setStartOpacity(GLubyte Value);
GLubyte getStartOpacity(void);
void setEndOpacity(GLubyte Value);
GLubyte getEndOpacity(void);
void setVector(CCPoint Value);
CCPoint getVector(void);
2012-06-15 17:26:11 +08:00
void setCompressedInterpolation(bool Value);
bool isCompressedInterpolation(void);
2012-02-02 14:26:38 +08:00
static CCLayerGradient* create(ccColor4B start, ccColor4B end, CCPoint v);
static CCLayerGradient* create(ccColor4B start, ccColor4B end);
2012-02-02 14:26:38 +08:00
};
class CCLayerMultiplex : public CCLayer
{
void addLayer(CCLayer* layer);
void switchTo(unsigned int n);
void switchToAndReleaseMe(unsigned int n);
static CCLayerMultiplex * create(CCLayer* layer);
static CCLayerMultiplex * createWithLayer(CCLayer* layer);
2012-02-02 14:26:38 +08:00
};