2#include <ossia/editor/loop/loop.hpp>
4#include <ossia-qt/score/qml_autom.hpp>
5#include <ossia-qt/score/qml_cond.hpp>
6#include <ossia-qt/score/qml_interval.hpp>
7#include <ossia-qt/score/qml_sync.hpp>
15class qml_loop :
public qml_process
20 qml_loop(QQuickItem* parent =
nullptr);
23 qml_interval* interval()
const;
24 void setup()
override;
25 std::shared_ptr<ossia::time_process> process()
const override;
27 QQmlScriptString startCond()
const;
28 QQmlScriptString endCond()
const;
29 QQmlScriptString startTrig()
const;
30 QQmlScriptString endTrig()
const;
33 void setInterval(qml_interval* interval);
36 void setStartCond(QQmlScriptString s);
38 void setEndCond(QQmlScriptString s);
40 void setStartTrig(QQmlScriptString s);
42 void setEndTrig(QQmlScriptString s);
46 void intervalChanged(qml_interval* interval)
47 E_SIGNAL(OSSIA_EXPORT, intervalChanged, interval);
48 void startTrigChanged(QQmlScriptString arg_1)
49 E_SIGNAL(OSSIA_EXPORT, startTrigChanged, arg_1);
50 void endTrigChanged(QQmlScriptString arg_1)
51 E_SIGNAL(OSSIA_EXPORT, endTrigChanged, arg_1);
52 void startCondChanged(QQmlScriptString arg_1)
53 E_SIGNAL(OSSIA_EXPORT, startCondChanged, arg_1);
54 void endCondChanged(QQmlScriptString arg_1)
55 E_SIGNAL(OSSIA_EXPORT, endCondChanged, arg_1);
58 void reset_impl()
override;
59 std::shared_ptr<ossia::loop> m_impl;
60 qml_interval* m_interval{};
61 QQmlScriptString m_startCond, m_startTrig, m_endCond, m_endTrig;
64 QQmlScriptString, endCond READ endCond WRITE setStartCond NOTIFY endCondChanged)
68 startCond READ startCond WRITE setStartCond NOTIFY startCondChanged)
71 QQmlScriptString, endTrig READ endTrig WRITE setStartTrig NOTIFY endTrigChanged)
75 startTrig READ startTrig WRITE setStartTrig NOTIFY startTrigChanged)
78 qml_interval*, interval READ interval WRITE setInterval NOTIFY intervalChanged)