Spectral/main.cpp

34 lines
883 B
C++
Raw Normal View History

2018-02-23 14:39:14 +00:00
#include <QGuiApplication>
#include <QQmlApplicationEngine>
2018-02-28 09:10:42 +00:00
#include <QNetworkProxy>
2018-02-23 14:39:14 +00:00
2018-02-27 11:07:50 +00:00
#include "matrix/controller.h"
2018-02-28 09:10:42 +00:00
#include "matrix/roomlistmodel.h"
2018-02-23 14:39:14 +00:00
using namespace QMatrixClient;
int main(int argc, char *argv[])
{
#if defined(Q_OS_WIN)
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
QGuiApplication app(argc, argv);
2018-02-28 09:10:42 +00:00
// Enable this if you need proxy.
2018-02-28 13:11:42 +00:00
QNetworkProxy proxy;
proxy.setType(QNetworkProxy::HttpProxy);
proxy.setHostName("localhost");
proxy.setPort(1082);
QNetworkProxy::setApplicationProxy(proxy);
2018-02-28 09:10:42 +00:00
2018-02-27 11:07:50 +00:00
qmlRegisterType<Controller>("Matrique", 0, 1, "Controller");
2018-02-28 09:10:42 +00:00
qmlRegisterType<RoomListModel>("Matrique", 0, 1, "RoomListModel");
2018-02-23 14:39:14 +00:00
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/qml/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
return app.exec();
}