2017-06-13 21:13:58 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "singletons/IrcManager.hpp"
|
|
|
|
#include "singletons/ResourceManager.hpp"
|
2017-06-13 21:13:58 +02:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
class TwitchServer;
|
2018-04-28 15:48:40 +02:00
|
|
|
class PubSub;
|
2018-04-28 15:20:18 +02:00
|
|
|
|
2018-04-30 23:30:05 +02:00
|
|
|
class CommandController;
|
2018-05-06 00:32:45 +02:00
|
|
|
class HighlightController;
|
2018-05-13 19:24:32 +02:00
|
|
|
class IgnoreController;
|
2018-05-26 20:25:00 +02:00
|
|
|
class TaggedUsersController;
|
|
|
|
class AccountController;
|
2018-04-27 22:11:19 +02:00
|
|
|
|
|
|
|
class ThemeManager;
|
|
|
|
class WindowManager;
|
|
|
|
class LoggingManager;
|
|
|
|
class PathManager;
|
|
|
|
class AccountManager;
|
|
|
|
class EmoteManager;
|
|
|
|
class NativeMessagingManager;
|
|
|
|
class SettingManager;
|
2018-04-28 15:20:18 +02:00
|
|
|
class FontManager;
|
|
|
|
class ResourceManager;
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
class Application
|
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
Application(int _argc, char **_argv);
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
public:
|
2018-04-27 22:11:19 +02:00
|
|
|
static void instantiate(int argc, char **argv);
|
|
|
|
|
|
|
|
~Application() = delete;
|
|
|
|
|
|
|
|
void construct();
|
|
|
|
void initialize();
|
|
|
|
void load();
|
2017-06-13 21:13:58 +02:00
|
|
|
|
|
|
|
int run(QApplication &qtApp);
|
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
friend void test();
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
singletons::PathManager *paths = nullptr;
|
|
|
|
singletons::ThemeManager *themes = nullptr;
|
|
|
|
singletons::WindowManager *windows = nullptr;
|
|
|
|
singletons::LoggingManager *logging = nullptr;
|
2018-04-30 23:30:05 +02:00
|
|
|
controllers::commands::CommandController *commands = nullptr;
|
2018-05-06 00:32:45 +02:00
|
|
|
controllers::highlights::HighlightController *highlights = nullptr;
|
2018-05-13 19:24:32 +02:00
|
|
|
controllers::ignores::IgnoreController *ignores = nullptr;
|
2018-05-26 20:25:00 +02:00
|
|
|
controllers::taggedusers::TaggedUsersController *taggedUsers = nullptr;
|
|
|
|
controllers::accounts::AccountController *accounts = nullptr;
|
2018-04-27 22:11:19 +02:00
|
|
|
singletons::EmoteManager *emotes = nullptr;
|
|
|
|
singletons::NativeMessagingManager *nativeMessaging = nullptr;
|
|
|
|
singletons::SettingManager *settings = nullptr;
|
2018-04-28 15:20:18 +02:00
|
|
|
singletons::FontManager *fonts = nullptr;
|
|
|
|
singletons::ResourceManager *resources = nullptr;
|
|
|
|
|
|
|
|
/// Provider-specific
|
|
|
|
struct {
|
2018-04-28 15:48:40 +02:00
|
|
|
providers::twitch::TwitchServer *server = nullptr;
|
|
|
|
providers::twitch::PubSub *pubsub = nullptr;
|
2018-04-28 15:20:18 +02:00
|
|
|
} twitch;
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2017-12-22 14:44:31 +01:00
|
|
|
void save();
|
2018-04-27 22:11:19 +02:00
|
|
|
|
|
|
|
// Special application mode that only initializes the native messaging host
|
|
|
|
static void runNativeMessagingHost();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
2017-06-13 21:13:58 +02:00
|
|
|
};
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
Application *getApp();
|
|
|
|
|
|
|
|
bool appInitialized();
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
} // namespace chatterino
|