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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __TestCpp__CocosGUIScene__
|
|
|
|
#define __TestCpp__CocosGUIScene__
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "extensions/cocos-ext.h"
|
2013-09-16 20:54:13 +08:00
|
|
|
#include "../../testBasic.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "gui/CocosGUI.h"
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
using namespace cocos2d;
|
|
|
|
using namespace cocos2d::extension;
|
2013-10-15 18:00:03 +08:00
|
|
|
using namespace gui;
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
class CocosGUITestScene : public TestScene
|
|
|
|
{
|
|
|
|
public:
|
2013-09-19 10:38:21 +08:00
|
|
|
CocosGUITestScene(bool portrait = false);
|
2013-09-16 20:54:13 +08:00
|
|
|
virtual ~CocosGUITestScene();
|
|
|
|
virtual void runThisTest();
|
|
|
|
|
|
|
|
// The CallBack for back to the main menu scene
|
2013-09-19 10:38:21 +08:00
|
|
|
virtual void MainMenuCallback(Object* sender);
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2013-09-19 10:38:21 +08:00
|
|
|
void toCocosGUIExampleScene(Object* sender);
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
void load(Object* pSender, int count);
|
|
|
|
void loadTextureCallBack(Object *obj);
|
|
|
|
|
|
|
|
void menuCallback(Object* pSender);
|
|
|
|
|
|
|
|
UILayer* ul;
|
|
|
|
|
2013-09-19 10:38:21 +08:00
|
|
|
LabelTTF* _label;
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2013-09-19 10:38:21 +08:00
|
|
|
Menu* _itemMenu;
|
2013-09-16 20:54:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* defined(__TestCpp__CocosGUIScene__) */
|