2#include <ossia/detail/optional.hpp>
3#include <ossia/network/base/parameter.hpp>
5#include <boost/any.hpp>
13#include <nano_observer.hpp>
26class OSSIA_EXPORT qml_node_base
28 ,
public Nano::Observer
30 W_OBJECT(qml_node_base)
33 qml_node_base(QQuickItem* parent =
nullptr);
37 QObject* device()
const;
42 virtual void resetNode() = 0;
44 qml_node_base* parentNode()
const;
48 QStringList
tags()
const;
49 qint32 refreshRate()
const;
50 qreal stepSize()
const;
51 QVariant defaultValue()
const;
56 QString extendedType()
const;
59 void setNode(QString node);
61 virtual void setDevice(QObject* device);
64 void setParentNode(qml_node_base* parentNode);
65 W_SLOT(setParentNode);
66 void setPriority(qreal priority);
68 void setDescription(QString description);
69 W_SLOT(setDescription);
70 void setTags(QStringList tags);
72 void setExtendedType(QString extendedType);
73 W_SLOT(setExtendedType);
74 void setRefreshRate(qint32 refreshRate);
75 W_SLOT(setRefreshRate);
76 void setStepSize(qreal stepSize);
78 void setDefaultValue(QVariant defaultValue);
79 W_SLOT(setDefaultValue);
80 void setCritical(
bool critical);
82 void setHidden(
bool hidden);
84 void setDisabled(
bool disabled);
86 void setMuted(
bool muted);
90 void nodeChanged(QString node) E_SIGNAL(OSSIA_EXPORT, nodeChanged, node);
91 void deviceChanged(qml_device* device) E_SIGNAL(OSSIA_EXPORT, deviceChanged, device);
92 void pathChanged(QString path) E_SIGNAL(OSSIA_EXPORT, pathChanged, path);
94 void parentNodeChanged(qml_node_base* parentNode)
95 E_SIGNAL(OSSIA_EXPORT, parentNodeChanged, parentNode);
97 void priorityChanged(qreal priority) E_SIGNAL(OSSIA_EXPORT, priorityChanged, priority);
98 void descriptionChanged(QString description)
99 E_SIGNAL(OSSIA_EXPORT, descriptionChanged, description);
100 void extendedTypeChanged(QString extendedType)
101 E_SIGNAL(OSSIA_EXPORT, extendedTypeChanged, extendedType);
102 void tagsChanged(QStringList tags) E_SIGNAL(OSSIA_EXPORT, tagsChanged, tags);
103 void refreshRateChanged(qint32 refreshRate)
104 E_SIGNAL(OSSIA_EXPORT, refreshRateChanged, refreshRate);
105 void stepSizeChanged(qreal stepSize) E_SIGNAL(OSSIA_EXPORT, stepSizeChanged, stepSize);
106 void defaultValueChanged(QVariant defaultValue)
107 E_SIGNAL(OSSIA_EXPORT, defaultValueChanged, defaultValue);
108 void criticalChanged(
bool critical) E_SIGNAL(OSSIA_EXPORT, criticalChanged, critical);
109 void hiddenChanged(
bool hidden) E_SIGNAL(OSSIA_EXPORT, hiddenChanged, hidden);
110 void disabledChanged(
bool d) E_SIGNAL(OSSIA_EXPORT, disabledChanged, d);
111 void mutedChanged(
bool muted) E_SIGNAL(OSSIA_EXPORT, mutedChanged, muted);
114 void applyNodeAttributes();
117 void setPath(QString str);
121 QString m_userRequestedNode;
122 QPointer<qml_device> m_device{};
123 QPointer<qml_node_base> m_parentNode{};
128 QString m_description;
129 QString m_extendedType;
131 QVariant m_defaultValue;
133 qint32 m_refreshRate{};
140 bool m_was_destroyed{
false};
142 W_PROPERTY(
bool, muted READ muted WRITE setMuted NOTIFY mutedChanged, W_Final)
145 bool, disabled READ disabled WRITE setDisabled NOTIFY disabledChanged, W_Final)
147 W_PROPERTY(
bool, hidden READ hidden WRITE setHidden NOTIFY hiddenChanged, W_Final)
150 bool, critical READ critical WRITE setCritical NOTIFY criticalChanged, W_Final)
154 defaultValue READ defaultValue WRITE setDefaultValue NOTIFY defaultValueChanged,
158 qreal, stepSize READ stepSize WRITE setStepSize NOTIFY stepSizeChanged, W_Final)
162 refreshRate READ refreshRate WRITE setRefreshRate NOTIFY refreshRateChanged,
166 qreal, priority READ priority WRITE setPriority NOTIFY priorityChanged, W_Final)
168 W_PROPERTY(QStringList, tags READ tags WRITE setTags NOTIFY tagsChanged, W_Final)
172 extendedType READ extendedType WRITE setExtendedType NOTIFY extendedTypeChanged,
177 description READ description WRITE setDescription NOTIFY descriptionChanged,
182 parentNode READ parentNode WRITE setParentNode NOTIFY parentNodeChanged, W_Final)
184 W_PROPERTY(QObject*, device READ device WRITE setDevice NOTIFY deviceChanged)
186 W_PROPERTY(QString, path READ path NOTIFY pathChanged, W_Final)
188 W_PROPERTY(QString, node READ node WRITE setNode NOTIFY nodeChanged, W_Final)
191class OSSIA_EXPORT qml_property_base :
public qml_node_base
194 void on_node_deleted(
const net::node_base& n);
195 ~qml_property_base();
198 using qml_node_base::qml_node_base;
199 void clearNode(
bool reading);
202 std::optional<ossia::net::parameter_base::iterator> m_callback;
207W_REGISTER_ARGTYPE(ossia::qt::qml_node_base*)
The node_base class.
Definition node.hpp:48
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
std::string description
Human-readable description of a node.
Definition node_attributes.hpp:74
bool disabled
A disabled node.
Definition node_attributes.hpp:95
bool critical
Means that the node is very important, e.g. a "play" message.
Definition node_attributes.hpp:92
bool hidden
Means that the node should not be advertised by default.
Definition node_attributes.hpp:101
std::vector< std::string > tags
Tags applied to a node: {"model", "interesting", ...}.
Definition node_attributes.hpp:71
float priority
When a node must be sent before other.
Definition node_attributes.hpp:77
bool muted
Means that the node should not send / receives network messages.
Definition node_attributes.hpp:104