MCPcopy Create free account
hub / github.com/benlau/quickflux / QFAppScriptGroup

Class QFAppScriptGroup

qfappscriptgroup.h:7–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include "qfappscript.h"
6
7class QFAppScriptGroup : public QQuickItem
8{
9 Q_OBJECT
10 Q_PROPERTY(QJSValue scripts READ scripts WRITE setScripts NOTIFY scriptsChanged)
11
12public:
13 QFAppScriptGroup(QQuickItem* parent = 0);
14
15 QJSValue scripts() const;
16
17 void setScripts(const QJSValue &scripts);
18
19signals:
20 void scriptsChanged();
21
22public slots:
23 void exitAll();
24
25private slots:
26 void onStarted();
27
28private:
29 QJSValue m_scripts;
30 QList<QPointer<QFAppScript> > objects;
31};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected