axmol/test_uphone/tests/controller.h

32 lines
671 B
C
Raw Normal View History

#ifndef _CONTROLLER_H_
#define _CONTROLLER_H_
2010-08-25 10:26:31 +08:00
#include "cocos2d.h"
using namespace cocos2d;
2010-09-18 15:21:13 +08:00
#define ITEM_EVERYPAGE 7
2010-08-19 15:55:55 +08:00
class TestController : public CCLayer
{
public:
TestController();
2010-08-19 15:55:55 +08:00
~TestController();
void menuCallback(NSObject * pSender);
2010-08-17 17:38:26 +08:00
void closeCallback(NSObject * pSender);
2010-08-19 15:55:55 +08:00
void nextPageCallback(NSObject * pSender);
void prePageCallback(NSObject * pSender);
void updateItemsText();
static void setDefaultDeviceOrientation(cocos2d::ccDeviceOrientation eOrientation);
2010-08-19 15:55:55 +08:00
private:
2010-10-13 13:07:17 +08:00
CCMenuItemLabel * m_pMenuItems[ITEM_EVERYPAGE];
unsigned int m_nUIDs[ITEM_EVERYPAGE];
};
#endif