You've already forked nodeeditor
mirror of
https://github.com/AxioDL/nodeeditor.git
synced 2026-03-30 11:48:31 -07:00
49 lines
651 B
C++
49 lines
651 B
C++
#include "TextDisplayDataModel.hpp"
|
|
|
|
TextDisplayDataModel::
|
|
TextDisplayDataModel()
|
|
: _label(new QLabel("Resulting Text"))
|
|
{
|
|
_label->setMargin(3);
|
|
}
|
|
|
|
|
|
unsigned int
|
|
TextDisplayDataModel::
|
|
nPorts(PortType portType) const
|
|
{
|
|
unsigned int result = 1;
|
|
|
|
switch (portType)
|
|
{
|
|
case PortType::In:
|
|
result = 1;
|
|
break;
|
|
|
|
case PortType::Out:
|
|
result = 0;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
NodeDataType
|
|
TextDisplayDataModel::
|
|
dataType(PortType, PortIndex) const
|
|
{
|
|
return TextData().type();
|
|
}
|
|
|
|
|
|
std::shared_ptr<NodeData>
|
|
TextDisplayDataModel::
|
|
outData(PortIndex)
|
|
{
|
|
std::shared_ptr<NodeData> ptr;
|
|
return ptr;
|
|
}
|