#pragma once #include #include #include "TextData.hpp" #include #include using QtNodes::PortType; using QtNodes::PortIndex; using QtNodes::NodeData; using QtNodes::NodeDataModel; /// The model dictates the number of inputs and outputs for the Node. /// In this example it has no logic. class TextDisplayDataModel : public NodeDataModel { Q_OBJECT public: TextDisplayDataModel(); virtual ~TextDisplayDataModel() {} public: QString caption() const override { return QString("Text Display"); } bool captionVisible() const override { return false; } QString name() const override { return QString("TextDisplayDataModel"); } std::unique_ptr clone() const override { return std::make_unique(); } public: unsigned int nPorts(PortType portType) const override; NodeDataType dataType(PortType portType, PortIndex portIndex) const override; std::shared_ptr outData(PortIndex port) override; void setInData(std::shared_ptr data, int) override { auto textData = std::dynamic_pointer_cast(data); if (textData) { _label->setText(textData->text()); } else { _label->clear(); } _label->adjustSize(); } QWidget * embeddedWidget() override { return _label; } private: QLabel * _label; };