blob: 2c73dc89786ab0423b2ee1d184defaa06334dafe [file] [log] [blame]
#include "rive/data_bind/context/context_value_string.hpp"
#include "rive/data_bind/data_values/data_value_string.hpp"
#include "rive/generated/core_registry.hpp"
using namespace rive;
DataBindContextValueString::DataBindContextValueString(ViewModelInstanceValue* source,
DataConverter* converter) :
DataBindContextValue(source, converter)
{}
void DataBindContextValueString::apply(Core* target, uint32_t propertyKey, bool isMainDirection)
{
updateSourceValue();
auto value = calculateValue<DataValueString, std::string>(m_dataValue, isMainDirection);
CoreRegistry::setString(target, propertyKey, value);
}
DataValue* DataBindContextValueString::getTargetValue(Core* target, uint32_t propertyKey)
{
auto value = CoreRegistry::getString(target, propertyKey);
return new DataValueString(value);
}