2017-06-13 21:13:58 +02:00
|
|
|
#include "application.hpp"
|
2017-07-28 19:46:53 +02:00
|
|
|
#include "accountmanager.hpp"
|
2017-06-13 21:13:58 +02:00
|
|
|
#include "colorscheme.hpp"
|
2017-06-26 16:41:20 +02:00
|
|
|
#include "logging/loggingmanager.hpp"
|
2017-06-13 21:13:58 +02:00
|
|
|
#include "settingsmanager.hpp"
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
// this class is responsible for handling the workflow of Chatterino
|
|
|
|
// It will create the instances of the major classes, and connect their signals to each other
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
Application::Application()
|
2017-12-17 02:18:13 +01:00
|
|
|
: windowManager(this->channelManager, this->colorScheme)
|
2017-06-26 16:41:20 +02:00
|
|
|
, colorScheme(this->windowManager)
|
2017-12-17 02:18:13 +01:00
|
|
|
, channelManager(this->windowManager, this->ircManager)
|
|
|
|
, ircManager(this->channelManager, this->resources, this->windowManager)
|
2017-06-13 21:13:58 +02:00
|
|
|
{
|
2017-06-26 16:41:20 +02:00
|
|
|
logging::init();
|
|
|
|
SettingsManager::getInstance().load();
|
2017-06-13 21:13:58 +02:00
|
|
|
|
2017-12-14 00:25:06 +01:00
|
|
|
this->windowManager.initMainWindow();
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
// Initialize everything we need
|
2017-12-17 02:18:13 +01:00
|
|
|
EmoteManager::getInstance().loadGlobalEmotes();
|
2017-06-13 21:13:58 +02:00
|
|
|
|
2017-07-28 19:46:53 +02:00
|
|
|
AccountManager::getInstance().load();
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
// XXX
|
|
|
|
SettingsManager::getInstance().updateWordTypeMask();
|
|
|
|
}
|
|
|
|
|
|
|
|
Application::~Application()
|
|
|
|
{
|
2017-12-22 14:44:31 +01:00
|
|
|
this->save();
|
2017-06-26 16:41:20 +02:00
|
|
|
|
|
|
|
chatterino::SettingsManager::getInstance().save();
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int Application::run(QApplication &qtApp)
|
|
|
|
{
|
|
|
|
// Start connecting to the IRC Servers (Twitch only for now)
|
|
|
|
this->ircManager.connect();
|
|
|
|
|
|
|
|
// Show main window
|
|
|
|
this->windowManager.getMainWindow().show();
|
|
|
|
|
|
|
|
return qtApp.exec();
|
|
|
|
}
|
|
|
|
|
2017-12-22 14:44:31 +01:00
|
|
|
void Application::save()
|
|
|
|
{
|
|
|
|
this->windowManager.save();
|
|
|
|
}
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
} // namespace chatterino
|