blob: fa6b1aa3bb2f7ea28880f4a9d3956b43ff95ccff [file]
#ifndef _RIVE_CUSTOM_PROPERTY_GROUP_BASE_HPP_
#define _RIVE_CUSTOM_PROPERTY_GROUP_BASE_HPP_
#include "rive/container_component.hpp"
#ifdef WITH_RIVE_EDITOR
#include "editor_native/generated/editor_field_types.hpp"
#endif
namespace rive
{
class CustomPropertyGroupBase : public ContainerComponent
{
protected:
typedef ContainerComponent Super;
public:
static const uint16_t typeKey = 548;
/// Helper to quickly determine if a core object extends another without
/// RTTI at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case CustomPropertyGroupBase::typeKey:
case ContainerComponentBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
public:
Core* clone() const override;
void copy(const CustomPropertyGroupBase& object)
{
RIVE_EDITOR_COPY(object);
ContainerComponent::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override
{
RIVE_EDITOR_DESERIALIZE(propertyKey, reader);
return ContainerComponent::deserialize(propertyKey, reader);
}
#ifdef WITH_RIVE_EDITOR
#include "editor_native/generated/custom_property_group_ext.inl"
#endif
};
} // namespace rive
#endif