blob: e65c599fd4349ec6b6bf2d257bf673ead402332e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}
|