mirror-chatterino2/src/singletons/WindowManager.hpp

137 lines
4.1 KiB
C++
Raw Normal View History

#pragma once
2017-01-15 16:38:30 +01:00
#include <memory>
#include "common/Channel.hpp"
#include "common/FlagsEnum.hpp"
2018-07-15 14:03:41 +02:00
#include "common/Singleton.hpp"
#include "common/WindowDescriptors.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 : int64_t;
using MessageElementFlags = FlagsEnum<MessageElementFlag>;
enum class WindowType;
2018-08-02 14:23:27 +02:00
enum class SettingsDialogPreference;
class FramelessEmbedWindow;
2018-08-02 14:23:27 +02:00
class WindowManager final : public Singleton
2017-01-15 16:38:30 +01:00
{
public:
static const QString WINDOW_LAYOUT_FILENAME;
WindowManager();
~WindowManager() override;
2017-01-15 16:38:30 +01:00
static void encodeTab(SplitContainer *tab, bool isSelected,
QJsonObject &obj);
2018-07-06 19:23:47 +02:00
static void encodeChannel(IndirectChannel channel, QJsonObject &obj);
static void encodeFilters(Split *split, QJsonArray &arr);
static IndirectChannel decodeChannel(const SplitDescriptor &descriptor);
2018-07-06 19:23:47 +02:00
void showSettingsDialog(
QWidget *parent,
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, bool show = true);
2017-04-13 19:25:33 +02:00
void select(Split *split);
void select(SplitContainer *container);
2017-12-14 00:25:06 +01:00
QPoint emotePopupPos();
void setEmotePopupPos(QPoint pos);
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;
// This signal fires every 100ms and can be used to trigger random things that require a recheck.
// It is currently being used by the "Tooltip Preview Image" system to recheck if an image is ready to be rendered.
pajlada::Signals::NoArgSignal miscUpdate;
pajlada::Signals::Signal<Split *> selectSplit;
pajlada::Signals::Signal<SplitContainer *> selectSplitContainer;
2017-01-15 16:38:30 +01:00
private:
static void encodeNodeRecursively(SplitContainer::Node *node,
QJsonObject &obj);
// Load window layout from the window-layout.json file
WindowLayout loadWindowLayoutFromFile() const;
// Apply a window layout for this window manager.
void applyWindowLayout(const WindowLayout &layout);
// Contains the full path to the window layout file, e.g. /home/pajlada/.local/share/Chatterino/Settings/window-layout.json
const QString windowLayoutFilePath;
2018-07-06 19:23:47 +02:00
bool initialized_ = false;
2017-01-15 16:38:30 +01:00
QPoint emotePopupPos_;
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
std::unique_ptr<FramelessEmbedWindow> framelessEmbedWindow_;
Window *mainWindow_{};
Window *selectedWindow_{};
MessageElementFlags wordFlags_{};
2018-11-21 21:37:41 +01:00
pajlada::SettingListener wordFlagsListener_;
QTimer *saveTimer;
QTimer miscUpdateTimer_;
2017-01-15 16:38:30 +01:00
};
2017-04-14 17:52:22 +02:00
} // namespace chatterino