2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include "ScrollViewReader.h"
|
2014-03-11 17:13:54 +08:00
|
|
|
#include "ui/UIScrollView.h"
|
2014-06-05 10:25:08 +08:00
|
|
|
#include "cocostudio/CocoLoader.h"
|
2014-03-04 16:51:35 +08:00
|
|
|
|
2014-03-06 16:15:03 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
using namespace ui;
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
namespace cocostudio
|
|
|
|
{
|
|
|
|
static ScrollViewReader* instanceScrollViewReader = NULL;
|
|
|
|
|
|
|
|
IMPLEMENT_CLASS_WIDGET_READER_INFO(ScrollViewReader)
|
|
|
|
|
|
|
|
ScrollViewReader::ScrollViewReader()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollViewReader::~ScrollViewReader()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ScrollViewReader* ScrollViewReader::getInstance()
|
|
|
|
{
|
|
|
|
if (!instanceScrollViewReader)
|
|
|
|
{
|
|
|
|
instanceScrollViewReader = new ScrollViewReader();
|
|
|
|
}
|
|
|
|
return instanceScrollViewReader;
|
|
|
|
}
|
|
|
|
|
2014-06-05 10:25:08 +08:00
|
|
|
void ScrollViewReader::setPropsFromBinary(cocos2d::ui::Widget *widget, CocoLoader *pCocoLoader, stExpCocoNode *pCocoNode)
|
|
|
|
{
|
2014-06-11 09:35:24 +08:00
|
|
|
//TODO::need to refactor...
|
2014-06-05 10:25:08 +08:00
|
|
|
LayoutReader::setPropsFromBinary(widget, pCocoLoader, pCocoNode);
|
|
|
|
|
|
|
|
ScrollView* scrollView = static_cast<ScrollView*>(widget);
|
|
|
|
|
|
|
|
stExpCocoNode *stChildArray = pCocoNode->GetChildArray();
|
2014-06-11 09:35:24 +08:00
|
|
|
float innerWidth;
|
|
|
|
float innerHeight;
|
2014-06-05 10:25:08 +08:00
|
|
|
for (int i = 0; i < pCocoNode->GetChildNum(); ++i) {
|
|
|
|
std::string key = stChildArray[i].GetName(pCocoLoader);
|
|
|
|
std::string value = stChildArray[i].GetValue();
|
2014-06-18 14:44:00 +08:00
|
|
|
if (key == "innerWidth") {
|
2014-06-11 09:35:24 +08:00
|
|
|
innerWidth = valueToFloat(value);
|
2014-06-05 10:25:08 +08:00
|
|
|
}
|
|
|
|
else if(key == "innerHeight"){
|
2014-06-11 09:35:24 +08:00
|
|
|
innerHeight = valueToFloat(value);
|
2014-06-05 10:25:08 +08:00
|
|
|
}else if(key == "direction"){
|
2014-06-18 14:35:43 +08:00
|
|
|
scrollView->setDirection((ScrollView::Direction)valueToInt(value));
|
2014-06-05 10:25:08 +08:00
|
|
|
}else if(key == "bounceEnable"){
|
|
|
|
scrollView->setBounceEnabled(valueToBool(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
} //end of for loop
|
2014-06-11 09:35:24 +08:00
|
|
|
scrollView->setInnerContainerSize(Size(innerWidth, innerHeight));
|
2014-06-05 10:25:08 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
void ScrollViewReader::setPropsFromJsonDictionary(Widget *widget, const rapidjson::Value &options)
|
|
|
|
{
|
|
|
|
LayoutReader::setPropsFromJsonDictionary(widget, options);
|
|
|
|
|
|
|
|
|
|
|
|
ScrollView* scrollView = static_cast<ScrollView*>(widget);
|
|
|
|
float innerWidth = DICTOOL->getFloatValue_json(options, "innerWidth");
|
|
|
|
float innerHeight = DICTOOL->getFloatValue_json(options, "innerHeight");
|
|
|
|
scrollView->setInnerContainerSize(Size(innerWidth, innerHeight));
|
|
|
|
int direction = DICTOOL->getFloatValue_json(options, "direction");
|
2014-05-12 11:08:10 +08:00
|
|
|
scrollView->setDirection((ScrollView::Direction)direction);
|
2014-03-04 16:51:35 +08:00
|
|
|
scrollView->setBounceEnabled(DICTOOL->getBooleanValue_json(options, "bounceEnable"));
|
|
|
|
|
|
|
|
|
|
|
|
LayoutReader::setColorPropsFromJsonDictionary(widget, options);
|
|
|
|
}
|
|
|
|
}
|