2#include <ossia-qt/device/qml_device.hpp>
3#include <ossia-qt/score/qml_autom.hpp>
5#include <QQmlScriptString>
17 double gspeed)
override;
19 QQmlExpression* expr{};
27 qml_message() =
default;
28 qml_message(
const qml_message&) =
default;
29 qml_message(qml_message&&) =
default;
30 qml_message& operator=(
const qml_message&) =
default;
31 qml_message& operator=(qml_message&&) =
default;
32 qml_message(qml_device* d, QString addr, QVariant v)
38 qml_device* device()
const {
return m_dev; }
39 void setDevice(qml_device* d) { m_dev = d; }
41 QString address()
const {
return m_addr; }
42 void setAddress(QString d) { m_addr = d; }
44 QVariant value()
const {
return m_value; }
45 void setValue(QVariant d) { m_value = d; }
54 W_PROPERTY(QVariant, value READ value WRITE setValue)
56 W_PROPERTY(QString, address READ address WRITE setAddress)
58 W_PROPERTY(qml_device*, device READ device WRITE setDevice)
60class qml_utils :
public QObject
65 using QObject::QObject;
67 ossia::qt::qml_message message(qml_device* dev, QString addr, QVariant val)
69 return qml_message{dev, addr, val};
72class qml_script :
public qml_process
77 qml_script(QQuickItem* parent =
nullptr);
78 ~qml_script()
override;
80 void setup()
override;
81 std::shared_ptr<ossia::time_process> process()
const override;
83 void setDate(time_value date) { m_date = date; }
84 void setPosition(
double pos) { m_pos = pos; }
86 int32_t date()
const {
return m_date.impl; }
87 double position()
const {
return m_pos; }
88 QQmlScriptString script()
const {
return m_script; }
89 void setScript(QQmlScriptString s) { m_script = s; }
92 void dateChanged(qint32 arg_1) E_SIGNAL(OSSIA_EXPORT, dateChanged, arg_1);
93 void positionChanged(
double arg_1) E_SIGNAL(OSSIA_EXPORT, positionChanged, arg_1);
94 void scriptChanged(QQmlScriptString arg_1)
95 E_SIGNAL(OSSIA_EXPORT, scriptChanged, arg_1);
98 void reset_impl()
override;
99 std::shared_ptr<qml_script_process> m_impl;
101 QQmlScriptString m_script;
105 W_PROPERTY(
double, position READ position NOTIFY positionChanged)
107 W_PROPERTY(qint32, date READ date NOTIFY dateChanged)
109 W_PROPERTY(QQmlScriptString, script READ script WRITE setScript NOTIFY scriptChanged)
114Q_DECLARE_METATYPE(ossia::qt::qml_message)
115Q_DECLARE_METATYPE(ossia::qt::qml_device*)
The time_process class.
Definition time_process.hpp:24
virtual void state(const ossia::token_request &)=0
get a #StateElement from the process depending on its parent #time_interval date
ossia::nullable_variant< message, state, piecewise_message, piecewise_vec_message< 2 >, piecewise_vec_message< 3 >, piecewise_vec_message< 4 > > state_element
Definition state_element_fwd.hpp:28
The time_value class.
Definition ossia/editor/scenario/time_value.hpp:30