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