mirror-chatterino2/src/main.cpp

75 lines
1.6 KiB
C++
Raw Normal View History

#include "application.hpp"
2017-01-11 01:08:20 +01:00
#include <QApplication>
#include <QDir>
#include <QStandardPaths>
#include <pajlada/settings/settingmanager.hpp>
2016-12-29 17:31:07 +01:00
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;
}
}
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 a(argc, argv);
2016-12-30 19:20:04 +01:00
2017-06-17 11:33:14 +02:00
a.setAttribute(Qt::AA_EnableHighDpiScaling, true);
// 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;
}
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();
2017-01-23 09:49:30 +01:00
return ret;
2016-12-29 17:31:07 +01:00
}