-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
30 lines (24 loc) · 975 Bytes
/
main.cpp
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
29
30
#include <QApplication>
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QQuickStyle>
#include "backend/Sensors/VirtualSensor/Camera/camera.h"
#include "logic/qmlcontextmanager.h"
int main(int argc, char *argv[])
{
wiringPiSetup();
QQuickStyle::setStyle("Material");
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
qRegisterMetaType<SensorBaseType>("SensorBaseType");
qmlRegisterUncreatableType<BaseType>("SensorBaseType", 1, 0, "SensorBaseType", "Not creatable as it is an enum type");
QApplication app(argc, argv);
QQmlApplicationEngine engine;
engine.rootContext()->setContextProperty("applicationPath", "file://"+qApp->applicationDirPath()+ "/");
QMLContextManager manager(engine);
manager.init();
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
return app.exec();
}