mirror-chatterino2/src/singletons/WindowManager.hpp

65 lines
1.5 KiB
C++
Raw Normal View History

#pragma once
2017-01-15 16:38:30 +01:00
2018-06-26 14:09:39 +02:00
#include "widgets/Window.hpp"
2018-06-26 17:20:03 +02:00
#include "widgets/splits/SplitContainer.hpp"
2017-01-15 16:38:30 +01:00
2017-01-18 21:30:23 +01:00
namespace chatterino {
2017-04-12 17:46:44 +02:00
class WindowManager
2017-01-15 16:38:30 +01:00
{
public:
WindowManager();
2017-11-12 17:21:50 +01:00
~WindowManager() = delete;
2017-01-15 16:38:30 +01:00
2018-01-24 15:08:22 +01:00
void showSettingsDialog();
void showAccountSelectPopup(QPoint point);
void layoutChannelViews(Channel *channel = nullptr);
void forceLayoutChannelViews();
2017-04-13 19:25:33 +02:00
void repaintVisibleChatWidgets(Channel *channel = nullptr);
void repaintGifEmotes();
// void updateAll();
2017-04-13 19:25:33 +02:00
2018-06-26 17:06:17 +02:00
Window &getMainWindow();
Window &getSelectedWindow();
Window &createWindow(Window::WindowType type);
2017-04-13 19:25:33 +02:00
2017-12-14 00:25:06 +01:00
int windowCount();
2018-06-26 17:06:17 +02:00
Window *windowAt(int index);
2017-12-14 00:25:06 +01:00
2017-04-13 19:25:33 +02:00
void save();
void initialize();
void closeAll();
2017-01-26 21:04:01 +01:00
int getGeneration() const;
void incGeneration();
pajlada::Signals::NoArgSignal repaintGifs;
pajlada::Signals::Signal<Channel *> layout;
2017-09-17 02:13:57 +02:00
2018-06-11 19:11:33 +02:00
static const int uiScaleMin;
static const int uiScaleMax;
2018-06-11 15:04:54 +02:00
static int clampUiScale(int scale);
static float getUiScaleValue();
static float getUiScaleValue(int scale);
2017-01-15 16:38:30 +01:00
private:
bool initialized = false;
std::atomic<int> generation{0};
2018-06-26 17:06:17 +02:00
std::vector<Window *> windows;
2017-01-15 16:38:30 +01:00
2018-06-26 17:06:17 +02:00
Window *mainWindow = nullptr;
Window *selectedWindow = nullptr;
2018-06-26 17:06:17 +02:00
void encodeNodeRecusively(SplitContainer::Node *node, QJsonObject &obj);
2018-05-16 14:55:45 +02:00
public:
static void encodeChannel(IndirectChannel channel, QJsonObject &obj);
static IndirectChannel decodeChannel(const QJsonObject &obj);
2017-01-15 16:38:30 +01:00
};
2017-04-14 17:52:22 +02:00
} // namespace chatterino