2018-06-21 16:41:02 +02:00
|
|
|
#include <QQuickStyle>
|
2018-06-21 08:47:09 +02:00
|
|
|
#include <QStandardPaths>
|
|
|
|
#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-07-05 15:14:17 +02:00
|
|
|
#include <QtCore/QUrl>
|
|
|
|
#include <QtCore/QCommandLineOption>
|
|
|
|
#include <QtCore/QCommandLineParser>
|
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QStyleHints>
|
|
|
|
#include <QScreen>
|
|
|
|
#include <QQmlApplicationEngine>
|
|
|
|
#include <QtQml/QQmlContext>
|
2018-06-21 16:41:02 +02:00
|
|
|
#include "headers/serverconn.h"
|
|
|
|
#include "headers/appsettings.h"
|
2018-12-30 20:58:52 +01:00
|
|
|
#include "headers/foodplanmodel.h"
|
|
|
|
#include "headers/eventmodel.h"
|
|
|
|
#include "headers/filtermodel.h"
|
2018-06-21 08:47:09 +02:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2018-06-21 16:41:02 +02:00
|
|
|
AppSettings * pAppSettings = new AppSettings();
|
2018-12-30 20:58:52 +01:00
|
|
|
// ServerConn * pServerConn = new ServerConn();
|
2018-06-21 08:47:09 +02:00
|
|
|
|
|
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
|
|
|
|
|
|
QGuiApplication app(argc, argv);
|
2018-12-30 20:58:52 +01:00
|
|
|
|
|
|
|
qmlRegisterType<FoodPlanModel>("Backend", 1, 0, "FoodPlanModel");
|
|
|
|
qmlRegisterType<EventModel>("Backend", 1, 0, "EventModel");
|
|
|
|
qmlRegisterType<FilterModel>("Backend", 1, 0, "FilterModel");
|
|
|
|
qmlRegisterType<ServerConn>("Backend", 1, 0, "ServerConn");
|
2018-06-21 08:47:09 +02:00
|
|
|
|
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")));
|
2018-12-30 20:58:52 +01:00
|
|
|
QQmlContext *context = engine.rootContext();
|
|
|
|
|
|
|
|
// context->setContextProperty("_cppServerConn", pServerConn);
|
|
|
|
context->setContextProperty("_cppAppSettings", pAppSettings);
|
2018-06-21 08:47:09 +02:00
|
|
|
if (engine.rootObjects().isEmpty())
|
|
|
|
return -1;
|
2018-06-21 16:41:02 +02:00
|
|
|
|
|
|
|
int ret;
|
|
|
|
ret = app.exec();
|
2018-06-21 08:47:09 +02:00
|
|
|
|
2018-12-30 20:58:52 +01:00
|
|
|
// delete pServerConn;
|
2018-06-21 16:41:02 +02:00
|
|
|
delete pAppSettings;
|
|
|
|
return(ret);
|
2018-06-21 08:47:09 +02:00
|
|
|
}
|