2014-01-14 06:48:12 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
#ifndef _MENU_TEST_H_
|
|
|
|
#define _MENU_TEST_H_
|
|
|
|
|
|
|
|
////----#include "cocos2d.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "../BaseTest.h"
|
|
|
|
|
|
|
|
DEFINE_TEST_SUITE(MenuTests);
|
|
|
|
|
|
|
|
class MenuTest : public TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(MenuTest);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
|
|
|
};
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class MenuLayerMainMenu : public Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
protected:
|
2013-06-20 14:17:10 +08:00
|
|
|
MenuItem* _disabledItem;
|
2013-10-23 16:28:54 +08:00
|
|
|
EventListenerTouchOneByOne* _touchListener;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayerMainMenu();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayerMainMenu();
|
|
|
|
|
|
|
|
public:
|
2013-10-23 16:14:03 +08:00
|
|
|
bool onTouchBegan(Touch *touch, Event * event);
|
|
|
|
void onTouchEnded(Touch *touch, Event * event);
|
|
|
|
void onTouchCancelled(Touch *touch, Event * event);
|
|
|
|
void onTouchMoved(Touch *touch, Event * event);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-08 13:55:28 +08:00
|
|
|
void allowTouches(float dt);
|
2014-02-20 10:53:49 +08:00
|
|
|
void menuCallback(Ref* sender);
|
|
|
|
void menuCallbackConfig(Ref* sender);
|
|
|
|
void menuCallbackDisabled(Ref* sender);
|
|
|
|
void menuCallback2(Ref* sender);
|
|
|
|
void menuCallbackPriorityTest(Ref* sender);
|
|
|
|
void menuCallbackBugsTest(Ref *pSender);
|
|
|
|
void onQuit(Ref* sender);
|
|
|
|
void menuMovingCallback(Ref *pSender);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//CREATE_NODE(MenuLayer1);
|
|
|
|
};
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class MenuLayer2 : public Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
protected:
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 _centeredMenu;
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _alignedH;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
void alignMenusH();
|
|
|
|
void alignMenusV();
|
|
|
|
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayer2();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayer2();
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
void menuCallback(Ref* sender);
|
|
|
|
void menuCallbackOpacity(Ref* sender);
|
|
|
|
void menuCallbackAlign(Ref* sender);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
//CREATE_NODE(MenuLayer2);
|
|
|
|
};
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class MenuLayer3 : public Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
protected:
|
2013-06-20 14:17:10 +08:00
|
|
|
MenuItem* _disabledItem;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayer3();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayer3();
|
|
|
|
};
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class MenuLayer4 : public Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
MenuLayer4();
|
2012-04-19 14:35:52 +08:00
|
|
|
~MenuLayer4();
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
void menuCallback(Ref* sender);
|
|
|
|
void backCallback(Ref* sender);
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class BugsTest : public Layer
|
2012-11-19 13:57:54 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
BugsTest();
|
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
void issue1410MenuCallback(Ref *pSender);
|
|
|
|
void issue1410v2MenuCallback(Ref *pSender);
|
|
|
|
void backMenuCallback(Ref *pSender);
|
2012-11-19 13:57:54 +08:00
|
|
|
};
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class RemoveMenuItemWhenMove : public Layer
|
2013-01-17 15:04:48 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
RemoveMenuItemWhenMove();
|
|
|
|
~RemoveMenuItemWhenMove();
|
2013-10-23 16:14:03 +08:00
|
|
|
bool onTouchBegan(Touch *touch, Event *event);
|
|
|
|
void onTouchMoved(Touch *touch, Event *event);
|
2013-01-17 15:04:48 +08:00
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
void goBack(Ref *pSender);
|
2013-01-17 15:04:48 +08:00
|
|
|
|
|
|
|
private:
|
2013-06-20 14:17:10 +08:00
|
|
|
MenuItemFont *item;
|
2013-10-23 11:27:24 +08:00
|
|
|
EventListenerTouchOneByOne* _touchListener;
|
2013-01-17 15:04:48 +08:00
|
|
|
};
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
#endif
|