blob: 6fd3a5df6002ab15d19cd9d26b049e4a7221b905 [file] [log] [blame]
#ifndef _RIVE_NESTED_TRIGGER_BASE_HPP_
#define _RIVE_NESTED_TRIGGER_BASE_HPP_
#include "rive/animation/nested_input.hpp"
#include "rive/core/field_types/core_callback_type.hpp"
namespace rive
{
class NestedTriggerBase : public NestedInput
{
protected:
typedef NestedInput Super;
public:
static const uint16_t typeKey = 122;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case NestedTriggerBase::typeKey:
case NestedInputBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t firePropertyKey = 401;
public:
virtual void fire(const CallbackData& value) = 0;
Core* clone() const override;
protected:
};
} // namespace rive
#endif