mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
47 lines
1 KiB
C++
47 lines
1 KiB
C++
#pragma once
|
|
|
|
#include "widgets/window.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
class ChannelManager;
|
|
class ColorScheme;
|
|
class CompletionManager;
|
|
|
|
class WindowManager
|
|
{
|
|
public:
|
|
explicit WindowManager(ChannelManager &_channelManager, ColorScheme &_colorScheme);
|
|
|
|
static WindowManager *instance;
|
|
|
|
ChannelManager &channelManager;
|
|
ColorScheme &colorScheme;
|
|
|
|
void layoutVisibleChatWidgets(Channel *channel = nullptr);
|
|
void repaintVisibleChatWidgets(Channel *channel = nullptr);
|
|
void repaintGifEmotes();
|
|
void initMainWindow();
|
|
// void updateAll();
|
|
|
|
widgets::Window &getMainWindow();
|
|
widgets::Window &getSelectedWindow();
|
|
widgets::Window &createWindow();
|
|
|
|
int windowCount();
|
|
widgets::Window *windowAt(int index);
|
|
|
|
void save();
|
|
|
|
boost::signals2::signal<void()> repaintGifs;
|
|
boost::signals2::signal<void()> layout;
|
|
|
|
private:
|
|
std::vector<widgets::Window *> windows;
|
|
|
|
widgets::Window *mainWindow = nullptr;
|
|
widgets::Window *selectedWindow = nullptr;
|
|
};
|
|
|
|
} // namespace chatterino
|