Files
nodeeditor/examples/example2/TextSourceDataModel.hpp
Davide Faconti a8264e391d Remove NodeDataModel::clone() (#164)
* removed NodeDataModel::clone(), using a more classic Factory/Builder pattern.

* trying to make visual studio happy

* Allow the DataModelRegistry to use static method Name() if defined

* use modern type_traits
2018-05-11 11:00:30 +02:00

73 lines
1.2 KiB
C++

#pragma once
#include <QtCore/QObject>
#include <QtWidgets/QLineEdit>
#include "TextData.hpp"
#include <nodes/NodeDataModel>
#include <iostream>
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 TextSourceDataModel : public NodeDataModel
{
Q_OBJECT
public:
TextSourceDataModel();
virtual
~TextSourceDataModel() {}
public:
QString
caption() const override
{ return QString("Text Source"); }
bool
captionVisible() const override { return false; }
static QString
Name()
{ return QString("TextSourceDataModel"); }
QString
name() const override
{ return TextSourceDataModel::Name(); }
public:
unsigned int
nPorts(PortType portType) const override;
NodeDataType
dataType(PortType portType, PortIndex portIndex) const override;
std::shared_ptr<NodeData>
outData(PortIndex port) override;
void
setInData(std::shared_ptr<NodeData>, int) override
{ }
QWidget *
embeddedWidget() override { return _lineEdit; }
private slots:
void
onTextEdited(QString const &string);
private:
QLineEdit * _lineEdit;
};