You've already forked nodeeditor
mirror of
https://github.com/AxioDL/nodeeditor.git
synced 2026-03-30 11:48:31 -07:00
59 lines
845 B
C++
59 lines
845 B
C++
#include "TextSourceDataModel.hpp"
|
|
|
|
TextSourceDataModel::
|
|
TextSourceDataModel()
|
|
: _lineEdit(new QLineEdit("Default Text"))
|
|
{
|
|
connect(_lineEdit, &QLineEdit::textEdited,
|
|
this, &TextSourceDataModel::onTextEdited);
|
|
}
|
|
|
|
|
|
unsigned int
|
|
TextSourceDataModel::
|
|
nPorts(PortType portType) const
|
|
{
|
|
unsigned int result = 1;
|
|
|
|
switch (portType)
|
|
{
|
|
case PortType::In:
|
|
result = 0;
|
|
break;
|
|
|
|
case PortType::Out:
|
|
result = 1;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
void
|
|
TextSourceDataModel::
|
|
onTextEdited(QString const &string)
|
|
{
|
|
Q_UNUSED(string);
|
|
|
|
emit dataUpdated(0);
|
|
}
|
|
|
|
|
|
NodeDataType
|
|
TextSourceDataModel::
|
|
dataType(PortType, PortIndex) const
|
|
{
|
|
return TextData().type();
|
|
}
|
|
|
|
|
|
std::shared_ptr<NodeData>
|
|
TextSourceDataModel::
|
|
outData(PortIndex)
|
|
{
|
|
return std::make_shared<TextData>(_lineEdit->text());
|
|
}
|