aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-qml/test/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/src-qml/test/main.cpp')
-rw-r--r--src-qt5/src-qml/test/main.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src-qt5/src-qml/test/main.cpp b/src-qt5/src-qml/test/main.cpp
new file mode 100644
index 00000000..e65c599f
--- /dev/null
+++ b/src-qt5/src-qml/test/main.cpp
@@ -0,0 +1,28 @@
+#include <QDebug>
+#include <QApplication>
+#include <QQuickView>
+
+int main(int argc, char** argv){
+ QString QMLFile;
+ for(int i=1; i<argc; i++){
+ if(QFile::exists(argv[i])){ QMLFile = QString(argv[i]); }
+ }
+ if(QMLFile.isEmpty()){
+ qDebug() << "No QML File provided!";
+ qDebug() << " Please provide a valid qml file path as an input argument";
+ return 1;
+ }
+ QApplication A(argc,argv);
+ qDebug() << "Creating base widget";
+ QQuickView base;
+ base.setResizeMode(QQuickView::SizeRootObjectToView);
+ qDebug() << "Resize base widget";
+ base.resize(1024,768);
+ qDebug() << "Load QML File:" << QMLFile;
+ base.setSource(QUrl::fromLocalFile(QMLFile));
+ qDebug() << "Start Event loop";
+ base.show();
+ int ret = A.exec();
+ qDebug() << " - Finished";
+ return ret;
+}
bgstack15