33 std::unique_ptr<Macro> m_macro;
37 std::unique_ptr<Macro>& macro;
54 QString deviceToJson(QString addr);
57 QString deviceToOSCQuery(QString addr);
58 W_SLOT(deviceToOSCQuery)
60 void createDevice(QString name, QString uuid, QJSValue obj);
63 void createOSCDevice(QString name, QString host,
int in,
int out);
64 W_SLOT(createOSCDevice)
66 void connectOSCQueryDevice(QString name, QString host);
67 W_SLOT(connectOSCQueryDevice)
69 void removeDevice(QString name);
72 void createQMLWebSocketDevice(QString name, QString text);
73 W_SLOT(createQMLWebSocketDevice)
75 void createQMLSerialDevice(QString name, QString port, QString text);
76 W_SLOT(createQMLSerialDevice)
79 W_SLOT(enumerateDevices, ())
82 W_SLOT(enumerateDevices, (
const QString&))
85 W_SLOT(listenDevice, (
const QString&))
87 void iterateDevice(
const QString& name,
const QJSValue& op);
88 W_SLOT(iterateDevice, (
const QString&,
const QJSValue&))
90 void setDeviceLearn(
const QString& name,
bool learn);
91 W_SLOT(setDeviceLearn, (
const QString&,
bool))
95 void createAddress(QString addr, QString type);
98 QObject* createProcess(QObject* interval, QString name, QString data);
101 void setName(QObject* sel, QString new_name);
104 QObject* createBox(QObject* obj, QString startTime, QString duration,
double y);
105 W_SLOT(createBox, (QObject*, QString, QString,
double))
108 createBox(QObject* obj,
double startTimeFlicks,
double durationFlicks,
double y);
109 W_SLOT(createBox, (QObject*,
double,
double,
double))
111 QObject* createState(QObject* ev,
double y);
114 QObject* createIntervalAfter(QObject* obj, QString duration,
double y);
115 W_SLOT(createIntervalAfter)
117 QObject* createIntervalBetween(QObject* startState, QObject* endState);
118 W_SLOT(createIntervalBetween)
120 QObject* port(QObject* obj, QString name);
123 QObject* inlet(QObject* obj,
int index);
126 int inlets(QObject* obj);
129 QObject* outlet(QObject* obj,
int index);
132 int outlets(QObject* obj);
135 void setAddress(QObject* obj, QString addr);
138 void setValue(QObject* obj,
double value);
139 W_SLOT(setValue, (QObject*,
double))
141 void setValue(QObject* obj, QString value);
142 W_SLOT(setValue, (QObject*, QString))
144 void setValue(QObject* obj,
bool value);
145 W_SLOT(setValue, (QObject*,
bool))
147 void setValue(QObject* obj, QList<QString> value);
148 W_SLOT(setValue, (QObject*, QList<QString>))
150 QString valueType(QObject* obj);
153 double min(QObject* obj);
156 double max(QObject* obj);
159 QVector<QString> enumValues(QObject* obj);
162 QObject* metadata(QObject* obj)
const noexcept;
165 QObject* startState(QObject* obj);
168 QObject* startEvent(QObject* obj);
171 QObject* startSync(QObject* obj);
174 QObject* endState(QObject* obj);
177 QObject* endEvent(QObject* obj);
180 QObject* endSync(QObject* obj);
183 void remove(QObject* obj);
186 void setCurvePoints(QObject* process, QVector<QVariantList> points);
187 W_SLOT(setCurvePoints)
189 void setSteps(QObject* process, QVector<double> points);
192 QVariantList messages(QObject* state);
195 void setMessages(QObject* state, QVariantList msgs);
198 void replaceAddress(QObjectList objects, QString before, QString after);
199 W_SLOT(replaceAddress)
201 void automate(QObject* interval, QString addr);
202 W_SLOT(automate, (QObject*, QString))
204 void automate(QObject* interval, QObject* port);
205 W_SLOT(automate, (QObject*, QObject*))
225 QObject* find(QString p);
228 QObject* findByLabel(QString p);
234 QObject* rootInterval();
243 void play(QObject* obj);
244 W_SLOT(play, (QObject*))
255 void scrub(
double z);
260 QString readFile(QString path);
266 QObject* selectedObject();
267 W_SLOT(selectedObject)
269 QVariantList selectedObjects();
270 W_SLOT(selectedObjects)
272 void zoom(
double zx,
double zy);
273 W_SLOT(zoom, (
double,
double));
275 void scroll(
double zx,
double zy);
276 W_SLOT(scroll, (
double,
double));
279 QVariant prompt(QVariant v);
Definition EditContext.hpp:29