2017-06-13 21:13:58 +02:00
|
|
|
#include "application.hpp"
|
2018-04-12 00:09:16 +02:00
|
|
|
#include "singletons/nativemessagingmanager.hpp"
|
2018-01-05 02:23:49 +01:00
|
|
|
#include "singletons/pathmanager.hpp"
|
2018-04-12 00:09:16 +02:00
|
|
|
#include "util/networkmanager.hpp"
|
2018-04-20 00:15:57 +02:00
|
|
|
#include "widgets/lastruncrashdialog.hpp"
|
2017-01-11 01:08:20 +01:00
|
|
|
|
2017-09-21 17:34:41 +02:00
|
|
|
#include <QAbstractNativeEventFilter>
|
2017-01-11 01:08:20 +01:00
|
|
|
#include <QApplication>
|
2018-04-09 22:59:19 +02:00
|
|
|
#include <QFile>
|
2017-09-21 17:34:41 +02:00
|
|
|
#include <QLibrary>
|
2018-04-09 22:59:19 +02:00
|
|
|
#include <QStringList>
|
|
|
|
|
2017-09-21 17:34:41 +02:00
|
|
|
#ifdef USEWINSDK
|
2017-12-19 01:32:06 +01:00
|
|
|
#include "util/nativeeventhelper.hpp"
|
2017-09-21 17:34:41 +02:00
|
|
|
#endif
|
|
|
|
|
2018-04-12 00:09:16 +02:00
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
2018-04-09 22:59:19 +02:00
|
|
|
|
|
|
|
int runGui(int argc, char *argv[]);
|
|
|
|
|
2017-04-13 18:51:46 +02:00
|
|
|
int main(int argc, char *argv[])
|
2018-04-09 22:59:19 +02:00
|
|
|
{
|
|
|
|
// read args
|
|
|
|
QStringList args;
|
|
|
|
|
|
|
|
for (int i = 1; i < argc; i++) {
|
|
|
|
args << argv[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: can be any argument
|
|
|
|
if (args.size() > 0 && args[0].startsWith("chrome-extension://")) {
|
2018-05-23 12:44:01 +02:00
|
|
|
chatterino::Application::instantiate(argc, argv);
|
|
|
|
auto app = chatterino::getApp();
|
|
|
|
app->construct();
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
chatterino::Application::runNativeMessagingHost();
|
2018-04-09 22:59:19 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// run gui
|
|
|
|
return runGui(argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
int runGui(int argc, char *argv[])
|
2016-12-29 17:31:07 +01:00
|
|
|
{
|
2017-12-23 21:18:13 +01:00
|
|
|
QApplication::setAttribute(Qt::AA_Use96Dpi, true);
|
2018-01-11 20:16:25 +01:00
|
|
|
#ifdef Q_OS_WIN32
|
2017-12-23 21:18:13 +01:00
|
|
|
QApplication::setAttribute(Qt::AA_DisableHighDpiScaling, true);
|
2018-01-11 20:16:25 +01:00
|
|
|
#endif
|
2018-01-19 14:48:17 +01:00
|
|
|
// QApplication::setAttribute(Qt::AA_UseSoftwareOpenGL, true);
|
2016-12-29 17:31:07 +01:00
|
|
|
QApplication a(argc, argv);
|
2016-12-30 19:20:04 +01:00
|
|
|
|
2017-12-19 01:32:06 +01:00
|
|
|
// Install native event handler for hidpi on windows
|
2017-09-21 17:34:41 +02:00
|
|
|
#ifdef USEWINSDK
|
2017-12-19 01:32:06 +01:00
|
|
|
a.installNativeEventFilter(new chatterino::util::DpiNativeEventFilter);
|
2017-09-21 17:34:41 +02:00
|
|
|
#endif
|
|
|
|
|
2017-10-27 20:09:02 +02:00
|
|
|
// Initialize NetworkManager
|
|
|
|
chatterino::util::NetworkManager::init();
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
// Initialize application
|
|
|
|
chatterino::Application::instantiate(argc, argv);
|
|
|
|
auto app = chatterino::getApp();
|
|
|
|
|
|
|
|
app->construct();
|
|
|
|
|
|
|
|
auto &pathMan = *app->paths;
|
2018-04-20 00:15:57 +02:00
|
|
|
// Running file
|
|
|
|
auto runningPath = pathMan.settingsFolderPath + "/running_" + pathMan.appPathHash;
|
|
|
|
|
|
|
|
if (QFile::exists(runningPath)) {
|
2018-04-22 20:48:00 +02:00
|
|
|
#ifndef DISABLE_CRASH_DIALOG
|
2018-04-20 00:15:57 +02:00
|
|
|
chatterino::widgets::LastRunCrashDialog dialog;
|
|
|
|
dialog.exec();
|
2018-04-22 20:48:00 +02:00
|
|
|
#endif
|
2018-04-20 00:15:57 +02:00
|
|
|
} else {
|
|
|
|
QFile runningFile(runningPath);
|
|
|
|
|
|
|
|
runningFile.open(QIODevice::WriteOnly | QIODevice::Truncate);
|
|
|
|
runningFile.flush();
|
|
|
|
runningFile.close();
|
|
|
|
}
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
app->initialize();
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
// Start the application
|
|
|
|
// This is a blocking call
|
|
|
|
app->run(a);
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
// We have finished our application, make sure we save stuff
|
|
|
|
app->save();
|
2017-01-23 09:49:30 +01:00
|
|
|
|
2018-04-20 00:15:57 +02:00
|
|
|
// Running file
|
|
|
|
QFile::remove(runningPath);
|
|
|
|
|
2017-05-30 15:22:44 +02:00
|
|
|
// Save settings
|
|
|
|
pajlada::Settings::SettingManager::save();
|
|
|
|
|
2017-10-27 20:09:02 +02:00
|
|
|
// Deinitialize NetworkManager (stop thread and wait for finish, should be instant)
|
|
|
|
chatterino::util::NetworkManager::deinit();
|
|
|
|
|
2018-01-18 07:56:02 +01:00
|
|
|
_exit(0);
|
2016-12-29 17:31:07 +01:00
|
|
|
}
|