#pragma once #include "widgets/window.hpp" namespace chatterino { namespace widgets { class SplitContainer::Node; } namespace singletons { class WindowManager { public: WindowManager(); ~WindowManager() = delete; void showSettingsDialog(); void showAccountSelectPopup(QPoint point); void layoutVisibleChatWidgets(Channel *channel = nullptr); void repaintVisibleChatWidgets(Channel *channel = nullptr); void repaintGifEmotes(); // void updateAll(); widgets::Window &getMainWindow(); widgets::Window &getSelectedWindow(); widgets::Window &createWindow(widgets::Window::WindowType type); int windowCount(); widgets::Window *windowAt(int index); void save(); void initialize(); void closeAll(); pajlada::Signals::NoArgSignal repaintGifs; pajlada::Signals::Signal layout; private: bool initialized = false; std::vector windows; widgets::Window *mainWindow = nullptr; widgets::Window *selectedWindow = nullptr; void encodeNodeRecusively(widgets::SplitContainer::Node *node, QJsonObject &obj); void decodeNodeRecusively(widgets::SplitContainer *container, widgets::SplitContainer::Node *node, QJsonObject &obj, bool vertical); public: static void encodeChannel(IndirectChannel channel, QJsonObject &obj); static IndirectChannel decodeChannel(const QJsonObject &obj); }; } // namespace singletons } // namespace chatterino