mirror-chatterino2/src/singletons/WindowManager.cpp

615 lines
17 KiB
C++
Raw Normal View History

2018-07-15 14:03:41 +02:00
#include "singletons/WindowManager.hpp"
2018-06-26 14:09:39 +02:00
#include "Application.hpp"
2018-06-26 17:20:03 +02:00
#include "debug/AssertInGuiThread.hpp"
2018-06-26 14:09:39 +02:00
#include "debug/Log.hpp"
#include "messages/MessageElement.hpp"
2018-06-26 14:09:39 +02:00
#include "providers/twitch/TwitchServer.hpp"
2018-06-28 19:46:45 +02:00
#include "singletons/Fonts.hpp"
#include "singletons/Paths.hpp"
#include "singletons/Settings.hpp"
2018-06-28 20:03:04 +02:00
#include "singletons/Theme.hpp"
2018-06-26 14:09:39 +02:00
#include "util/Clamp.hpp"
#include "widgets/AccountSwitchPopupWidget.hpp"
#include "widgets/Notebook.hpp"
#include "widgets/Window.hpp"
2018-06-26 15:11:45 +02:00
#include "widgets/dialogs/SettingsDialog.hpp"
#include "widgets/helper/NotebookTab.hpp"
#include "widgets/splits/Split.hpp"
#include "widgets/splits/SplitContainer.hpp"
2017-01-15 16:38:30 +01:00
2018-07-15 14:03:41 +02:00
#include <QDebug>
2018-05-16 14:55:45 +02:00
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonObject>
#include <chrono>
2018-06-21 13:02:34 +02:00
#define SETTINGS_FILENAME "/window-layout.json"
2017-01-18 21:30:23 +01:00
namespace chatterino {
2018-06-26 17:06:17 +02:00
using SplitNode = SplitContainer::Node;
using SplitDirection = SplitContainer::Direction;
2018-05-16 14:55:45 +02:00
2018-06-11 19:11:33 +02:00
const int WindowManager::uiScaleMin = -5;
const int WindowManager::uiScaleMax = 10;
2018-01-24 15:08:22 +01:00
void WindowManager::showSettingsDialog()
{
2018-06-26 17:06:17 +02:00
QTimer::singleShot(80, [] { SettingsDialog::showDialog(); });
2018-01-24 15:08:22 +01:00
}
void WindowManager::showAccountSelectPopup(QPoint point)
{
// static QWidget *lastFocusedWidget = nullptr;
2018-06-26 17:06:17 +02:00
static AccountSwitchPopupWidget *w = new AccountSwitchPopupWidget();
2018-01-24 15:08:22 +01:00
if (w->hasFocus()) {
w->hide();
// if (lastFocusedWidget) {
// lastFocusedWidget->setFocus();
// }
return;
}
// lastFocusedWidget = this->focusWidget();
w->refresh();
QPoint buttonPos = point;
w->move(buttonPos.x(), buttonPos.y());
w->show();
w->setFocus();
}
WindowManager::WindowManager()
2017-04-13 19:25:33 +02:00
{
qDebug() << "init WindowManager";
auto settings = getSettings();
2018-07-06 19:23:47 +02:00
this->wordFlagsListener_.addSetting(settings->showTimestamps);
this->wordFlagsListener_.addSetting(settings->showBadgesGlobalAuthority);
this->wordFlagsListener_.addSetting(settings->showBadgesChannelAuthority);
this->wordFlagsListener_.addSetting(settings->showBadgesSubscription);
this->wordFlagsListener_.addSetting(settings->showBadgesVanity);
this->wordFlagsListener_.addSetting(settings->showBadgesChatterino);
2018-07-06 19:23:47 +02:00
this->wordFlagsListener_.addSetting(settings->enableBttvEmotes);
this->wordFlagsListener_.addSetting(settings->enableEmojis);
this->wordFlagsListener_.addSetting(settings->enableFfzEmotes);
this->wordFlagsListener_.addSetting(settings->enableTwitchEmotes);
this->wordFlagsListener_.addSetting(settings->enableUsernameBold);
this->wordFlagsListener_.addSetting(settings->enableLowercaseLink);
2018-07-06 19:23:47 +02:00
this->wordFlagsListener_.cb = [this](auto) {
this->updateWordTypeMask(); //
};
this->saveTimer = new QTimer;
this->saveTimer->setSingleShot(true);
QObject::connect(this->saveTimer, &QTimer::timeout, [] {
getApp()->windows->save(); //
});
}
2018-08-07 07:55:31 +02:00
MessageElementFlags WindowManager::getWordFlags()
{
2018-07-06 19:23:47 +02:00
return this->wordFlags_;
}
void WindowManager::updateWordTypeMask()
{
2018-08-07 07:55:31 +02:00
using MEF = MessageElementFlag;
auto settings = getSettings();
// text
2018-08-07 07:55:31 +02:00
auto flags = MessageElementFlags(MEF::Text);
// timestamp
if (settings->showTimestamps) {
2018-08-07 07:55:31 +02:00
flags.set(MEF::Timestamp);
}
// emotes
2018-08-07 07:55:31 +02:00
flags.set(settings->enableTwitchEmotes ? MEF::TwitchEmoteImage
: MEF::TwitchEmoteText);
flags.set(settings->enableFfzEmotes ? MEF::FfzEmoteImage
: MEF::FfzEmoteText);
flags.set(settings->enableBttvEmotes ? MEF::BttvEmoteImage
: MEF::BttvEmoteText);
flags.set(settings->enableEmojis ? MEF::EmojiImage : MEF::EmojiText);
// bits
2018-08-07 07:55:31 +02:00
flags.set(MEF::BitsAmount);
flags.set(settings->enableGifAnimations ? MEF::BitsAnimated
: MEF::BitsStatic);
// badges
flags.set(settings->showBadgesGlobalAuthority ? MEF::BadgeGlobalAuthority
: MEF::None);
flags.set(settings->showBadgesChannelAuthority ? MEF::BadgeChannelAuthority
: MEF::None);
flags.set(settings->showBadgesSubscription ? MEF::BadgeSubscription
: MEF::None);
flags.set(settings->showBadgesVanity ? MEF::BadgeVanity : MEF::None);
flags.set(settings->showBadgesChatterino ? MEF::BadgeChatterino
: MEF::None);
// username
2018-08-07 07:55:31 +02:00
flags.set(MEF::Username);
// misc
2018-08-07 07:55:31 +02:00
flags.set(MEF::AlwaysShow);
flags.set(MEF::Collapsed);
flags.set(settings->enableUsernameBold ? MEF::BoldUsername
: MEF::NonBoldUsername);
flags.set(settings->enableLowercaseLink ? MEF::LowercaseLink
: MEF::OriginalLink);
// update flags
2018-08-07 07:55:31 +02:00
MessageElementFlags newFlags = static_cast<MessageElementFlags>(flags);
2018-07-06 19:23:47 +02:00
if (newFlags != this->wordFlags_) {
this->wordFlags_ = newFlags;
this->wordFlagsChanged.invoke();
}
2017-04-13 19:25:33 +02:00
}
2017-01-18 21:30:23 +01:00
void WindowManager::layoutChannelViews(Channel *channel)
2017-01-15 16:38:30 +01:00
{
this->layout.invoke(channel);
}
void WindowManager::forceLayoutChannelViews()
{
this->incGeneration();
this->layoutChannelViews(nullptr);
}
2017-04-12 17:46:44 +02:00
void WindowManager::repaintVisibleChatWidgets(Channel *channel)
{
2018-07-06 19:23:47 +02:00
if (this->mainWindow_ != nullptr) {
this->mainWindow_->repaintVisibleChatWidgets(channel);
2017-01-26 04:26:40 +01:00
}
2017-01-15 16:38:30 +01:00
}
2017-01-26 21:04:01 +01:00
2017-04-12 17:46:44 +02:00
void WindowManager::repaintGifEmotes()
2017-02-07 00:03:15 +01:00
{
this->repaintGifs.invoke();
2017-02-07 00:03:15 +01:00
}
// void WindowManager::updateAll()
//{
// if (this->mainWindow != nullptr) {
// this->mainWindow->update();
// }
//}
2017-02-02 01:23:26 +01:00
2018-06-26 17:06:17 +02:00
Window &WindowManager::getMainWindow()
2017-04-13 19:25:33 +02:00
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
2018-07-06 19:23:47 +02:00
return *this->mainWindow_;
2017-04-13 19:25:33 +02:00
}
2018-06-26 17:06:17 +02:00
Window &WindowManager::getSelectedWindow()
2017-11-12 17:21:50 +01:00
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
2018-07-06 19:23:47 +02:00
return *this->selectedWindow_;
2017-11-12 17:21:50 +01:00
}
Window &WindowManager::createWindow(WindowType type)
2017-11-12 17:21:50 +01:00
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
2018-06-26 17:06:17 +02:00
auto *window = new Window(type);
2018-07-06 19:23:47 +02:00
this->windows_.push_back(window);
window->show();
2017-11-12 17:21:50 +01:00
if (type != WindowType::Main) {
window->setAttribute(Qt::WA_DeleteOnClose);
QObject::connect(window, &QWidget::destroyed, [this, window] {
2018-08-06 21:17:03 +02:00
for (auto it = this->windows_.begin(); it != this->windows_.end();
it++) {
if (*it == window) {
2018-07-06 19:23:47 +02:00
this->windows_.erase(it);
break;
}
}
});
}
2017-11-12 17:21:50 +01:00
return *window;
}
2017-12-14 00:25:06 +01:00
int WindowManager::windowCount()
{
2018-07-06 19:23:47 +02:00
return this->windows_.size();
2017-12-14 00:25:06 +01:00
}
2018-06-26 17:06:17 +02:00
Window *WindowManager::windowAt(int index)
2017-12-14 00:25:06 +01:00
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
2018-07-06 19:23:47 +02:00
if (index < 0 || (size_t)index >= this->windows_.size()) {
2017-12-14 00:25:06 +01:00
return nullptr;
}
2018-08-11 14:20:53 +02:00
log("getting window at bad index {}", index);
2017-12-14 00:25:06 +01:00
2018-07-06 19:23:47 +02:00
return this->windows_.at(index);
2017-12-14 00:25:06 +01:00
}
2018-08-02 14:23:27 +02:00
void WindowManager::initialize(Settings &settings, Paths &paths)
2017-01-26 21:04:01 +01:00
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
2018-08-02 14:23:27 +02:00
getApp()->themes->repaintVisibleChatWidgets_.connect(
[this] { this->repaintVisibleChatWidgets(); });
2018-07-06 19:23:47 +02:00
assert(!this->initialized_);
// load file
2018-07-07 11:41:01 +02:00
QString settingsPath = getPaths()->settingsDirectory + SETTINGS_FILENAME;
QFile file(settingsPath);
file.open(QIODevice::ReadOnly);
QByteArray data = file.readAll();
QJsonDocument document = QJsonDocument::fromJson(data);
QJsonArray windows_arr = document.object().value("windows").toArray();
// "deserialize"
for (QJsonValue window_val : windows_arr) {
QJsonObject window_obj = window_val.toObject();
// get type
QString type_val = window_obj.value("type").toString();
WindowType type =
type_val == "main" ? WindowType::Main : WindowType::Popup;
if (type == WindowType::Main && mainWindow_ != nullptr) {
type = WindowType::Popup;
}
2018-06-26 17:06:17 +02:00
Window &window = createWindow(type);
if (type == WindowType::Main) {
2018-07-06 19:23:47 +02:00
mainWindow_ = &window;
}
// get geometry
{
int x = window_obj.value("x").toInt(-1);
int y = window_obj.value("y").toInt(-1);
int width = window_obj.value("width").toInt(-1);
int height = window_obj.value("height").toInt(-1);
if (x != -1 && y != -1 && width != -1 && height != -1) {
// Have to offset x by one because qt moves the window 1px too
// far to the left
window.setGeometry(x + 1, y, width, height);
}
}
// load tabs
QJsonArray tabs = window_obj.value("tabs").toArray();
for (QJsonValue tab_val : tabs) {
2018-06-26 17:06:17 +02:00
SplitContainer *page = window.getNotebook().addPage(false);
QJsonObject tab_obj = tab_val.toObject();
// set custom title
QJsonValue title_val = tab_obj.value("title");
if (title_val.isString()) {
2018-06-01 16:01:49 +02:00
page->getTab()->setCustomTitle(title_val.toString());
}
2018-04-10 15:59:53 +02:00
// selected
if (tab_obj.value("selected").toBool(false)) {
2018-05-23 04:22:17 +02:00
window.getNotebook().select(page);
2018-04-10 15:59:53 +02:00
}
// highlighting on new messages
bool val = tab_obj.value("highlightsEnabled").toBool(true);
page->getTab()->setHighlightsEnabled(val);
// load splits
2018-05-16 14:55:45 +02:00
QJsonObject splitRoot = tab_obj.value("splits2").toObject();
if (!splitRoot.isEmpty()) {
2018-05-23 04:22:17 +02:00
page->decodeFromJson(splitRoot);
2018-05-16 14:55:45 +02:00
continue;
}
// fallback load splits (old)
int colNr = 0;
for (QJsonValue column_val : tab_obj.value("splits").toArray()) {
for (QJsonValue split_val : column_val.toArray()) {
2018-06-26 17:06:17 +02:00
Split *split = new Split(page);
QJsonObject split_obj = split_val.toObject();
2018-05-16 14:55:45 +02:00
split->setChannel(decodeChannel(split_obj));
2018-05-23 04:22:17 +02:00
page->appendSplit(split);
}
colNr++;
}
}
}
2018-07-06 19:23:47 +02:00
if (mainWindow_ == nullptr) {
mainWindow_ = &createWindow(WindowType::Main);
2018-07-06 19:23:47 +02:00
mainWindow_->getNotebook().addPage(true);
}
2018-08-06 21:17:03 +02:00
settings.timestampFormat.connect(
[this](auto, auto) { this->layoutChannelViews(); });
2018-07-07 11:41:01 +02:00
2018-08-06 21:17:03 +02:00
settings.emoteScale.connect(
[this](auto, auto) { this->forceLayoutChannelViews(); });
2018-07-07 11:41:01 +02:00
2018-08-06 21:17:03 +02:00
settings.timestampFormat.connect(
[this](auto, auto) { this->forceLayoutChannelViews(); });
2018-08-02 14:23:27 +02:00
settings.alternateMessageBackground.connect(
2018-07-07 11:41:01 +02:00
[this](auto, auto) { this->forceLayoutChannelViews(); });
2018-08-06 21:17:03 +02:00
settings.separateMessages.connect(
[this](auto, auto) { this->forceLayoutChannelViews(); });
2018-08-02 14:23:27 +02:00
settings.collpseMessagesMinLines.connect(
2018-07-07 11:41:01 +02:00
[this](auto, auto) { this->forceLayoutChannelViews(); });
2018-07-06 19:23:47 +02:00
this->initialized_ = true;
}
void WindowManager::save()
{
log("[WindowManager] Saving");
2018-06-26 17:06:17 +02:00
assertInGuiThread();
auto app = getApp();
QJsonDocument document;
// "serialize"
QJsonArray window_arr;
2018-07-06 19:23:47 +02:00
for (Window *window : this->windows_) {
QJsonObject window_obj;
// window type
switch (window->getType()) {
case WindowType::Main:
window_obj.insert("type", "main");
break;
2018-07-07 11:41:01 +02:00
case WindowType::Popup:
window_obj.insert("type", "popup");
break;
2018-07-07 11:41:01 +02:00
case WindowType::Attached:;
}
// window geometry
window_obj.insert("x", window->x());
window_obj.insert("y", window->y());
window_obj.insert("width", window->width());
window_obj.insert("height", window->height());
// window tabs
QJsonArray tabs_arr;
2018-08-06 21:17:03 +02:00
for (int tab_i = 0; tab_i < window->getNotebook().getPageCount();
tab_i++) {
QJsonObject tab_obj;
2018-08-06 21:17:03 +02:00
SplitContainer *tab = dynamic_cast<SplitContainer *>(
window->getNotebook().getPageAt(tab_i));
2018-05-23 04:22:17 +02:00
assert(tab != nullptr);
// custom tab title
2018-06-01 16:01:49 +02:00
if (tab->getTab()->hasCustomTitle()) {
tab_obj.insert("title", tab->getTab()->getCustomTitle());
}
2018-04-10 15:59:53 +02:00
// selected
if (window->getNotebook().getSelectedPage() == tab) {
tab_obj.insert("selected", true);
}
// highlighting on new messages
tab_obj.insert("highlightsEnabled",
tab->getTab()->hasHighlightsEnabled());
// splits
2018-05-16 14:55:45 +02:00
QJsonObject splits;
2018-05-16 14:55:45 +02:00
this->encodeNodeRecusively(tab->getBaseNode(), splits);
2018-05-16 14:55:45 +02:00
tab_obj.insert("splits2", splits);
tabs_arr.append(tab_obj);
}
window_obj.insert("tabs", tabs_arr);
window_arr.append(window_obj);
}
QJsonObject obj;
obj.insert("windows", window_arr);
document.setObject(obj);
// save file
QString settingsPath = getPaths()->settingsDirectory + SETTINGS_FILENAME;
QFile file(settingsPath);
file.open(QIODevice::WriteOnly | QIODevice::Truncate);
2018-05-16 14:55:45 +02:00
QJsonDocument::JsonFormat format =
#ifdef _DEBUG
QJsonDocument::JsonFormat::Compact
#else
(QJsonDocument::JsonFormat)0
#endif
;
file.write(document.toJson(format));
file.flush();
}
2018-10-07 12:55:44 +02:00
void WindowManager::sendAlert()
{
int flashDuration = 2500;
if (getSettings()->longAlerts) {
flashDuration = 0;
}
2018-10-07 15:37:17 +02:00
QApplication::alert(this->getMainWindow().window(), flashDuration);
2018-10-07 12:55:44 +02:00
}
void WindowManager::queueSave()
{
using namespace std::chrono_literals;
this->saveTimer->start(10s);
}
2018-05-16 14:55:45 +02:00
void WindowManager::encodeNodeRecusively(SplitNode *node, QJsonObject &obj)
{
switch (node->getType()) {
case SplitNode::_Split: {
obj.insert("type", "split");
QJsonObject split;
encodeChannel(node->getSplit()->getIndirectChannel(), split);
obj.insert("data", split);
obj.insert("flexh", node->getHorizontalFlex());
obj.insert("flexv", node->getVerticalFlex());
} break;
case SplitNode::HorizontalContainer:
case SplitNode::VerticalContainer: {
2018-08-06 21:17:03 +02:00
obj.insert("type", node->getType() == SplitNode::HorizontalContainer
? "horizontal"
: "vertical");
2018-05-16 14:55:45 +02:00
QJsonArray items_arr;
for (const std::unique_ptr<SplitNode> &n : node->getChildren()) {
QJsonObject subObj;
this->encodeNodeRecusively(n.get(), subObj);
items_arr.append(subObj);
}
obj.insert("items", items_arr);
} break;
}
}
void WindowManager::encodeChannel(IndirectChannel channel, QJsonObject &obj)
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
switch (channel.getType()) {
2018-07-06 17:30:12 +02:00
case Channel::Type::Twitch: {
obj.insert("type", "twitch");
2018-08-02 14:23:27 +02:00
obj.insert("name", channel.get()->getName());
} break;
2018-07-06 17:30:12 +02:00
case Channel::Type::TwitchMentions: {
obj.insert("type", "mentions");
} break;
2018-07-06 17:30:12 +02:00
case Channel::Type::TwitchWatching: {
obj.insert("type", "watching");
} break;
2018-07-06 17:30:12 +02:00
case Channel::Type::TwitchWhispers: {
obj.insert("type", "whispers");
} break;
}
}
IndirectChannel WindowManager::decodeChannel(const QJsonObject &obj)
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
auto app = getApp();
QString type = obj.value("type").toString();
if (type == "twitch") {
2018-08-06 21:17:03 +02:00
return app->twitch.server->getOrAddChannel(
obj.value("name").toString());
} else if (type == "mentions") {
return app->twitch.server->mentionsChannel;
} else if (type == "watching") {
return app->twitch.server->watchingChannel;
} else if (type == "whispers") {
return app->twitch.server->whispersChannel;
}
return Channel::getEmpty();
}
void WindowManager::closeAll()
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
2018-07-06 19:23:47 +02:00
for (Window *window : windows_) {
window->close();
}
2017-01-26 21:04:01 +01:00
}
int WindowManager::getGeneration() const
{
2018-07-06 19:23:47 +02:00
return this->generation_;
}
void WindowManager::incGeneration()
{
2018-07-06 19:23:47 +02:00
this->generation_++;
}
2018-06-11 15:04:54 +02:00
int WindowManager::clampUiScale(int scale)
{
2018-06-26 17:06:17 +02:00
return clamp(scale, uiScaleMin, uiScaleMax);
2018-06-11 15:04:54 +02:00
}
float WindowManager::getUiScaleValue()
{
return getUiScaleValue(getSettings()->uiScale.getValue());
2018-06-11 15:04:54 +02:00
}
float WindowManager::getUiScaleValue(int scale)
{
switch (clampUiScale(scale)) {
case -5:
return 0.5f;
case -4:
return 0.6f;
case -3:
return 0.7f;
case -2:
return 0.8f;
case -1:
return 0.9f;
case 0:
return 1;
case 1:
return 1.2f;
case 2:
return 1.4f;
case 3:
return 1.6f;
case 4:
return 1.6f;
case 5:
return 2;
case 6:
return 2.33f;
case 7:
return 2.66f;
case 8:
return 3;
case 9:
return 3.5f;
case 10:
return 4;
2018-06-21 13:02:34 +02:00
default:
assert(false);
2018-06-11 15:04:54 +02:00
}
}
2017-04-14 17:52:22 +02:00
} // namespace chatterino