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-07-23 14:16:13 +02:00
|
|
|
: completionManager(this->emoteManager)
|
|
|
|
, windowManager(this->channelManager, this->colorScheme, this->completionManager)
|
2017-06-26 16:41:20 +02:00
|
|
|
, colorScheme(this->windowManager)
|
2017-08-12 15:58:46 +02:00
|
|
|
, emoteManager(this->windowManager)
|
2017-06-13 21:13:58 +02:00
|
|
|
, resources(this->emoteManager, this->windowManager)
|
|
|
|
, channelManager(this->windowManager, this->emoteManager, this->ircManager)
|
|
|
|
, ircManager(this->channelManager, this->resources, this->emoteManager, this->windowManager)
|
|
|
|
{
|
|
|
|
// TODO(pajlada): Get rid of all singletons
|
2017-06-26 16:41:20 +02:00
|
|
|
logging::init();
|
|
|
|
SettingsManager::getInstance().load();
|
2017-06-13 21:13:58 +02:00
|
|
|
|
|
|
|
// Initialize everything we need
|
|
|
|
this->emoteManager.loadGlobalEmotes();
|
|
|
|
|
2017-07-28 19:46:53 +02:00
|
|
|
AccountManager::getInstance().load();
|
|
|
|
|
|
|
|
this->ircManager.setUser(AccountManager::getInstance().getTwitchUser());
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
// XXX
|
|
|
|
SettingsManager::getInstance().updateWordTypeMask();
|
|
|
|
|
|
|
|
this->windowManager.load();
|
|
|
|
}
|
|
|
|
|
|
|
|
Application::~Application()
|
|
|
|
{
|
|
|
|
this->windowManager.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();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace chatterino
|