2013-09-16 20:54:13 +08:00
|
|
|
#include "UIListViewTest.h"
|
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
using namespace cocos2d::ui;
|
|
|
|
|
2014-03-26 23:33:58 +08:00
|
|
|
const char* font_UIListViewTest = "fonts/Marker Felt.ttf";
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
UIListViewTests::UIListViewTests()
|
|
|
|
{
|
2015-09-09 09:37:51 +08:00
|
|
|
ADD_TEST_CASE(UIListViewTest_Horizontal);
|
|
|
|
ADD_TEST_CASE(UIListViewTest_Vertical);
|
2015-09-04 14:25:21 +08:00
|
|
|
ADD_TEST_CASE(UIListViewTest_ScrollToItemVertical);
|
|
|
|
ADD_TEST_CASE(UIListViewTest_ScrollToItemHorizontal);
|
2015-09-09 09:37:51 +08:00
|
|
|
ADD_TEST_CASE(UIListViewTest_MagneticVertical);
|
|
|
|
ADD_TEST_CASE(UIListViewTest_MagneticHorizontal);
|
2015-07-29 18:43:11 +08:00
|
|
|
ADD_TEST_CASE(Issue12692);
|
2015-08-06 22:50:53 +08:00
|
|
|
ADD_TEST_CASE(Issue8316);
|
2015-04-03 14:31:03 +08:00
|
|
|
}
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
// UIListViewTest_Vertical
|
|
|
|
|
|
|
|
UIListViewTest_Vertical::UIListViewTest_Vertical()
|
2013-12-23 15:35:35 +08:00
|
|
|
: _displayValueLabel(nullptr)
|
2013-09-16 20:54:13 +08:00
|
|
|
{
|
2013-12-23 15:35:35 +08:00
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
UIListViewTest_Vertical::~UIListViewTest_Vertical()
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
2013-09-16 20:54:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool UIListViewTest_Vertical::init()
|
|
|
|
{
|
|
|
|
if (UIScene::init())
|
|
|
|
{
|
2014-06-24 10:18:01 +08:00
|
|
|
Size widgetSize = _widget->getContentSize();
|
2013-12-23 15:35:35 +08:00
|
|
|
|
2014-04-03 11:23:12 +08:00
|
|
|
_displayValueLabel = Text::create("Move by vertical direction", "fonts/Marker Felt.ttf", 32);
|
2014-05-15 01:07:09 +08:00
|
|
|
_displayValueLabel->setAnchorPoint(Vec2(0.5f, -1.0f));
|
|
|
|
_displayValueLabel->setPosition(Vec2(widgetSize.width / 2.0f,
|
2014-04-03 11:23:12 +08:00
|
|
|
widgetSize.height / 2.0f + _displayValueLabel->getContentSize().height * 1.5f));
|
2013-12-23 15:35:35 +08:00
|
|
|
_uiLayer->addChild(_displayValueLabel);
|
|
|
|
|
|
|
|
|
2014-04-03 11:23:12 +08:00
|
|
|
Text* alert = Text::create("ListView vertical", "fonts/Marker Felt.ttf", 30);
|
2013-09-16 20:54:13 +08:00
|
|
|
alert->setColor(Color3B(159, 168, 176));
|
2014-05-15 01:07:09 +08:00
|
|
|
alert->setPosition(Vec2(widgetSize.width / 2.0f,
|
2014-06-24 10:18:01 +08:00
|
|
|
widgetSize.height / 2.0f - alert->getContentSize().height * 3.075f));
|
2013-12-23 15:35:35 +08:00
|
|
|
_uiLayer->addChild(alert);
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
Layout* background = dynamic_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
Size backgroundSize = background->getContentSize();
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
// create list view ex data
|
2014-06-25 16:17:16 +08:00
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
for (int i = 0; i < 20; ++i)
|
2013-09-16 20:54:13 +08:00
|
|
|
{
|
2014-06-25 16:17:16 +08:00
|
|
|
std::string ccstr = StringUtils::format("listview_item_%d", i);
|
|
|
|
_array.push_back(ccstr);
|
2013-09-16 20:54:13 +08:00
|
|
|
}
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Create the list view ex
|
|
|
|
ListView* listView = ListView::create();
|
|
|
|
// set list view ex direction
|
2014-05-12 11:08:10 +08:00
|
|
|
listView->setDirection(ui::ScrollView::Direction::VERTICAL);
|
2013-12-23 15:35:35 +08:00
|
|
|
listView->setBounceEnabled(true);
|
2014-03-11 17:13:54 +08:00
|
|
|
listView->setBackGroundImage("cocosui/green_edit.png");
|
2013-12-23 15:35:35 +08:00
|
|
|
listView->setBackGroundImageScale9Enabled(true);
|
2014-07-10 00:45:27 +08:00
|
|
|
listView->setContentSize(Size(240, 130));
|
2015-07-05 18:25:00 +08:00
|
|
|
listView->setPosition(Vec2((widgetSize - listView->getContentSize()) / 2.0f));
|
2014-06-23 15:21:25 +08:00
|
|
|
listView->addEventListener((ui::ListView::ccListViewCallback)CC_CALLBACK_2(UIListViewTest_Vertical::selectedItemEvent, this));
|
|
|
|
listView->addEventListener((ui::ListView::ccScrollViewCallback)CC_CALLBACK_2(UIListViewTest_Vertical::selectedItemEventScrollView,this));
|
2015-07-04 14:40:47 +08:00
|
|
|
listView->setScrollBarPositionFromCorner(Vec2(7, 7));
|
2013-12-23 15:35:35 +08:00
|
|
|
_uiLayer->addChild(listView);
|
|
|
|
|
|
|
|
|
|
|
|
// create model
|
2014-04-03 11:23:12 +08:00
|
|
|
Button* default_button = Button::create("cocosui/backtotoppressed.png", "cocosui/backtotopnormal.png");
|
2013-12-23 15:35:35 +08:00
|
|
|
default_button->setName("Title Button");
|
|
|
|
|
|
|
|
Layout* default_item = Layout::create();
|
|
|
|
default_item->setTouchEnabled(true);
|
2014-07-10 00:45:27 +08:00
|
|
|
default_item->setContentSize(default_button->getContentSize());
|
2015-07-05 18:25:00 +08:00
|
|
|
default_button->setPosition(Vec2(default_item->getContentSize() / 2.0f));
|
2013-12-23 15:35:35 +08:00
|
|
|
default_item->addChild(default_button);
|
|
|
|
|
|
|
|
// set model
|
|
|
|
listView->setItemModel(default_item);
|
|
|
|
|
|
|
|
// add default item
|
2014-06-25 16:17:16 +08:00
|
|
|
ssize_t count = _array.size();
|
2014-03-04 16:51:35 +08:00
|
|
|
for (int i = 0; i < count / 4; ++i)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
listView->pushBackDefaultItem();
|
|
|
|
}
|
|
|
|
// insert default item
|
2014-03-04 16:51:35 +08:00
|
|
|
for (int i = 0; i < count / 4; ++i)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
listView->insertDefaultItem(0);
|
|
|
|
}
|
|
|
|
|
2014-05-22 17:49:19 +08:00
|
|
|
listView->removeAllChildren();
|
|
|
|
|
|
|
|
Sprite* testSprite = Sprite::create("cocosui/backtotoppressed.png");
|
|
|
|
testSprite->setPosition(Vec2(200,200));
|
|
|
|
listView->addChild(testSprite);
|
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
// add custom item
|
2014-03-04 16:51:35 +08:00
|
|
|
for (int i = 0; i < count / 4; ++i)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
2014-04-03 11:23:12 +08:00
|
|
|
Button* custom_button = Button::create("cocosui/button.png", "cocosui/buttonHighlighted.png");
|
2013-12-23 15:35:35 +08:00
|
|
|
custom_button->setName("Title Button");
|
|
|
|
custom_button->setScale9Enabled(true);
|
2014-07-10 00:45:27 +08:00
|
|
|
custom_button->setContentSize(default_button->getContentSize());
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
Layout *custom_item = Layout::create();
|
2014-07-10 00:45:27 +08:00
|
|
|
custom_item->setContentSize(custom_button->getContentSize());
|
2014-06-24 10:18:01 +08:00
|
|
|
custom_button->setPosition(Vec2(custom_item->getContentSize().width / 2.0f, custom_item->getContentSize().height / 2.0f));
|
2013-12-23 15:35:35 +08:00
|
|
|
custom_item->addChild(custom_button);
|
|
|
|
|
2014-05-22 17:49:19 +08:00
|
|
|
listView->addChild(custom_item);
|
2015-11-24 18:01:50 +08:00
|
|
|
|
|
|
|
auto clippingNode = ClippingNode::create();
|
|
|
|
auto sprite = Sprite::create("cocosui/clippingHead.jpg");
|
|
|
|
clippingNode->addChild(sprite);
|
|
|
|
auto stencil = Sprite::create("cocosui/clippingStencil.jpg");
|
|
|
|
clippingNode->setStencil(stencil);
|
|
|
|
auto custom_item_contentSize = custom_item->getContentSize();
|
|
|
|
clippingNode->setPosition(custom_item_contentSize.width/2, custom_item_contentSize.height/2);
|
|
|
|
clippingNode->setScale(0.5);
|
|
|
|
custom_item->addChild(clippingNode);
|
2013-12-23 15:35:35 +08:00
|
|
|
}
|
|
|
|
// insert custom item
|
|
|
|
Vector<Widget*>& items = listView->getItems();
|
2014-03-20 16:24:55 +08:00
|
|
|
ssize_t items_count = items.size();
|
2014-03-04 16:51:35 +08:00
|
|
|
for (int i = 0; i < count / 4; ++i)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
2014-04-03 11:23:12 +08:00
|
|
|
Button* custom_button = Button::create("cocosui/button.png", "cocosui/buttonHighlighted.png");
|
2013-12-23 15:35:35 +08:00
|
|
|
custom_button->setName("Title Button");
|
|
|
|
custom_button->setScale9Enabled(true);
|
2014-07-10 00:45:27 +08:00
|
|
|
custom_button->setContentSize(default_button->getContentSize());
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
Layout *custom_item = Layout::create();
|
2014-07-10 00:45:27 +08:00
|
|
|
custom_item->setContentSize(custom_button->getContentSize());
|
2014-06-24 10:18:01 +08:00
|
|
|
custom_button->setPosition(Vec2(custom_item->getContentSize().width / 2.0f, custom_item->getContentSize().height / 2.0f));
|
2013-12-23 15:35:35 +08:00
|
|
|
custom_item->addChild(custom_button);
|
2014-05-22 17:49:19 +08:00
|
|
|
custom_item->setTag(1);
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
listView->insertCustomItem(custom_item, items_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
// set item data
|
|
|
|
items_count = items.size();
|
2014-03-04 16:51:35 +08:00
|
|
|
for (int i = 0; i < items_count; ++i)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
Widget* item = listView->getItem(i);
|
|
|
|
Button* button = static_cast<Button*>(item->getChildByName("Title Button"));
|
2014-03-20 16:24:55 +08:00
|
|
|
ssize_t index = listView->getIndex(item);
|
2014-06-25 16:17:16 +08:00
|
|
|
button->setTitleText(_array[index]);
|
2013-12-23 15:35:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove last item
|
2014-05-22 17:49:19 +08:00
|
|
|
listView->removeChildByTag(1);
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
// remove item by index
|
|
|
|
items_count = items.size();
|
|
|
|
listView->removeItem(items_count - 1);
|
|
|
|
|
|
|
|
// set all items layout gravity
|
2014-05-12 09:51:23 +08:00
|
|
|
listView->setGravity(ListView::Gravity::CENTER_VERTICAL);
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
// set items margin
|
|
|
|
listView->setItemsMargin(2.0f);
|
2015-09-09 09:37:51 +08:00
|
|
|
|
2015-07-05 18:25:00 +08:00
|
|
|
// Show the indexes of items on each boundary.
|
|
|
|
{
|
|
|
|
float position = 75;
|
|
|
|
// Labels
|
2015-09-09 09:37:51 +08:00
|
|
|
_indexLabels[0] = Text::create(" ", "fonts/Marker Felt.ttf", 12);
|
|
|
|
_indexLabels[0]->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_indexLabels[0]->setPosition(_uiLayer->getContentSize() / 2 + Size(0, position));
|
|
|
|
_uiLayer->addChild(_indexLabels[0]);
|
|
|
|
_indexLabels[1] = Text::create(" ", "fonts/Marker Felt.ttf", 12);
|
|
|
|
_indexLabels[1]->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_indexLabels[1]->setPosition(_uiLayer->getContentSize() / 2 + Size(140, 0));
|
|
|
|
_uiLayer->addChild(_indexLabels[1]);
|
|
|
|
_indexLabels[2] = Text::create(" ", "fonts/Marker Felt.ttf", 12);
|
|
|
|
_indexLabels[2]->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_indexLabels[2]->setPosition(_uiLayer->getContentSize() / 2 + Size(0, -position));
|
|
|
|
_uiLayer->addChild(_indexLabels[2]);
|
2015-07-05 18:25:00 +08:00
|
|
|
|
|
|
|
// Callback
|
2015-09-09 09:37:51 +08:00
|
|
|
listView->ScrollView::addEventListener([this](Ref* ref, ScrollView::EventType eventType) {
|
2015-07-05 18:25:00 +08:00
|
|
|
ListView* listView = dynamic_cast<ListView*>(ref);
|
|
|
|
if(listView == nullptr || eventType != ScrollView::EventType::CONTAINER_MOVED)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto bottom = listView->getBottommostItemInCurrentView();
|
|
|
|
auto center = listView->getCenterItemInCurrentView();
|
|
|
|
auto top = listView->getTopmostItemInCurrentView();
|
|
|
|
|
2015-09-09 09:37:51 +08:00
|
|
|
_indexLabels[0]->setString(StringUtils::format("Top index=%zd", listView->getIndex(top)));
|
|
|
|
_indexLabels[1]->setString(StringUtils::format("Center\nindex=%zd", listView->getIndex(center)));
|
|
|
|
_indexLabels[2]->setString(StringUtils::format("Bottom index=%zd", listView->getIndex(bottom)));
|
2015-07-05 18:25:00 +08:00
|
|
|
});
|
|
|
|
}
|
2015-09-13 18:21:02 +08:00
|
|
|
|
|
|
|
// Jump to bottom
|
|
|
|
listView->jumpToBottom();
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-12 09:51:23 +08:00
|
|
|
void UIListViewTest_Vertical::selectedItemEvent(Ref *pSender, ListView::EventType type)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
2014-05-12 09:51:23 +08:00
|
|
|
case cocos2d::ui::ListView::EventType::ON_SELECTED_ITEM_START:
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
ListView* listView = static_cast<ListView*>(pSender);
|
2014-03-20 16:34:42 +08:00
|
|
|
CC_UNUSED_PARAM(listView);
|
2014-03-11 11:53:44 +08:00
|
|
|
CCLOG("select child start index = %ld", listView->getCurSelectedIndex());
|
|
|
|
break;
|
2013-12-23 15:35:35 +08:00
|
|
|
}
|
2014-05-12 09:51:23 +08:00
|
|
|
case cocos2d::ui::ListView::EventType::ON_SELECTED_ITEM_END:
|
2014-03-11 11:53:44 +08:00
|
|
|
{
|
|
|
|
ListView* listView = static_cast<ListView*>(pSender);
|
2014-03-20 16:34:42 +08:00
|
|
|
CC_UNUSED_PARAM(listView);
|
2014-03-11 11:53:44 +08:00
|
|
|
CCLOG("select child end index = %ld", listView->getCurSelectedIndex());
|
2013-12-23 15:35:35 +08:00
|
|
|
break;
|
2014-03-11 11:53:44 +08:00
|
|
|
}
|
2013-12-23 15:35:35 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-23 12:09:49 +08:00
|
|
|
void UIListViewTest_Vertical::selectedItemEventScrollView(Ref* pSender, ui::ScrollView::EventType type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case ui::ScrollView::EventType::SCROLL_TO_BOTTOM:
|
|
|
|
CCLOG("SCROLL_TO_BOTTOM");
|
|
|
|
break;
|
|
|
|
case ui::ScrollView::EventType::SCROLL_TO_TOP:
|
|
|
|
CCLOG("SCROLL_TO_TOP");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
// UIListViewTest_Horizontal
|
|
|
|
|
|
|
|
UIListViewTest_Horizontal::UIListViewTest_Horizontal()
|
2016-03-01 00:04:30 +08:00
|
|
|
: _displayValueLabel(nullptr),
|
|
|
|
_spawnCount(5), //swpanCount should > (listview.width + 2 * bufferZone) / tempalteWidth
|
|
|
|
_totalCount(100),
|
|
|
|
_bufferZone(240), //bufferZone should be larger than ListView's viewPort width
|
|
|
|
_updateTimer(0),
|
|
|
|
_updateInterval(1.0 / 24), // you could tweak this value to adjust ListView data update rate
|
|
|
|
_lastContentPosX(0), //use this value to detect if we are scrolling left or right
|
|
|
|
_itemTemplateWidth(0)
|
2013-09-16 20:54:13 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
UIListViewTest_Horizontal::~UIListViewTest_Horizontal()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UIListViewTest_Horizontal::init()
|
|
|
|
{
|
|
|
|
if (UIScene::init())
|
|
|
|
{
|
2014-06-24 10:18:01 +08:00
|
|
|
Size widgetSize = _widget->getContentSize();
|
2013-12-23 15:35:35 +08:00
|
|
|
|
2016-03-01 00:04:30 +08:00
|
|
|
_displayValueLabel = Text::create("Move by horizontal direction",
|
|
|
|
"fonts/Marker Felt.ttf",
|
|
|
|
32);
|
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
_displayValueLabel->setAnchorPoint(Vec2(0.5f, -1.0f));
|
|
|
|
_displayValueLabel->setPosition(Vec2(widgetSize.width / 2.0f,
|
2014-04-03 11:23:12 +08:00
|
|
|
widgetSize.height / 2.0f
|
|
|
|
+ _displayValueLabel->getContentSize().height * 1.5f));
|
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
_uiLayer->addChild(_displayValueLabel);
|
|
|
|
|
|
|
|
|
2014-04-03 11:23:12 +08:00
|
|
|
Text* alert = Text::create("ListView horizontal", "fonts/Marker Felt.ttf", 30);
|
2013-09-16 20:54:13 +08:00
|
|
|
alert->setColor(Color3B(159, 168, 176));
|
2016-03-01 00:04:30 +08:00
|
|
|
alert->setPosition(Vec2(widgetSize.width / 2.0f,
|
|
|
|
widgetSize.height / 2.0f - alert->getContentSize().height * 3.075f));
|
2013-12-23 15:35:35 +08:00
|
|
|
_uiLayer->addChild(alert);
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
|
|
|
|
Layout* background = static_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
Size backgroundSize = background->getContentSize();
|
|
|
|
|
|
|
|
|
2016-03-01 00:04:30 +08:00
|
|
|
// create listview data
|
|
|
|
for (int i = 0; i < _totalCount; ++i)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
2014-06-25 16:17:16 +08:00
|
|
|
std::string ccstr = StringUtils::format("listview_item_%d", i);
|
|
|
|
_array.push_back(ccstr);
|
2013-12-23 15:35:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Create the list view ex
|
2016-03-01 00:04:30 +08:00
|
|
|
_listView = ListView::create();
|
2013-12-23 15:35:35 +08:00
|
|
|
// set list view ex direction
|
2016-03-01 00:04:30 +08:00
|
|
|
_listView->setDirection(ui::ScrollView::Direction::HORIZONTAL);
|
|
|
|
_listView->setTouchEnabled(true);
|
|
|
|
_listView->setBounceEnabled(true);
|
|
|
|
_listView->setBackGroundImage("cocosui/green_edit.png");
|
|
|
|
_listView->setBackGroundImageScale9Enabled(true);
|
|
|
|
_listView->setContentSize(Size(240, 130));
|
|
|
|
_listView->setPosition(Vec2((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
|
|
(backgroundSize.width - _listView->getContentSize().width) / 2.0f,
|
2013-12-23 15:35:35 +08:00
|
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
2016-03-01 00:04:30 +08:00
|
|
|
(backgroundSize.height - _listView->getContentSize().height) / 2.0f));
|
|
|
|
_listView->addEventListener((ui::ListView::ccListViewCallback)CC_CALLBACK_2(UIListViewTest_Horizontal::selectedItemEvent, this));
|
|
|
|
_listView->setScrollBarPositionFromCorner(Vec2(7, 7));
|
|
|
|
_uiLayer->addChild(_listView);
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
// create model
|
2016-03-01 00:04:30 +08:00
|
|
|
Button* default_button = Button::create("cocosui/backtotoppressed.png",
|
|
|
|
"cocosui/backtotopnormal.png");
|
2013-12-23 15:35:35 +08:00
|
|
|
default_button->setName("Title Button");
|
|
|
|
|
|
|
|
Layout *default_item = Layout::create();
|
|
|
|
default_item->setTouchEnabled(true);
|
2014-07-10 00:45:27 +08:00
|
|
|
default_item->setContentSize(default_button->getContentSize());
|
2016-03-01 00:04:30 +08:00
|
|
|
default_button->setPosition(Vec2(default_item->getContentSize().width / 2.0f,
|
|
|
|
default_item->getContentSize().height / 2.0f));
|
2013-12-23 15:35:35 +08:00
|
|
|
default_item->addChild(default_button);
|
|
|
|
|
|
|
|
// set model
|
2016-03-01 00:04:30 +08:00
|
|
|
_listView->setItemModel(default_item);
|
2013-12-23 15:35:35 +08:00
|
|
|
|
2016-03-01 00:04:30 +08:00
|
|
|
// add reusable items
|
|
|
|
for (int i = 0; i < _spawnCount; ++i)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
2016-03-01 00:04:30 +08:00
|
|
|
auto item = default_item->clone();
|
|
|
|
//we use tag to store item ID
|
|
|
|
item->setTag(i);
|
|
|
|
Button* btn = (Button*)item->getChildByName("Title Button");
|
|
|
|
btn->setTitleText(_array.at(i));
|
|
|
|
_listView->pushBackCustomItem(item);
|
2013-12-23 15:35:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// set all items layout gravity
|
2016-03-01 00:04:30 +08:00
|
|
|
_listView->setGravity(ListView::Gravity::CENTER_VERTICAL);
|
2013-12-23 15:35:35 +08:00
|
|
|
|
|
|
|
// set items margin
|
2016-03-01 00:04:30 +08:00
|
|
|
float spacing = 4;
|
|
|
|
_listView->setItemsMargin(spacing);
|
|
|
|
_itemTemplateWidth = default_item->getContentSize().width;
|
|
|
|
this->_reuseItemOffset = (_itemTemplateWidth + spacing) * _spawnCount;
|
|
|
|
//update listview data
|
|
|
|
this->scheduleUpdate();
|
|
|
|
|
2013-09-16 20:54:13 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-12-23 15:35:35 +08:00
|
|
|
}
|
|
|
|
|
2016-03-01 00:04:30 +08:00
|
|
|
float UIListViewTest_Horizontal::getItemPositionXInView(cocos2d::ui::Widget *item) const
|
|
|
|
{
|
|
|
|
auto worldPos = item->getParent()->convertToWorldSpaceAR(item->getPosition());
|
|
|
|
auto viewPos = this->_listView->convertToNodeSpaceAR(worldPos);
|
|
|
|
return viewPos.x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIListViewTest_Horizontal::updateItem(int itemID, int templateID)
|
|
|
|
{
|
|
|
|
auto itemTemplate = _listView->getItems().at(templateID);
|
|
|
|
Button* btn = (Button*)itemTemplate->getChildByName("Title Button");
|
|
|
|
//If you have the item ID and templateID, you could fill in the data here
|
|
|
|
itemTemplate->setTag(itemID);
|
|
|
|
btn->setTitleText(_array.at(itemID));
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIListViewTest_Horizontal::update(float dt)
|
|
|
|
{
|
|
|
|
this->_updateTimer += dt;
|
|
|
|
if (this->_updateTimer < this->_updateInterval) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
float totalWidth = _itemTemplateWidth * _totalCount + (_totalCount - 1) * 4;
|
|
|
|
_listView->getInnerContainer()->setContentSize(Size(totalWidth, _listView->getInnerContainerSize().height));
|
|
|
|
|
|
|
|
this->_updateTimer = 0;
|
|
|
|
auto isRight = this->_listView->getInnerContainer()->getPosition().x < this->_lastContentPosX;
|
|
|
|
auto items = _listView->getItems();
|
|
|
|
|
|
|
|
for (int i = 0; i < _spawnCount; ++i) {
|
|
|
|
auto item = items.at(i);
|
|
|
|
auto itemPos = this->getItemPositionXInView(item);
|
|
|
|
if (isRight) {
|
|
|
|
if (itemPos < -_bufferZone && item->getPosition().x + _reuseItemOffset < totalWidth) {
|
|
|
|
int itemID = item->getTag() + (int)items.size();
|
|
|
|
item->setPositionX(item->getPositionX() + _reuseItemOffset);
|
|
|
|
CCLOG("itemPos = %f, itemID = %d, tempateID = %d", itemPos, itemID, i);
|
|
|
|
this->updateItem(itemID, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (itemPos > _bufferZone && item->getPosition().x - _reuseItemOffset >= 0) {
|
|
|
|
item->setPositionX(item->getPositionX() - _reuseItemOffset);
|
|
|
|
int itemID = item->getTag() - (int)items.size();
|
|
|
|
CCLOG("itemPos = %f, itemID = %d, templateID = %d", itemPos, itemID, i);
|
|
|
|
this->updateItem(itemID, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//update ListView Items
|
|
|
|
this->_lastContentPosX = this->_listView->getInnerContainer()->getPosition().x;
|
|
|
|
}
|
|
|
|
|
2014-05-12 09:51:23 +08:00
|
|
|
void UIListViewTest_Horizontal::selectedItemEvent(Ref *pSender, ListView::EventType type)
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
2014-05-12 09:51:23 +08:00
|
|
|
case cocos2d::ui::ListView::EventType::ON_SELECTED_ITEM_START:
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
ListView* listView = static_cast<ListView*>(pSender);
|
2014-03-20 16:34:42 +08:00
|
|
|
CC_UNUSED_PARAM(listView);
|
2014-03-11 11:53:44 +08:00
|
|
|
CCLOG("select child start index = %ld", listView->getCurSelectedIndex());
|
|
|
|
break;
|
2013-12-23 15:35:35 +08:00
|
|
|
}
|
2014-05-12 09:51:23 +08:00
|
|
|
case cocos2d::ui::ListView::EventType::ON_SELECTED_ITEM_END:
|
2014-03-11 11:53:44 +08:00
|
|
|
{
|
|
|
|
ListView* listView = static_cast<ListView*>(pSender);
|
2014-03-20 16:34:42 +08:00
|
|
|
CC_UNUSED_PARAM(listView);
|
2014-03-11 11:53:44 +08:00
|
|
|
CCLOG("select child end index = %ld", listView->getCurSelectedIndex());
|
2013-12-23 15:35:35 +08:00
|
|
|
break;
|
2014-03-11 11:53:44 +08:00
|
|
|
}
|
2013-12-23 15:35:35 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-07-29 18:43:11 +08:00
|
|
|
|
|
|
|
bool Issue12692::init()
|
|
|
|
{
|
|
|
|
if (UIScene::init())
|
|
|
|
{
|
|
|
|
Size widgetSize = _widget->getContentSize();
|
|
|
|
|
|
|
|
auto label = Text::create("Issue 12692", "fonts/Marker Felt.ttf", 32);
|
2015-09-17 11:20:36 +08:00
|
|
|
label->setName("Text Title");
|
2015-07-29 18:43:11 +08:00
|
|
|
label->setAnchorPoint(Vec2(0.5f, -1.0f));
|
|
|
|
label->setPosition(Vec2(widgetSize.width / 2.0f,
|
|
|
|
widgetSize.height / 2.0f + label->getContentSize().height * 1.5f));
|
|
|
|
_uiLayer->addChild(label);
|
|
|
|
|
|
|
|
|
|
|
|
Text* alert = Text::create("ListView in ListView enable Scissor Clipping", "fonts/Marker Felt.ttf", 20);
|
2015-09-17 11:20:36 +08:00
|
|
|
alert->setName("Text Alert");
|
2015-07-29 18:43:11 +08:00
|
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
|
|
alert->setPosition(Vec2(widgetSize.width / 2.0f,
|
|
|
|
widgetSize.height / 2.0f - alert->getContentSize().height * 3.075f));
|
|
|
|
_uiLayer->addChild(alert);
|
|
|
|
|
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
|
|
|
|
Layout* background = dynamic_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
Size backgroundSize = background->getContentSize();
|
|
|
|
|
|
|
|
// Create the list view ex
|
|
|
|
ListView* listView = ListView::create();
|
|
|
|
// set list view ex direction
|
|
|
|
listView->setDirection(ui::ScrollView::Direction::VERTICAL);
|
|
|
|
listView->setBounceEnabled(true);
|
|
|
|
listView->setBackGroundImage("cocosui/green_edit.png");
|
|
|
|
listView->setBackGroundImageScale9Enabled(true);
|
|
|
|
listView->setContentSize(Size(240, 130));
|
|
|
|
listView->setPosition(Vec2((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
|
|
(backgroundSize.width - listView->getContentSize().width) / 2.0f,
|
|
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
|
|
|
(backgroundSize.height - listView->getContentSize().height) / 2.0f));
|
|
|
|
listView->setScrollBarPositionFromCorner(Vec2(7, 7));
|
|
|
|
listView->setClippingEnabled(true);
|
|
|
|
listView->setClippingType(ui::Layout::ClippingType::SCISSOR);
|
|
|
|
listView->setName("listview1");
|
|
|
|
_uiLayer->addChild(listView);
|
|
|
|
|
|
|
|
auto list2 = ListView::create();
|
|
|
|
list2->setDirection(ui::ScrollView::Direction::VERTICAL);
|
|
|
|
list2->setBounceEnabled(true);
|
|
|
|
list2->setBackGroundImage("cocosui/green_edit.png");
|
|
|
|
list2->setBackGroundImageScale9Enabled(true);
|
|
|
|
list2->setContentSize(Size(240, 65));
|
|
|
|
list2->setClippingEnabled(true);
|
|
|
|
list2->setClippingType(ui::Layout::ClippingType::SCISSOR);
|
|
|
|
list2->setName("listview2");
|
|
|
|
listView->insertCustomItem(list2, 0);
|
|
|
|
|
|
|
|
{
|
|
|
|
Button* default_button = Button::create("cocosui/backtotoppressed.png", "cocosui/backtotopnormal.png");
|
|
|
|
default_button->setName("Title Button");
|
|
|
|
|
|
|
|
Layout* default_item = Layout::create();
|
|
|
|
default_item->setTouchEnabled(true);
|
|
|
|
default_item->setContentSize(default_button->getContentSize());
|
|
|
|
default_button->setPosition(Vec2(default_item->getContentSize().width / 2.0f,
|
|
|
|
default_item->getContentSize().height / 2.0f));
|
|
|
|
default_item->addChild(default_button);
|
|
|
|
|
|
|
|
// set model
|
|
|
|
listView->setItemModel(default_item);
|
|
|
|
listView->pushBackDefaultItem();
|
|
|
|
listView->pushBackDefaultItem();
|
|
|
|
listView->pushBackDefaultItem();
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Button* default_button = Button::create("cocosui/backtotoppressed.png", "cocosui/backtotopnormal.png");
|
2015-09-17 11:20:36 +08:00
|
|
|
default_button->setName("Title Button 2");
|
2015-07-29 18:43:11 +08:00
|
|
|
|
|
|
|
Layout* default_item = Layout::create();
|
|
|
|
default_item->setTouchEnabled(true);
|
|
|
|
default_item->setContentSize(default_button->getContentSize());
|
|
|
|
default_button->setPosition(Vec2(default_item->getContentSize().width / 2.0f,
|
|
|
|
default_item->getContentSize().height / 2.0f));
|
|
|
|
default_item->addChild(default_button);
|
|
|
|
|
|
|
|
// set model
|
|
|
|
list2->setItemModel(default_item);
|
|
|
|
list2->pushBackDefaultItem();
|
|
|
|
list2->pushBackDefaultItem();
|
|
|
|
list2->pushBackDefaultItem();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-06 22:50:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
bool Issue8316::init()
|
|
|
|
{
|
|
|
|
if (UIScene::init())
|
|
|
|
{
|
|
|
|
Size widgetSize = _widget->getContentSize();
|
|
|
|
|
|
|
|
auto label = Text::create("Issue 8316", "fonts/Marker Felt.ttf", 32);
|
|
|
|
label->setAnchorPoint(Vec2(0.5f, -1.0f));
|
|
|
|
label->setPosition(Vec2(widgetSize.width / 2.0f,
|
|
|
|
widgetSize.height / 2.0f + label->getContentSize().height * 1.5f));
|
|
|
|
_uiLayer->addChild(label);
|
|
|
|
|
|
|
|
Text* alert = Text::create("ListView Disable Touch", "fonts/Marker Felt.ttf", 20);
|
|
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
|
|
alert->setPosition(Vec2(widgetSize.width / 2.0f,
|
|
|
|
widgetSize.height / 2.0f - alert->getContentSize().height * 3.075f));
|
|
|
|
_uiLayer->addChild(alert);
|
|
|
|
|
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
|
|
|
|
Layout* background = dynamic_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
Size backgroundSize = background->getContentSize();
|
|
|
|
|
|
|
|
// Create the list view ex
|
|
|
|
ListView* listView = ListView::create();
|
|
|
|
// set list view ex direction
|
|
|
|
listView->setDirection(ui::ScrollView::Direction::VERTICAL);
|
|
|
|
listView->setBounceEnabled(true);
|
|
|
|
listView->setTouchEnabled(false);
|
|
|
|
listView->setBackGroundImage("cocosui/green_edit.png");
|
|
|
|
listView->setBackGroundImageScale9Enabled(true);
|
|
|
|
listView->setContentSize(Size(240, 130));
|
|
|
|
listView->setPosition(Vec2((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
|
|
(backgroundSize.width - listView->getContentSize().width) / 2.0f,
|
|
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
|
|
|
(backgroundSize.height - listView->getContentSize().height) / 2.0f));
|
|
|
|
listView->setScrollBarPositionFromCorner(Vec2(7, 7));
|
|
|
|
listView->setClippingEnabled(true);
|
|
|
|
listView->setClippingType(ui::Layout::ClippingType::SCISSOR);
|
|
|
|
listView->setName("listview1");
|
|
|
|
|
|
|
|
{
|
|
|
|
Button* default_button = Button::create("cocosui/backtotoppressed.png", "cocosui/backtotopnormal.png");
|
|
|
|
default_button->setName("Title Button");
|
|
|
|
|
|
|
|
Layout* default_item = Layout::create();
|
|
|
|
default_item->setTouchEnabled(true);
|
|
|
|
default_item->setContentSize(default_button->getContentSize());
|
|
|
|
default_button->setPosition(Vec2(default_item->getContentSize().width / 2.0f,
|
|
|
|
default_item->getContentSize().height / 2.0f));
|
|
|
|
default_item->addChild(default_button);
|
|
|
|
|
|
|
|
// set model
|
|
|
|
listView->setItemModel(default_item);
|
|
|
|
listView->pushBackDefaultItem();
|
|
|
|
listView->pushBackDefaultItem();
|
|
|
|
listView->pushBackDefaultItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
_uiLayer->addChild(listView);
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-04 14:25:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
// UIListViewTest_ScrollToItem
|
|
|
|
bool UIListViewTest_ScrollToItem::init()
|
|
|
|
{
|
|
|
|
if(!UIScene::init())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Size layerSize = _uiLayer->getContentSize();
|
|
|
|
|
|
|
|
static int NUMBER_OF_ITEMS = 31;
|
|
|
|
_nextIndex = 0;
|
|
|
|
_titleLabel = Text::create("Scroll to item", "fonts/Marker Felt.ttf", 32);
|
|
|
|
_titleLabel->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_titleLabel->setPosition(Vec2(layerSize / 2) + Vec2(0, _titleLabel->getContentSize().height * 3.15f));
|
|
|
|
_uiLayer->addChild(_titleLabel, 3);
|
|
|
|
|
|
|
|
// Create the list view
|
|
|
|
_listView = ListView::create();
|
|
|
|
_listView->setDirection(getListViewDirection());
|
|
|
|
_listView->setBounceEnabled(true);
|
|
|
|
_listView->setBackGroundImage("cocosui/green_edit.png");
|
|
|
|
_listView->setBackGroundImageScale9Enabled(true);
|
|
|
|
_listView->setContentSize(layerSize / 2);
|
|
|
|
_listView->setScrollBarPositionFromCorner(Vec2(7, 7));
|
|
|
|
_listView->setItemsMargin(2.0f);
|
|
|
|
_listView->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_listView->setPosition(layerSize / 2);
|
|
|
|
_uiLayer->addChild(_listView);
|
|
|
|
|
|
|
|
// Guide line for center align
|
|
|
|
{
|
|
|
|
DrawNode* pNode = DrawNode::create();
|
|
|
|
Vec2 center = layerSize / 2;
|
|
|
|
if(getListViewDirection() == ScrollView::Direction::HORIZONTAL)
|
|
|
|
{
|
|
|
|
float halfY = 110;
|
|
|
|
pNode->drawLine(Vec2(center.x, center.y - halfY), Vec2(center.x, center.y + halfY), Color4F(0, 0, 0, 1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float halfX = 150;
|
|
|
|
pNode->drawLine(Vec2(center.x - halfX, center.y), Vec2(center.x + halfX, center.y), Color4F(0, 0, 0, 1));
|
|
|
|
}
|
|
|
|
pNode->setLineWidth(2);
|
|
|
|
_uiLayer->addChild(pNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Button
|
|
|
|
auto pButton = Button::create("cocosui/backtotoppressed.png", "cocosui/backtotopnormal.png");
|
|
|
|
pButton->setAnchorPoint(Vec2::ANCHOR_MIDDLE_LEFT);
|
|
|
|
pButton->setScale(0.8f);
|
|
|
|
pButton->setPosition(Vec2(layerSize / 2) + Vec2(120, -60));
|
|
|
|
pButton->setTitleText(StringUtils::format("Go to '%d'", _nextIndex));
|
|
|
|
pButton->addClickEventListener([this, pButton](Ref*) {
|
|
|
|
_listView->scrollToItem(_nextIndex, Vec2::ANCHOR_MIDDLE, Vec2::ANCHOR_MIDDLE);
|
|
|
|
_nextIndex = (_nextIndex + (NUMBER_OF_ITEMS / 2)) % NUMBER_OF_ITEMS;
|
|
|
|
pButton->setTitleText(StringUtils::format("Go to '%d'", _nextIndex));
|
|
|
|
});
|
|
|
|
_uiLayer->addChild(pButton);
|
|
|
|
|
|
|
|
// Add list items
|
|
|
|
static const Size BUTTON_SIZE(50, 40);
|
|
|
|
for (int i = 0; i < NUMBER_OF_ITEMS; ++i)
|
|
|
|
{
|
|
|
|
auto pButton = Button::create("cocosui/button.png", "cocosui/buttonHighlighted.png");
|
|
|
|
pButton->setContentSize(BUTTON_SIZE);
|
|
|
|
pButton->setScale9Enabled(true);
|
|
|
|
pButton->setTitleText(StringUtils::format("Button-%d", i));
|
|
|
|
_listView->pushBackCustomItem(pButton);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-07-18 19:46:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// UIListViewTest_Magnetic
|
|
|
|
bool UIListViewTest_Magnetic::init()
|
|
|
|
{
|
|
|
|
if(!UIScene::init())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Size layerSize = _uiLayer->getContentSize();
|
|
|
|
|
|
|
|
_titleLabel = Text::create("Magnetic scroll", "fonts/Marker Felt.ttf", 32);
|
|
|
|
_titleLabel->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_titleLabel->setPosition(Vec2(layerSize / 2) + Vec2(0, _titleLabel->getContentSize().height * 3.15f));
|
|
|
|
_uiLayer->addChild(_titleLabel, 3);
|
|
|
|
|
|
|
|
// Create the list view
|
|
|
|
_listView = ListView::create();
|
|
|
|
_listView->setDirection(getListViewDirection());
|
|
|
|
_listView->setBounceEnabled(true);
|
|
|
|
_listView->setBackGroundImage("cocosui/green_edit.png");
|
|
|
|
_listView->setBackGroundImageScale9Enabled(true);
|
|
|
|
_listView->setContentSize(layerSize / 2);
|
|
|
|
_listView->setScrollBarPositionFromCorner(Vec2(7, 7));
|
|
|
|
_listView->setItemsMargin(2.0f);
|
|
|
|
_listView->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_listView->setPosition(layerSize / 2);
|
|
|
|
_uiLayer->addChild(_listView);
|
|
|
|
|
|
|
|
// Guide line for center align
|
|
|
|
{
|
|
|
|
DrawNode* pNode = DrawNode::create();
|
|
|
|
Vec2 center = layerSize / 2;
|
|
|
|
if(getListViewDirection() == ScrollView::Direction::HORIZONTAL)
|
|
|
|
{
|
|
|
|
float halfY = 110;
|
|
|
|
pNode->drawLine(Vec2(center.x, center.y - halfY), Vec2(center.x, center.y + halfY), Color4F(0, 0, 0, 1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
float halfX = 150;
|
|
|
|
pNode->drawLine(Vec2(center.x - halfX, center.y), Vec2(center.x + halfX, center.y), Color4F(0, 0, 0, 1));
|
|
|
|
}
|
|
|
|
pNode->setLineWidth(2);
|
|
|
|
_uiLayer->addChild(pNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show the indexes of items on each boundary.
|
|
|
|
{
|
|
|
|
for(int i = 0; i < 5; ++i)
|
|
|
|
{
|
2015-09-09 09:37:51 +08:00
|
|
|
_indexLabels[i] = Text::create(" ", "fonts/Marker Felt.ttf", 12);
|
|
|
|
_indexLabels[i]->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_uiLayer->addChild(_indexLabels[i]);
|
2015-07-18 19:46:41 +08:00
|
|
|
}
|
|
|
|
float deltaX = 145, deltaY = 90;
|
2015-09-09 09:37:51 +08:00
|
|
|
_indexLabels[0]->setPosition(_uiLayer->getContentSize() / 2 + Size(-deltaX, 0)); // left
|
|
|
|
_indexLabels[1]->setPosition(_uiLayer->getContentSize() / 2 + Size(deltaX, 0)); // right
|
|
|
|
_indexLabels[2]->setPosition(_uiLayer->getContentSize() / 2 + Size(0, deltaY)); // top
|
|
|
|
_indexLabels[3]->setPosition(_uiLayer->getContentSize() / 2 + Size(0, -deltaY)); // bottom
|
|
|
|
_indexLabels[4]->setPosition(_uiLayer->getContentSize() / 2 + Size(deltaX, deltaY)); // center
|
2015-07-18 19:46:41 +08:00
|
|
|
|
|
|
|
// Callback
|
2015-09-09 09:37:51 +08:00
|
|
|
_listView->ScrollView::addEventListener([this](Ref* ref, ScrollView::EventType eventType) {
|
2015-07-18 19:46:41 +08:00
|
|
|
ListView* listView = dynamic_cast<ListView*>(ref);
|
|
|
|
if(listView == nullptr || eventType != ScrollView::EventType::CONTAINER_MOVED)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto left = listView->getLeftmostItemInCurrentView();
|
|
|
|
auto right = listView->getRightmostItemInCurrentView();
|
|
|
|
auto top = listView->getTopmostItemInCurrentView();
|
|
|
|
auto bottom = listView->getBottommostItemInCurrentView();
|
|
|
|
auto center = listView->getCenterItemInCurrentView();
|
|
|
|
|
2015-09-09 09:37:51 +08:00
|
|
|
_indexLabels[0]->setString(StringUtils::format("Left\nindex=%zd", listView->getIndex(left)));
|
|
|
|
_indexLabels[1]->setString(StringUtils::format("RIght\nindex=%zd", listView->getIndex(right)));
|
|
|
|
_indexLabels[2]->setString(StringUtils::format("Top index=%zd", listView->getIndex(top)));
|
|
|
|
_indexLabels[3]->setString(StringUtils::format("Bottom index=%zd", listView->getIndex(bottom)));
|
|
|
|
_indexLabels[4]->setString(StringUtils::format("Center\nindex=%zd", listView->getIndex(center)));
|
2015-07-18 19:46:41 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initial magnetic type
|
2015-09-08 15:55:19 +08:00
|
|
|
_listView->setMagneticType(ListView::MagneticType::NONE);
|
|
|
|
_titleLabel->setString("MagneticType - NONE");
|
2015-07-18 19:46:41 +08:00
|
|
|
|
|
|
|
// Magnetic change button
|
|
|
|
auto pButton = Button::create("cocosui/backtotoppressed.png", "cocosui/backtotopnormal.png");
|
|
|
|
pButton->setAnchorPoint(Vec2::ANCHOR_MIDDLE_LEFT);
|
|
|
|
pButton->setScale(0.8f);
|
|
|
|
pButton->setPosition(Vec2(layerSize / 2) + Vec2(130, -60));
|
|
|
|
pButton->setTitleText("Next Magnetic");
|
|
|
|
pButton->addClickEventListener([this](Ref*) {
|
|
|
|
ListView::MagneticType eCurrentType = _listView->getMagneticType();
|
|
|
|
ListView::MagneticType eNextType;
|
|
|
|
std::string sString;
|
|
|
|
if(eCurrentType == ListView::MagneticType::NONE)
|
2015-09-08 15:55:19 +08:00
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::CENTER;
|
|
|
|
sString = "CENTER";
|
|
|
|
}
|
|
|
|
else if(eCurrentType == ListView::MagneticType::CENTER)
|
2015-07-18 19:46:41 +08:00
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::BOTH_END;
|
|
|
|
sString = "BOTH_END";
|
|
|
|
}
|
|
|
|
else if(eCurrentType == ListView::MagneticType::BOTH_END)
|
|
|
|
{
|
2015-09-08 15:55:19 +08:00
|
|
|
if(getListViewDirection() == ScrollView::Direction::HORIZONTAL)
|
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::LEFT;
|
|
|
|
sString = "LEFT";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::TOP;
|
|
|
|
sString = "TOP";
|
|
|
|
}
|
2015-07-18 19:46:41 +08:00
|
|
|
}
|
2015-09-08 15:55:19 +08:00
|
|
|
else if(eCurrentType == ListView::MagneticType::LEFT)
|
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::RIGHT;
|
|
|
|
sString = "RIGHT";
|
|
|
|
}
|
|
|
|
else if(eCurrentType == ListView::MagneticType::RIGHT)
|
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::NONE;
|
|
|
|
sString = "NONE";
|
|
|
|
}
|
|
|
|
else if(eCurrentType == ListView::MagneticType::TOP)
|
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::BOTTOM;
|
|
|
|
sString = "BOTTOM";
|
|
|
|
}
|
|
|
|
else if(eCurrentType == ListView::MagneticType::BOTTOM)
|
2015-07-18 19:46:41 +08:00
|
|
|
{
|
|
|
|
eNextType = ListView::MagneticType::NONE;
|
|
|
|
sString = "NONE";
|
|
|
|
}
|
|
|
|
_listView->setMagneticType(eNextType);
|
|
|
|
_titleLabel->setString(StringUtils::format("MagneticType - %s", sString.c_str()));
|
|
|
|
});
|
|
|
|
_uiLayer->addChild(pButton);
|
|
|
|
|
|
|
|
// Add list items
|
2015-09-08 15:55:19 +08:00
|
|
|
static const Size BUTTON_SIZE(100, 70);
|
|
|
|
for (int i = 0; i < 40; ++i)
|
2015-07-18 19:46:41 +08:00
|
|
|
{
|
|
|
|
auto pButton = Button::create("cocosui/button.png", "cocosui/buttonHighlighted.png");
|
|
|
|
pButton->setContentSize(BUTTON_SIZE);
|
|
|
|
pButton->setScale9Enabled(true);
|
|
|
|
pButton->setTitleText(StringUtils::format("Button-%d", i));
|
|
|
|
_listView->pushBackCustomItem(pButton);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|