mirror-chatterino2/src/singletons/WindowManager.cpp

526 lines
14 KiB
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "WindowManager.hpp"
#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 "providers/twitch/TwitchServer.hpp"
2018-06-28 19:46:45 +02:00
#include "singletons/Fonts.hpp"
#include "singletons/Paths.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"
2018-06-26 15:11:45 +02:00
#include "widgets/dialogs/SettingsDialog.hpp"
2017-01-15 16:38:30 +01:00
2018-05-16 14:55:45 +02:00
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonObject>
#include <QDebug>
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->showBadges);
this->wordFlagsListener_.addSetting(settings->enableBttvEmotes);
this->wordFlagsListener_.addSetting(settings->enableEmojis);
this->wordFlagsListener_.addSetting(settings->enableFfzEmotes);
this->wordFlagsListener_.addSetting(settings->enableTwitchEmotes);
this->wordFlagsListener_.cb = [this](auto) {
this->updateWordTypeMask(); //
};
}
MessageElement::Flags WindowManager::getWordFlags()
{
2018-07-06 19:23:47 +02:00
return this->wordFlags_;
}
void WindowManager::updateWordTypeMask()
{
using MEF = MessageElement::Flags;
auto settings = getSettings();
// text
auto flags = MEF::Text | MEF::Text;
// timestamp
if (settings->showTimestamps) {
flags |= MEF::Timestamp;
}
// emotes
flags |= settings->enableTwitchEmotes ? MEF::TwitchEmoteImage : MEF::TwitchEmoteText;
flags |= settings->enableFfzEmotes ? MEF::FfzEmoteImage : MEF::FfzEmoteText;
flags |= settings->enableBttvEmotes ? MEF::BttvEmoteImage : MEF::BttvEmoteText;
flags |= settings->enableEmojis ? MEF::EmojiImage : MEF::EmojiText;
// bits
flags |= MEF::BitsAmount;
flags |= settings->enableGifAnimations ? MEF::BitsAnimated : MEF::BitsStatic;
// badges
flags |= settings->showBadges ? MEF::Badges : MEF::None;
// username
flags |= MEF::Username;
// misc
flags |= MEF::AlwaysShow;
flags |= MEF::Collapsed;
// update flags
MessageElement::Flags newFlags = static_cast<MessageElement::Flags>(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
}
2018-07-06 17:02:26 +02:00
Window &WindowManager::createWindow(Window::Type 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
2018-07-06 17:02:26 +02:00
if (type != Window::Type::Main) {
window->setAttribute(Qt::WA_DeleteOnClose);
QObject::connect(window, &QWidget::destroyed, [this, window] {
2018-07-06 19:23:47 +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-06-26 17:06:17 +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
}
void WindowManager::initialize()
2017-01-26 21:04:01 +01:00
{
2018-06-26 17:06:17 +02:00
assertInGuiThread();
auto app = getApp();
2018-07-06 19:23:47 +02:00
app->themes->repaintVisibleChatWidgets_.connect([this] { this->repaintVisibleChatWidgets(); });
2018-07-06 19:23:47 +02:00
assert(!this->initialized_);
// load file
2018-06-21 13:02:34 +02:00
QString settingsPath = app->paths->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();
2018-07-06 17:02:26 +02:00
Window::Type type = type_val == "main" ? Window::Type::Main : Window::Type::Popup;
2018-07-06 19:23:47 +02:00
if (type == Window::Type::Main && mainWindow_ != nullptr) {
2018-07-06 17:02:26 +02:00
type = Window::Type::Popup;
}
2018-06-26 17:06:17 +02:00
Window &window = createWindow(type);
2018-07-06 17:02:26 +02:00
if (type == Window::Type::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) {
window.setGeometry(x, 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
}
// 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(Window::Type::Main);
mainWindow_->getNotebook().addPage(true);
}
2018-07-06 19:23:47 +02:00
this->initialized_ = true;
}
void WindowManager::save()
{
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()) {
2018-07-06 17:02:26 +02:00
case Window::Type::Main:
window_obj.insert("type", "main");
break;
2018-07-06 17:02:26 +02:00
case Window::Type::Popup:
window_obj.insert("type", "popup");
break;
}
// 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-05-23 04:22:17 +02:00
for (int tab_i = 0; tab_i < window->getNotebook().getPageCount(); tab_i++) {
QJsonObject tab_obj;
2018-06-26 17:06:17 +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);
}
// 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
2018-06-21 13:02:34 +02:00
QString settingsPath = app->paths->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-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: {
obj.insert("type", node->getType() == SplitNode::HorizontalContainer ? "horizontal"
: "vertical");
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");
obj.insert("name", channel.get()->name);
} 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") {
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(getApp()->settings->uiScale.getValue());
}
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