This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
fanny-app/source/main.cpp

44 lines
1.1 KiB
C++
Raw Normal View History

2018-07-01 19:24:40 +02:00
#include <QMessageBox>
2018-06-21 08:47:09 +02:00
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QGuiApplication>
#include <QQuickView>
2018-06-21 16:41:02 +02:00
#include <QQuickStyle>
2018-06-21 08:47:09 +02:00
#include <QStandardPaths>
#include <QtQml>
#include <QtNetwork>
#include <QQmlApplicationEngine>
2018-06-21 16:41:02 +02:00
#include <QFile>
#include <QDesktopServices>
2018-06-21 08:47:09 +02:00
2018-06-21 16:41:02 +02:00
#include "headers/serverconn.h"
#include "headers/appsettings.h"
2018-06-21 08:47:09 +02:00
int main(int argc, char *argv[])
{
ServerConn * pServerConn = new ServerConn;
2018-06-21 16:41:02 +02:00
AppSettings * pAppSettings = new AppSettings();
pGlobalAppSettings = pAppSettings;
2018-06-21 08:47:09 +02:00
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
2018-06-21 16:41:02 +02:00
QQuickStyle::setStyle("Material");
2018-06-21 08:47:09 +02:00
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
engine.rootContext()->setContextProperty("_cppServerConn", pServerConn);
2018-06-21 16:41:02 +02:00
engine.rootContext()->setContextProperty("_cppAppSettings", pAppSettings);
int ret;
ret = app.exec();
2018-06-21 08:47:09 +02:00
2018-06-21 16:41:02 +02:00
delete pServerConn;
delete pAppSettings;
return(ret);
2018-06-21 08:47:09 +02:00
}