mirror-chatterino2/src/singletons/WindowManager.hpp

102 lines
2.7 KiB
C++
Raw Normal View History

#pragma once
2017-01-15 16:38:30 +01:00
#include "common/Channel.hpp"
#include "common/FlagsEnum.hpp"
2018-07-15 14:03:41 +02:00
#include "common/Singleton.hpp"
2018-11-21 21:37:41 +01:00
#include "pajlada/settings/settinglistener.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 {
2018-08-02 14:23:27 +02:00
class Settings;
class Paths;
class Window;
class SplitContainer;
enum class MessageElementFlag;
using MessageElementFlags = FlagsEnum<MessageElementFlag>;
enum class WindowType;
2018-08-02 14:23:27 +02:00
enum class SettingsDialogPreference;
2018-08-02 14:23:27 +02:00
class WindowManager final : public Singleton
2017-01-15 16:38:30 +01:00
{
public:
WindowManager();
2017-01-15 16:38:30 +01:00
2018-07-06 19:23:47 +02:00
static void encodeChannel(IndirectChannel channel, QJsonObject &obj);
static IndirectChannel decodeChannel(const QJsonObject &obj);
void showSettingsDialog(
SettingsDialogPreference preference = SettingsDialogPreference());
2018-10-07 16:18:30 +02:00
// Show the account selector widget at point
2018-01-24 15:08:22 +01:00
void showAccountSelectPopup(QPoint point);
2018-10-07 16:18:30 +02:00
// Tell a channel (or all channels if channel is nullptr) to redo their
// layout
void layoutChannelViews(Channel *channel = nullptr);
2018-10-07 16:18:30 +02:00
// Force all channel views to redo their layout
// This is called, for example, when the emote scale or timestamp format has
// changed
void forceLayoutChannelViews();
2017-04-13 19:25:33 +02:00
void repaintVisibleChatWidgets(Channel *channel = nullptr);
void repaintGifEmotes();
2018-06-26 17:06:17 +02:00
Window &getMainWindow();
Window &getSelectedWindow();
Window &createWindow(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
2018-08-02 14:23:27 +02:00
virtual void initialize(Settings &settings, Paths &paths) override;
2018-07-07 11:41:01 +02:00
virtual void save() override;
void closeAll();
2017-01-26 21:04:01 +01:00
int getGeneration() const;
void incGeneration();
2018-08-07 07:55:31 +02:00
MessageElementFlags getWordFlags();
void updateWordTypeMask();
2018-10-07 16:18:30 +02:00
// Sends an alert to the main window
// It reads the `longAlert` setting to decide whether the alert will expire
// or not
2018-10-07 12:55:44 +02:00
void sendAlert();
// Queue up a save in the next 10 seconds
// If a save was already queued up, we reset the to happen in 10 seconds
// again
void queueSave();
2018-11-14 17:26:08 +01:00
/// Signals
pajlada::Signals::NoArgSignal gifRepaintRequested;
// This signal fires whenever views rendering a channel, or all views if the
// channel is a nullptr, need to redo their layout
pajlada::Signals::Signal<Channel *> layoutRequested;
pajlada::Signals::NoArgSignal wordFlagsChanged;
2017-01-15 16:38:30 +01:00
private:
2018-07-06 19:23:47 +02:00
void encodeNodeRecusively(SplitContainer::Node *node, QJsonObject &obj);
2018-07-06 19:23:47 +02:00
bool initialized_ = false;
2017-01-15 16:38:30 +01:00
2018-07-06 19:23:47 +02:00
std::atomic<int> generation_{0};
2018-07-06 19:23:47 +02:00
std::vector<Window *> windows_;
2018-05-16 14:55:45 +02:00
Window *mainWindow_{};
Window *selectedWindow_{};
MessageElementFlags wordFlags_{};
2018-11-21 21:37:41 +01:00
pajlada::SettingListener wordFlagsListener_;
QTimer *saveTimer;
2017-01-15 16:38:30 +01:00
};
2017-04-14 17:52:22 +02:00
} // namespace chatterino