2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __TestCpp__UILoadingBarTest_Editor__
|
|
|
|
#define __TestCpp__UILoadingBarTest_Editor__
|
|
|
|
|
|
|
|
#include "../UIScene_Editor.h"
|
|
|
|
|
|
|
|
class UILoadingBarTest_Editor : public UIScene_Editor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UILoadingBarTest_Editor();
|
|
|
|
~UILoadingBarTest_Editor();
|
|
|
|
bool init();
|
|
|
|
void update(float delta);
|
2014-05-09 14:30:39 +08:00
|
|
|
void toCocosGUITestScene(Ref* sender, Widget::TouchEventType event);
|
2014-07-01 15:19:40 +08:00
|
|
|
virtual void switchLoadMethod(Ref* pSender);
|
|
|
|
void configureGUIScene();
|
2014-03-04 16:51:35 +08:00
|
|
|
protected:
|
|
|
|
UI_SCENE_EDITOR_CREATE_FUNC(UILoadingBarTest_Editor)
|
|
|
|
int _count;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* defined(__TestCpp__UILoadingBarTest_Editor__) */
|