2021-12-31 15:49:45 +08:00
|
|
|
/****************************************************************************
|
2019-11-23 20:27:39 +08:00
|
|
|
Copyright (c) 2014 cocos2d-x.org
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
https://axys1.github.io/
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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__CheckBoxReader__
|
|
|
|
#define __TestCpp__CheckBoxReader__
|
|
|
|
|
2020-10-21 10:12:00 +08:00
|
|
|
#include "WidgetReader/WidgetReader.h"
|
|
|
|
#include "CocosStudioExport.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
namespace cocostudio
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
class CCS_DLL CheckBoxReader : public WidgetReader
|
|
|
|
{
|
|
|
|
DECLARE_CLASS_NODE_READER_INFO
|
|
|
|
|
|
|
|
public:
|
|
|
|
CheckBoxReader();
|
|
|
|
virtual ~CheckBoxReader();
|
|
|
|
|
|
|
|
static CheckBoxReader* getInstance();
|
|
|
|
/** @deprecated Use method destroyInstance() instead */
|
2022-07-16 10:43:05 +08:00
|
|
|
AX_DEPRECATED_ATTRIBUTE static void purge();
|
2021-12-25 10:04:45 +08:00
|
|
|
static void destroyInstance();
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
virtual void setPropsFromJsonDictionary(ax::ui::Widget* widget, const rapidjson::Value& options);
|
|
|
|
virtual void setPropsFromBinary(ax::ui::Widget* widget, CocoLoader* cocoLoader, stExpCocoNode* pCocoNode);
|
2021-12-25 10:04:45 +08:00
|
|
|
flatbuffers::Offset<flatbuffers::Table> createOptionsWithFlatBuffers(pugi::xml_node objectData,
|
|
|
|
flatbuffers::FlatBufferBuilder* builder);
|
2022-08-08 18:02:17 +08:00
|
|
|
void setPropsWithFlatBuffers(ax::Node* node, const flatbuffers::Table* checkBoxOptions);
|
|
|
|
ax::Node* createNodeWithFlatBuffers(const flatbuffers::Table* checkBoxOptions);
|
2021-12-31 15:49:45 +08:00
|
|
|
virtual int getResourceType(std::string_view key);
|
2021-12-25 10:04:45 +08:00
|
|
|
};
|
|
|
|
} // namespace cocostudio
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
#endif /* defined(__TestCpp__CheckBoxReader__) */
|