2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __TestCpp__UISliderTest_Editor__
|
|
|
|
#define __TestCpp__UISliderTest_Editor__
|
|
|
|
|
|
|
|
#include "../UIScene_Editor.h"
|
|
|
|
|
|
|
|
class UISliderTest_Editor : public UIScene_Editor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UISliderTest_Editor();
|
|
|
|
~UISliderTest_Editor();
|
|
|
|
bool init();
|
2014-05-12 11:17:06 +08:00
|
|
|
void sliderEvent(Ref* pSender, Slider::EventType type);
|
2014-07-01 15:47:40 +08:00
|
|
|
virtual void switchLoadMethod(Ref* pSender);
|
|
|
|
void configureGUIScene();
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
protected:
|
|
|
|
UI_SCENE_EDITOR_CREATE_FUNC(UISliderTest_Editor)
|
|
|
|
Text* _displayValueLabel;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* defined(__TestCpp__UISliderTest_Editor__) */
|