mirror-chatterino2/src/application.cpp
2017-12-22 14:44:31 +01:00

55 lines
1.3 KiB
C++

#include "application.hpp"
#include "accountmanager.hpp"
#include "colorscheme.hpp"
#include "logging/loggingmanager.hpp"
#include "settingsmanager.hpp"
namespace chatterino {
// 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
Application::Application()
: windowManager(this->channelManager, this->colorScheme)
, colorScheme(this->windowManager)
, channelManager(this->windowManager, this->ircManager)
, ircManager(this->channelManager, this->resources, this->windowManager)
{
logging::init();
SettingsManager::getInstance().load();
this->windowManager.initMainWindow();
// Initialize everything we need
EmoteManager::getInstance().loadGlobalEmotes();
AccountManager::getInstance().load();
// XXX
SettingsManager::getInstance().updateWordTypeMask();
}
Application::~Application()
{
this->save();
chatterino::SettingsManager::getInstance().save();
}
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();
}
void Application::save()
{
this->windowManager.save();
}
} // namespace chatterino