mirror-chatterino2/src/Application.hpp

170 lines
3.8 KiB
C++
Raw Normal View History

#pragma once
#include <QApplication>
2018-08-02 14:23:27 +02:00
#include <memory>
#include "common/SignalVector.hpp"
2019-09-22 10:53:39 +02:00
#include "common/Singleton.hpp"
#include "singletons/NativeMessaging.hpp"
namespace chatterino {
class TwitchIrcServer;
class PubSub;
class CommandController;
class AccountController;
class NotificationController;
class HighlightController;
class HotkeyController;
2018-06-28 20:03:04 +02:00
class Theme;
class WindowManager;
2018-06-28 19:51:07 +02:00
class Logging;
class Paths;
class AccountManager;
2018-06-28 19:51:07 +02:00
class Emotes;
class Settings;
class Fonts;
2018-08-11 12:47:03 +02:00
class Toasts;
class ChatterinoBadges;
class FfzBadges;
class SeventvBadges;
2022-05-22 15:00:18 +02:00
class IApplication
{
public:
IApplication();
virtual ~IApplication() = default;
static IApplication *instance;
virtual Theme *getThemes() = 0;
virtual Fonts *getFonts() = 0;
virtual Emotes *getEmotes() = 0;
virtual AccountController *getAccounts() = 0;
virtual HotkeyController *getHotkeys() = 0;
virtual WindowManager *getWindows() = 0;
virtual Toasts *getToasts() = 0;
virtual CommandController *getCommands() = 0;
virtual HighlightController *getHighlights() = 0;
2022-05-22 15:00:18 +02:00
virtual NotificationController *getNotifications() = 0;
virtual TwitchIrcServer *getTwitch() = 0;
virtual ChatterinoBadges *getChatterinoBadges() = 0;
virtual FfzBadges *getFfzBadges() = 0;
};
class Application : public IApplication
{
2018-08-02 14:23:27 +02:00
std::vector<std::unique_ptr<Singleton>> singletons_;
int argc_;
char **argv_;
public:
2018-08-02 14:23:27 +02:00
static Application *instance;
2018-08-02 14:23:27 +02:00
Application(Settings &settings, Paths &paths);
2018-08-02 14:23:27 +02:00
void initialize(Settings &settings, Paths &paths);
void load();
2018-08-02 14:23:27 +02:00
void save();
int run(QApplication &qtApp);
friend void test();
2018-08-07 01:35:24 +02:00
Theme *const themes{};
Fonts *const fonts{};
Emotes *const emotes{};
AccountController *const accounts{};
HotkeyController *const hotkeys{};
2018-08-07 01:35:24 +02:00
WindowManager *const windows{};
2018-08-11 12:47:03 +02:00
Toasts *const toasts{};
2018-08-02 14:23:27 +02:00
2018-08-07 01:35:24 +02:00
CommandController *const commands{};
NotificationController *const notifications{};
HighlightController *const highlights{};
TwitchIrcServer *const twitch{};
ChatterinoBadges *const chatterinoBadges{};
FfzBadges *const ffzBadges{};
SeventvBadges *const seventvBadges{};
2018-08-02 14:23:27 +02:00
2018-08-07 01:35:24 +02:00
/*[[deprecated]]*/ Logging *const logging{};
2022-05-22 15:00:18 +02:00
Theme *getThemes() override
{
return this->themes;
}
Fonts *getFonts() override
{
return this->fonts;
}
Emotes *getEmotes() override
{
return this->emotes;
}
AccountController *getAccounts() override
{
return this->accounts;
}
HotkeyController *getHotkeys() override
{
return this->hotkeys;
}
WindowManager *getWindows() override
{
return this->windows;
}
Toasts *getToasts() override
{
return this->toasts;
}
CommandController *getCommands() override
{
return this->commands;
}
NotificationController *getNotifications() override
{
return this->notifications;
}
HighlightController *getHighlights() override
{
return this->highlights;
}
2022-05-22 15:00:18 +02:00
TwitchIrcServer *getTwitch() override
{
return this->twitch;
}
ChatterinoBadges *getChatterinoBadges() override
{
return this->chatterinoBadges;
}
FfzBadges *getFfzBadges() override
{
return this->ffzBadges;
}
private:
2018-07-07 11:41:01 +02:00
void addSingleton(Singleton *singleton);
void initPubSub();
2018-09-17 12:51:16 +02:00
void initNm(Paths &paths);
2018-08-02 14:23:27 +02:00
2018-08-06 21:17:03 +02:00
template <typename T,
typename = std::enable_if_t<std::is_base_of<Singleton, T>::value>>
2018-08-02 14:23:27 +02:00
T &emplace()
{
auto t = new T;
this->singletons_.push_back(std::unique_ptr<T>(t));
return *t;
}
2018-09-17 12:51:16 +02:00
NativeMessagingServer nmServer{};
};
Application *getApp();
2022-05-22 15:00:18 +02:00
// Get an interface version of the Application class - should be preferred when possible for new code
IApplication *getIApp();
} // namespace chatterino