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__UIListViewTest__
|
|
|
|
#define __TestCpp__UIListViewTest__
|
|
|
|
|
|
|
|
#include "../UIScene.h"
|
2014-06-23 12:09:49 +08:00
|
|
|
#include "ui/UIScrollView.h"
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(UIListViewTests);
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
class UIListViewTest_Vertical : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UIListViewTest_Vertical);
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
UIListViewTest_Vertical();
|
|
|
|
~UIListViewTest_Vertical();
|
2015-04-03 14:31:03 +08:00
|
|
|
|
|
|
|
virtual bool init() override;
|
2014-05-12 09:51:23 +08:00
|
|
|
void selectedItemEvent(Ref* pSender, ListView::EventType type);
|
2014-06-23 12:09:49 +08:00
|
|
|
void selectedItemEventScrollView(Ref* pSender, ui::ScrollView::EventType type);
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
protected:
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
Text* _displayValueLabel;
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2014-06-25 16:17:16 +08:00
|
|
|
std::vector<std::string> _array;
|
2013-09-16 20:54:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class UIListViewTest_Horizontal : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UIListViewTest_Horizontal);
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
UIListViewTest_Horizontal();
|
|
|
|
~UIListViewTest_Horizontal();
|
2015-04-03 14:31:03 +08:00
|
|
|
|
|
|
|
virtual bool init() override;
|
2014-05-12 09:51:23 +08:00
|
|
|
void selectedItemEvent(Ref* pSender, ListView::EventType type);
|
2014-06-23 12:09:49 +08:00
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
protected:
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
Text* _displayValueLabel;
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2014-06-25 16:17:16 +08:00
|
|
|
std::vector<std::string> _array;
|
2013-09-16 20:54:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* defined(__TestCpp__UIListViewTest__) */
|