Files
nodeeditor/examples/calculator/NumberSourceDataModel.hpp
fredakilla 282b439af0 Cleanup Qt keywords (#199)
* Qt no keywords

* replace emit with Q_EMIT

* add QT_NO_KEYWORDS definition to CMakeLists.txt
2019-02-06 22:05:38 +01:00

83 lines
1.4 KiB
C++

#pragma once
#include <QtCore/QObject>
#include <QtWidgets/QLineEdit>
#include <nodes/NodeDataModel>
#include <iostream>
class DecimalData;
using QtNodes::PortType;
using QtNodes::PortIndex;
using QtNodes::NodeData;
using QtNodes::NodeDataType;
using QtNodes::NodeDataModel;
using QtNodes::NodeValidationState;
/// The model dictates the number of inputs and outputs for the Node.
/// In this example it has no logic.
class NumberSourceDataModel
: public NodeDataModel
{
Q_OBJECT
public:
NumberSourceDataModel();
virtual
~NumberSourceDataModel() {}
public:
QString
caption() const override
{ return QStringLiteral("Number Source"); }
bool
captionVisible() const override
{ return false; }
QString
name() const override
{ return QStringLiteral("NumberSource"); }
public:
QJsonObject
save() const override;
void
restore(QJsonObject const &p) override;
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 Q_SLOTS:
void
onTextEdited(QString const &string);
private:
std::shared_ptr<DecimalData> _number;
QLineEdit * _lineEdit;
};