mirror-chatterino2/src/main.cpp

98 lines
2.3 KiB
C++
Raw Normal View History

#include "application.hpp"
2017-01-11 01:08:20 +01:00
#include <QAbstractNativeEventFilter>
2017-01-11 01:08:20 +01:00
#include <QApplication>
#include <QDir>
#include <QLibrary>
#include <QStandardPaths>
#include <pajlada/settings/settingmanager.hpp>
2016-12-29 17:31:07 +01:00
#include "util/networkmanager.hpp"
#ifdef USEWINSDK
#include "util/nativeeventhelper.hpp"
#endif
namespace {
inline bool initSettings(bool portable)
{
QString settingsPath;
if (portable) {
settingsPath.append(QDir::currentPath());
} else {
// Get settings path
settingsPath.append(QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation));
if (settingsPath.isEmpty()) {
printf("Error finding writable location for settings\n");
return false;
}
}
2018-01-04 02:50:36 +01:00
qDebug() << settingsPath;
if (!QDir().mkpath(settingsPath)) {
printf("Error creating directories for settings: %s\n", qPrintable(settingsPath));
return false;
}
settingsPath.append("/settings.json");
pajlada::Settings::SettingManager::load(qPrintable(settingsPath));
return true;
}
} // namespace
int main(int argc, char *argv[])
2016-12-29 17:31:07 +01:00
{
QApplication::setAttribute(Qt::AA_Use96Dpi, true);
QApplication::setAttribute(Qt::AA_DisableHighDpiScaling, true);
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
// Install native event handler for hidpi on windows
#ifdef USEWINSDK
a.installNativeEventFilter(new chatterino::util::DpiNativeEventFilter);
#endif
// Options
bool portable = false;
for (int i = 1; i < argc; ++i) {
if (strcmp(argv[i], "portable") == 0) {
portable = true;
}
}
// Initialize settings
if (!initSettings(portable)) {
printf("Error initializing settings\n");
return 1;
}
// Initialize NetworkManager
chatterino::util::NetworkManager::init();
int ret = 0;
{
// Initialize application
chatterino::Application app;
2016-12-29 17:31:07 +01:00
// Start the application
ret = app.run(a);
2017-01-03 21:19:33 +01:00
// Application will go out of scope here and deinitialize itself
}
2017-01-23 09:49:30 +01:00
// Save settings
pajlada::Settings::SettingManager::save();
// Deinitialize NetworkManager (stop thread and wait for finish, should be instant)
chatterino::util::NetworkManager::deinit();
2017-12-31 22:58:35 +01:00
exit(0);
2017-01-23 09:49:30 +01:00
return ret;
2016-12-29 17:31:07 +01:00
}