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__UIPageViewTest__
|
|
|
|
#define __TestCpp__UIPageViewTest__
|
|
|
|
|
|
|
|
#include "../UIScene.h"
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(UIPageViewTests);
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
class UIPageViewTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UIPageViewTest);
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
UIPageViewTest();
|
|
|
|
~UIPageViewTest();
|
2015-04-03 14:31:03 +08:00
|
|
|
virtual bool init() override;
|
2015-09-16 17:59:56 +08:00
|
|
|
|
2016-08-04 09:51:54 +08:00
|
|
|
void pageViewEvent(cocos2d::Ref* sender, cocos2d::ui::PageViewEventType type);
|
2015-09-16 17:59:56 +08:00
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
protected:
|
2015-09-16 17:59:56 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
2013-09-16 20:54:13 +08:00
|
|
|
};
|
|
|
|
|
2014-07-07 15:31:06 +08:00
|
|
|
class UIPageViewButtonTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UIPageViewButtonTest);
|
|
|
|
|
2014-07-07 15:31:06 +08:00
|
|
|
UIPageViewButtonTest();
|
|
|
|
~UIPageViewButtonTest();
|
2015-04-03 14:31:03 +08:00
|
|
|
virtual bool init() override;
|
2014-07-07 15:31:06 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void pageViewEvent(cocos2d::Ref* sender, cocos2d::ui::PageView::EventType type);
|
|
|
|
void onButtonClicked(cocos2d::Ref* sender, cocos2d::ui::Widget::TouchEventType type);
|
2014-07-07 15:31:06 +08:00
|
|
|
protected:
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
2014-07-07 15:31:06 +08:00
|
|
|
};
|
|
|
|
|
2014-08-15 15:28:28 +08:00
|
|
|
class UIPageViewTouchPropagationTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UIPageViewTouchPropagationTest);
|
|
|
|
|
2014-08-15 15:28:28 +08:00
|
|
|
UIPageViewTouchPropagationTest();
|
|
|
|
~UIPageViewTouchPropagationTest();
|
2015-04-03 14:31:03 +08:00
|
|
|
virtual bool init() override;
|
2014-08-15 15:28:28 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void pageViewEvent(cocos2d::Ref* sender, cocos2d::ui::PageView::EventType type);
|
|
|
|
void onButtonClicked(cocos2d::Ref* sender, cocos2d::ui::Widget::TouchEventType type);
|
2014-08-15 15:28:28 +08:00
|
|
|
|
|
|
|
protected:
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
2014-08-15 15:28:28 +08:00
|
|
|
};
|
|
|
|
|
2014-10-10 16:29:33 +08:00
|
|
|
class UIPageViewDynamicAddAndRemoveTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UIPageViewDynamicAddAndRemoveTest);
|
|
|
|
|
2014-10-10 16:29:33 +08:00
|
|
|
UIPageViewDynamicAddAndRemoveTest();
|
|
|
|
~UIPageViewDynamicAddAndRemoveTest();
|
2015-04-03 14:31:03 +08:00
|
|
|
virtual bool init() override;
|
2014-10-10 16:29:33 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void pageViewEvent(cocos2d::Ref* sender, cocos2d::ui::PageView::EventType type);
|
|
|
|
void onButtonClicked(cocos2d::Ref* sender, cocos2d::ui::Widget::TouchEventType type);
|
2014-10-10 16:29:33 +08:00
|
|
|
|
|
|
|
protected:
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
2014-10-10 16:29:33 +08:00
|
|
|
};
|
|
|
|
|
2015-07-15 17:02:02 +08:00
|
|
|
class UIPageViewJumpToPageTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(UIPageViewJumpToPageTest);
|
|
|
|
|
|
|
|
UIPageViewJumpToPageTest();
|
|
|
|
~UIPageViewJumpToPageTest();
|
|
|
|
virtual bool init() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
|
|
|
};
|
|
|
|
|
2015-08-01 18:18:46 +08:00
|
|
|
class UIPageViewVerticalTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(UIPageViewVerticalTest);
|
|
|
|
|
|
|
|
UIPageViewVerticalTest();
|
|
|
|
~UIPageViewVerticalTest();
|
|
|
|
virtual bool init() override;
|
|
|
|
|
|
|
|
void pageViewEvent(cocos2d::Ref* sender, cocos2d::ui::PageView::EventType type);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
|
|
|
};
|
|
|
|
|
2015-08-06 22:50:53 +08:00
|
|
|
class UIPageViewDisableTouchTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(UIPageViewDisableTouchTest);
|
|
|
|
|
|
|
|
UIPageViewDisableTouchTest();
|
|
|
|
~UIPageViewDisableTouchTest();
|
|
|
|
virtual bool init() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
|
|
|
};
|
|
|
|
|
2015-12-14 15:29:02 +08:00
|
|
|
class UIPageViewChildSizeTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(UIPageViewChildSizeTest);
|
|
|
|
|
|
|
|
UIPageViewChildSizeTest();
|
|
|
|
~UIPageViewChildSizeTest();
|
|
|
|
virtual bool init() override;
|
|
|
|
|
|
|
|
void pageViewEvent(cocos2d::Ref* sender, cocos2d::ui::PageView::EventType type);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
|
|
|
};
|
|
|
|
|
2016-04-11 17:29:02 +08:00
|
|
|
class UIPageViewIndicatorTest : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(UIPageViewIndicatorTest);
|
|
|
|
|
|
|
|
UIPageViewIndicatorTest();
|
|
|
|
~UIPageViewIndicatorTest();
|
|
|
|
virtual bool init() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
cocos2d::ui::Text* _displayValueLabel;
|
|
|
|
};
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
#endif /* defined(__TestCpp__UIPageViewTest__) */
|