2013-09-16 20:54:13 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#ifndef __TestCpp__UIScene_Editor__
|
|
|
|
#define __TestCpp__UIScene_Editor__
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#include "cocos2d.h"
|
2014-03-05 21:18:51 +08:00
|
|
|
#include "extensions/cocos-ext.h"
|
2014-03-11 17:13:54 +08:00
|
|
|
#include "ui/CocosGUI.h"
|
2014-03-04 16:51:35 +08:00
|
|
|
#include "cocostudio/CocoStudio.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "BaseTest.h"
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
USING_NS_CC_EXT;
|
|
|
|
using namespace ui;
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
class UIScene_Editor : public TestCase
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
public:
|
2014-03-04 16:51:35 +08:00
|
|
|
UIScene_Editor();
|
|
|
|
~UIScene_Editor();
|
2013-12-23 15:35:35 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
virtual bool init() override;
|
|
|
|
virtual void onEnter() override;
|
2015-03-31 11:22:34 +08:00
|
|
|
virtual void onExit() override;
|
2014-07-01 14:21:27 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
virtual void configureGUIScene();
|
2013-12-23 15:35:35 +08:00
|
|
|
protected:
|
2014-03-04 16:51:35 +08:00
|
|
|
Layer* _touchGroup;
|
|
|
|
Layout* _layout;
|
2015-04-03 14:31:03 +08:00
|
|
|
Text* _sceneTitle;
|
2013-12-23 15:35:35 +08:00
|
|
|
};
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#endif /* defined(__TestCpp__UIScene_Editor__) */
|