2013-09-16 20:54:13 +08:00
|
|
|
/****************************************************************************
|
2014-03-04 16:51:35 +08:00
|
|
|
Copyright (c) 2014 cocos2d-x.org
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#ifndef __TestCpp__SliderReader__
|
|
|
|
#define __TestCpp__SliderReader__
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2014-11-21 15:15:38 +08:00
|
|
|
#include "cocostudio/WidgetReader/WidgetReader.h"
|
2014-07-21 17:45:56 +08:00
|
|
|
#include "cocostudio/CocosStudioExport.h"
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
namespace cocostudio
|
2013-09-16 20:54:13 +08:00
|
|
|
{
|
2014-07-21 17:45:56 +08:00
|
|
|
class CC_STUDIO_DLL SliderReader : public WidgetReader
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
2014-11-21 15:15:38 +08:00
|
|
|
DECLARE_CLASS_NODE_READER_INFO
|
2014-03-04 16:51:35 +08:00
|
|
|
|
2014-11-21 15:15:38 +08:00
|
|
|
public:
|
2014-03-04 16:51:35 +08:00
|
|
|
SliderReader();
|
|
|
|
virtual ~SliderReader();
|
|
|
|
|
|
|
|
static SliderReader* getInstance();
|
2015-03-30 16:46:33 +08:00
|
|
|
static void destroyInstance();
|
2014-03-04 16:51:35 +08:00
|
|
|
|
2014-03-06 16:15:03 +08:00
|
|
|
virtual void setPropsFromJsonDictionary(cocos2d::ui::Widget* widget, const rapidjson::Value& options);
|
2014-12-01 12:46:29 +08:00
|
|
|
virtual void setPropsFromBinary(cocos2d::ui::Widget* widget, CocoLoader* cocoLoader, stExpCocoNode* pCocoNode) ;
|
2014-11-21 15:15:38 +08:00
|
|
|
flatbuffers::Offset<flatbuffers::Table> createOptionsWithFlatBuffers(const tinyxml2::XMLElement* objectData,
|
|
|
|
flatbuffers::FlatBufferBuilder* builder);
|
|
|
|
void setPropsWithFlatBuffers(cocos2d::Node* node, const flatbuffers::Table* sliderOptions);
|
2014-11-26 11:50:42 +08:00
|
|
|
cocos2d::Node* createNodeWithFlatBuffers(const flatbuffers::Table* sliderOptions);
|
2014-11-21 15:15:38 +08:00
|
|
|
|
|
|
|
int getResourceType(std::string key);
|
2014-06-05 10:25:08 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
};
|
|
|
|
}
|
2013-09-16 20:54:13 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#endif /* defined(__TestCpp__SliderReader__) */
|