| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /***************************************************************************
- test_qml_editorwidgets.cpp
- --------------------------
- begin : Jul 2021
- copyright : (C) 2021 by Mathieu Pellerin
- email : mathieu@opengis.ch
- ***************************************************************************/
- /***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
- #include "qfield_qml_init.h"
- #include <QtQuickTest>
- #include <QQmlEngine>
- #include <QQmlContext>
- #define REGISTER_SINGLETON( uri, _class, name ) qmlRegisterSingletonType<_class>( uri, 1, 0, name, []( QQmlEngine *engine, QJSEngine *scriptEngine ) -> QObject * { Q_UNUSED(engine); Q_UNUSED(scriptEngine); return new _class(); } )
- class Setup : public QObject
- {
- Q_OBJECT
- public:
- Setup() {}
- public slots:
- void qmlEngineAvailable( QQmlEngine *engine )
- {
- qmlInit( engine );
- }
- };
- QUICK_TEST_MAIN_WITH_SETUP( test_qml_editorwidgets, Setup )
- #include "test_qml_editorwidgets.moc"
|