2018-07-19 08:04:09 +00:00
|
|
|
#include <QApplication>
|
2018-02-28 09:10:42 +00:00
|
|
|
#include <QNetworkProxy>
|
2018-07-09 02:45:26 +00:00
|
|
|
#include <QQmlApplicationEngine>
|
2018-03-02 08:56:36 +00:00
|
|
|
#include <QQmlContext>
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-09-09 02:12:45 +00:00
|
|
|
#include "accountlistmodel.h"
|
2018-07-13 04:06:27 +00:00
|
|
|
#include "controller.h"
|
2018-08-17 04:55:57 +00:00
|
|
|
#include "emojimodel.h"
|
2018-09-07 05:50:06 +00:00
|
|
|
#include "imageitem.h"
|
2018-07-13 04:06:27 +00:00
|
|
|
#include "imageprovider.h"
|
|
|
|
#include "messageeventmodel.h"
|
2018-07-09 02:45:26 +00:00
|
|
|
#include "room.h"
|
2018-07-17 06:14:48 +00:00
|
|
|
#include "roomlistmodel.h"
|
2018-10-01 08:07:48 +00:00
|
|
|
#include "spectralroom.h"
|
2018-08-26 05:17:12 +00:00
|
|
|
#include "userlistmodel.h"
|
2018-03-02 08:56:36 +00:00
|
|
|
|
2018-08-01 12:26:29 +00:00
|
|
|
#include "csapi/joining.h"
|
2018-07-30 14:42:27 +00:00
|
|
|
#include "csapi/leaving.h"
|
|
|
|
|
2018-02-23 14:39:14 +00:00
|
|
|
using namespace QMatrixClient;
|
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
2018-02-23 14:39:14 +00:00
|
|
|
#if defined(Q_OS_WIN)
|
2018-07-09 02:45:26 +00:00
|
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
2018-02-23 14:39:14 +00:00
|
|
|
#endif
|
|
|
|
|
2018-07-19 08:04:09 +00:00
|
|
|
QApplication app(argc, argv);
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-08-24 13:43:03 +00:00
|
|
|
app.setOrganizationName("ENCOM");
|
|
|
|
app.setOrganizationDomain("encom.eu.org");
|
2018-09-17 13:01:02 +00:00
|
|
|
app.setApplicationName("Spectral");
|
2018-08-24 13:43:03 +00:00
|
|
|
|
2018-08-19 06:51:09 +00:00
|
|
|
app.setQuitOnLastWindowClosed(false);
|
|
|
|
|
2018-09-17 13:01:02 +00:00
|
|
|
qmlRegisterType<ImageItem>("Spectral", 0, 1, "ImageItem");
|
|
|
|
qmlRegisterType<Controller>("Spectral", 0, 1, "Controller");
|
|
|
|
qmlRegisterType<AccountListModel>("Spectral", 0, 1, "AccountListModel");
|
|
|
|
qmlRegisterType<RoomListModel>("Spectral", 0, 1, "RoomListModel");
|
|
|
|
qmlRegisterType<UserListModel>("Spectral", 0, 1, "UserListModel");
|
|
|
|
qmlRegisterType<MessageEventModel>("Spectral", 0, 1, "MessageEventModel");
|
|
|
|
qmlRegisterType<EmojiModel>("Spectral", 0, 1, "EmojiModel");
|
|
|
|
qmlRegisterUncreatableType<RoomMessageEvent>("Spectral", 0, 1,
|
2018-08-17 04:55:57 +00:00
|
|
|
"RoomMessageEvent", "ENUM");
|
2018-09-17 13:01:02 +00:00
|
|
|
qmlRegisterUncreatableType<RoomType>("Spectral", 0, 1, "RoomType", "ENUM");
|
2018-10-01 08:07:48 +00:00
|
|
|
|
2018-10-13 10:54:33 +00:00
|
|
|
qRegisterMetaType<User *>("User*");
|
|
|
|
qRegisterMetaType<MessageEventType>("MessageEventType");
|
|
|
|
qRegisterMetaType<SpectralRoom *>("SpectralRoom");
|
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
QQmlApplicationEngine engine;
|
2018-03-02 08:56:36 +00:00
|
|
|
|
2018-10-01 08:07:48 +00:00
|
|
|
engine.addImportPath("qrc:/imports");
|
2018-07-09 02:45:26 +00:00
|
|
|
ImageProvider *m_provider = new ImageProvider();
|
2018-09-07 05:50:06 +00:00
|
|
|
engine.rootContext()->setContextProperty("imageProvider", m_provider);
|
2018-07-09 02:45:26 +00:00
|
|
|
engine.addImageProvider(QLatin1String("mxc"), m_provider);
|
2018-07-07 11:06:13 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
engine.load(QUrl(QStringLiteral("qrc:/qml/main.qml")));
|
|
|
|
if (engine.rootObjects().isEmpty()) return -1;
|
2018-02-23 14:39:14 +00:00
|
|
|
|
2018-07-09 02:45:26 +00:00
|
|
|
return app.exec();
|
2018-02-23 14:39:14 +00:00
|
|
|
}
|