4#include <ossia-qt/score/qml_cond.hpp>
6#include <QQmlExpression>
7#include <QQmlListProperty>
8#include <QQmlScriptString>
17class qml_sync :
public QQuickItem
22 qml_sync(QQuickItem* parent =
nullptr);
25 QQmlScriptString expr()
const;
26 qml_cond* defaultCond();
28 void registerCond(qml_cond*);
29 void unregisterCond(qml_cond*);
32 std::shared_ptr<ossia::time_sync> sync()
const {
return m_impl; }
33 void setSync(std::shared_ptr<ossia::time_sync> s) { m_impl = s; }
36 void setExpr(QQmlScriptString expr);
40 void exprChanged(QQmlScriptString expr) E_SIGNAL(OSSIA_EXPORT, exprChanged, expr);
44 QQmlScriptString m_expr;
45 std::shared_ptr<ossia::time_sync> m_impl;
47 ossia::hash_set<qml_cond*> m_conds;
49 W_PROPERTY(QQmlScriptString, expr READ expr WRITE setExpr NOTIFY exprChanged)