Files

108 lines
1.9 KiB
C++
Raw Permalink Normal View History

#pragma once
#include <QtCore/QObject>
#include <QtWidgets/QLineEdit>
#include <nodes/NodeDataModel>
#include <iostream>
using QtNodes::PortType;
using QtNodes::PortIndex;
using QtNodes::NodeData;
using QtNodes::NodeDataType;
using QtNodes::NodeDataModel;
using QtNodes::NodeValidationState;
class IntegerData;
class ModuloModel
: public NodeDataModel
{
Q_OBJECT
public:
ModuloModel() = default;
virtual
~ModuloModel() = default;
public:
QString
caption() const override
{ return QStringLiteral("Modulo"); }
bool
captionVisible() const override
{ return true; }
bool
2017-01-31 21:30:56 +01:00
portCaptionVisible(PortType, PortIndex ) const override
{ return true; }
QString
portCaption(PortType portType, PortIndex portIndex) const override
{
switch (portType)
{
2017-01-31 21:30:56 +01:00
case PortType::In:
if (portIndex == 0)
return QStringLiteral("Dividend");
else if (portIndex == 1)
return QStringLiteral("Divisor");
2017-01-31 21:30:56 +01:00
break;
2017-01-31 21:30:56 +01:00
case PortType::Out:
return QStringLiteral("Result");
default:
break;
}
return QString();
}
QString
name() const override
{ return QStringLiteral("Modulo"); }
public:
2017-01-31 21:30:56 +01:00
QJsonObject
save() const 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;
2017-01-31 21:30:56 +01:00
QWidget *
embeddedWidget() override { return nullptr; }
2017-01-31 21:30:56 +01:00
NodeValidationState
validationState() const override;
2017-01-31 21:30:56 +01:00
QString
validationMessage() const override;
private:
std::weak_ptr<IntegerData> _number1;
std::weak_ptr<IntegerData> _number2;
std::shared_ptr<IntegerData> _result;
NodeValidationState modelValidationState = NodeValidationState::Warning;
QString modelValidationError = QStringLiteral("Missing or incorrect inputs");
};