2018-07-15 14:03:41 +02:00
|
|
|
#include "singletons/WindowManager.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
|
2019-09-22 15:32:36 +02:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QDesktopWidget>
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QSaveFile>
|
|
|
|
#include <QScreen>
|
|
|
|
#include <boost/optional.hpp>
|
|
|
|
#include <chrono>
|
|
|
|
|
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"
|
2018-08-11 22:23:06 +02:00
|
|
|
#include "messages/MessageElement.hpp"
|
2019-09-11 00:10:49 +02:00
|
|
|
#include "providers/irc/Irc2.hpp"
|
|
|
|
#include "providers/irc/IrcChannel2.hpp"
|
|
|
|
#include "providers/irc/IrcServer.hpp"
|
2019-09-15 13:02:02 +02:00
|
|
|
#include "providers/twitch/TwitchIrcServer.hpp"
|
2018-06-28 19:46:45 +02:00
|
|
|
#include "singletons/Fonts.hpp"
|
|
|
|
#include "singletons/Paths.hpp"
|
2018-08-11 22:23:06 +02:00
|
|
|
#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"
|
2019-09-01 14:13:44 +02:00
|
|
|
#include "widgets/AccountSwitchPopup.hpp"
|
2018-08-11 22:23:06 +02:00
|
|
|
#include "widgets/Notebook.hpp"
|
|
|
|
#include "widgets/Window.hpp"
|
2018-06-26 15:11:45 +02:00
|
|
|
#include "widgets/dialogs/SettingsDialog.hpp"
|
2018-08-11 22:23:06 +02:00
|
|
|
#include "widgets/helper/NotebookTab.hpp"
|
|
|
|
#include "widgets/splits/Split.hpp"
|
|
|
|
#include "widgets/splits/SplitContainer.hpp"
|
2017-01-15 16:38:30 +01:00
|
|
|
|
2018-06-21 13:02:34 +02:00
|
|
|
#define SETTINGS_FILENAME "/window-layout.json"
|
2018-04-06 23:31:34 +02:00
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace chatterino {
|
2019-08-25 21:23:54 +02:00
|
|
|
namespace {
|
|
|
|
QJsonArray loadWindowArray(const QString &settingsPath)
|
|
|
|
{
|
|
|
|
QFile file(settingsPath);
|
|
|
|
file.open(QIODevice::ReadOnly);
|
|
|
|
QByteArray data = file.readAll();
|
|
|
|
QJsonDocument document = QJsonDocument::fromJson(data);
|
|
|
|
QJsonArray windows_arr = document.object().value("windows").toArray();
|
|
|
|
return windows_arr;
|
|
|
|
}
|
|
|
|
|
2019-08-25 22:58:19 +02:00
|
|
|
boost::optional<bool> &shouldMoveOutOfBoundsWindow()
|
2019-08-25 21:23:54 +02:00
|
|
|
{
|
2019-08-25 22:58:19 +02:00
|
|
|
static boost::optional<bool> x;
|
2019-08-25 21:23:54 +02:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
} // namespace
|
2018-01-05 02:56:18 +01:00
|
|
|
|
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-10-21 15:32:28 +02:00
|
|
|
void WindowManager::showSettingsDialog(SettingsDialogPreference preference)
|
2018-01-24 15:08:22 +01:00
|
|
|
{
|
2018-10-21 15:32:28 +02:00
|
|
|
QTimer::singleShot(
|
|
|
|
80, [preference] { SettingsDialog::showDialog(preference); });
|
2018-01-24 15:08:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void WindowManager::showAccountSelectPopup(QPoint point)
|
|
|
|
{
|
|
|
|
// static QWidget *lastFocusedWidget = nullptr;
|
2019-09-01 14:13:44 +02:00
|
|
|
static AccountSwitchPopup *w = new AccountSwitchPopup();
|
2018-01-24 15:08:22 +01:00
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
if (w->hasFocus())
|
|
|
|
{
|
2018-01-24 15:08:22 +01:00
|
|
|
w->hide();
|
|
|
|
// if (lastFocusedWidget) {
|
|
|
|
// lastFocusedWidget->setFocus();
|
|
|
|
// }
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// lastFocusedWidget = this->focusWidget();
|
|
|
|
|
|
|
|
w->refresh();
|
|
|
|
|
|
|
|
QPoint buttonPos = point;
|
2019-09-08 12:43:12 +02:00
|
|
|
w->move(buttonPos.x() - 30, buttonPos.y());
|
2018-01-24 15:08:22 +01:00
|
|
|
w->show();
|
|
|
|
w->setFocus();
|
|
|
|
}
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
WindowManager::WindowManager()
|
2017-04-13 19:25:33 +02:00
|
|
|
{
|
2018-04-26 18:10:26 +02:00
|
|
|
qDebug() << "init WindowManager";
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
auto settings = getSettings();
|
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
this->wordFlagsListener_.addSetting(settings->showTimestamps);
|
2018-09-16 17:42:30 +02:00
|
|
|
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);
|
2019-06-22 14:34:54 +02:00
|
|
|
this->wordFlagsListener_.addSetting(settings->enableEmoteImages);
|
2018-10-31 19:45:51 +01:00
|
|
|
this->wordFlagsListener_.addSetting(settings->boldUsernames);
|
|
|
|
this->wordFlagsListener_.addSetting(settings->lowercaseDomains);
|
2019-01-22 22:15:38 +01:00
|
|
|
this->wordFlagsListener_.setCB([this] {
|
|
|
|
this->updateWordTypeMask(); //
|
|
|
|
});
|
2018-10-07 18:27:40 +02:00
|
|
|
|
|
|
|
this->saveTimer = new QTimer;
|
|
|
|
|
|
|
|
this->saveTimer->setSingleShot(true);
|
|
|
|
|
|
|
|
QObject::connect(this->saveTimer, &QTimer::timeout, [] {
|
|
|
|
getApp()->windows->save(); //
|
|
|
|
});
|
2018-06-28 19:38:57 +02:00
|
|
|
}
|
|
|
|
|
2018-08-07 07:55:31 +02:00
|
|
|
MessageElementFlags WindowManager::getWordFlags()
|
2018-06-28 19:38:57 +02:00
|
|
|
{
|
2018-07-06 19:23:47 +02:00
|
|
|
return this->wordFlags_;
|
2018-06-28 19:38:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WindowManager::updateWordTypeMask()
|
|
|
|
{
|
2018-08-07 07:55:31 +02:00
|
|
|
using MEF = MessageElementFlag;
|
2018-06-28 19:38:57 +02:00
|
|
|
auto settings = getSettings();
|
|
|
|
|
|
|
|
// text
|
2018-08-07 07:55:31 +02:00
|
|
|
auto flags = MessageElementFlags(MEF::Text);
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
// timestamp
|
2018-10-21 13:43:02 +02:00
|
|
|
if (settings->showTimestamps)
|
|
|
|
{
|
2018-08-07 07:55:31 +02:00
|
|
|
flags.set(MEF::Timestamp);
|
2018-06-28 19:38:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// emotes
|
2019-06-22 14:34:54 +02:00
|
|
|
if (settings->enableEmoteImages)
|
|
|
|
{
|
|
|
|
flags.set(MEF::EmoteImages);
|
|
|
|
}
|
|
|
|
flags.set(MEF::EmoteText);
|
|
|
|
flags.set(MEF::EmojiText);
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
// bits
|
2018-08-07 07:55:31 +02:00
|
|
|
flags.set(MEF::BitsAmount);
|
2018-11-14 17:26:08 +01:00
|
|
|
flags.set(settings->animateEmotes ? MEF::BitsAnimated : MEF::BitsStatic);
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
// badges
|
2018-09-16 17:42:30 +02:00
|
|
|
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);
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
// username
|
2018-08-07 07:55:31 +02:00
|
|
|
flags.set(MEF::Username);
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
// misc
|
2018-08-07 07:55:31 +02:00
|
|
|
flags.set(MEF::AlwaysShow);
|
|
|
|
flags.set(MEF::Collapsed);
|
2018-10-31 19:45:51 +01:00
|
|
|
flags.set(settings->boldUsernames ? MEF::BoldUsername
|
2018-11-14 17:26:08 +01:00
|
|
|
: MEF::NonBoldUsername);
|
2018-10-31 19:45:51 +01:00
|
|
|
flags.set(settings->lowercaseDomains ? MEF::LowercaseLink
|
2018-11-14 17:26:08 +01:00
|
|
|
: MEF::OriginalLink);
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
// update flags
|
2018-08-07 07:55:31 +02:00
|
|
|
MessageElementFlags newFlags = static_cast<MessageElementFlags>(flags);
|
2018-06-28 19:38:57 +02:00
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
if (newFlags != this->wordFlags_)
|
|
|
|
{
|
2018-07-06 19:23:47 +02:00
|
|
|
this->wordFlags_ = newFlags;
|
2018-06-28 19:38:57 +02:00
|
|
|
|
|
|
|
this->wordFlagsChanged.invoke();
|
|
|
|
}
|
2017-04-13 19:25:33 +02:00
|
|
|
}
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2018-06-04 16:10:54 +02:00
|
|
|
void WindowManager::layoutChannelViews(Channel *channel)
|
2017-01-15 16:38:30 +01:00
|
|
|
{
|
2018-11-14 17:26:08 +01:00
|
|
|
this->layoutRequested.invoke(channel);
|
2017-01-16 03:15:07 +01:00
|
|
|
}
|
|
|
|
|
2018-06-04 16:10:54 +02:00
|
|
|
void WindowManager::forceLayoutChannelViews()
|
|
|
|
{
|
|
|
|
this->incGeneration();
|
|
|
|
this->layoutChannelViews(nullptr);
|
|
|
|
}
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void WindowManager::repaintVisibleChatWidgets(Channel *channel)
|
2017-01-16 03:15:07 +01:00
|
|
|
{
|
2018-11-14 17:26:08 +01:00
|
|
|
this->layoutRequested.invoke(channel);
|
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
|
|
|
{
|
2018-11-14 17:26:08 +01:00
|
|
|
this->gifRepaintRequested.invoke();
|
2017-02-07 00:03:15 +01:00
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02: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-04-26 18:10:26 +02:00
|
|
|
|
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-04-26 18:10:26 +02:00
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
return *this->selectedWindow_;
|
2017-11-12 17:21:50 +01:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:26:58 +02:00
|
|
|
Window &WindowManager::createWindow(WindowType type, bool show)
|
2017-11-12 17:21:50 +01:00
|
|
|
{
|
2018-06-26 17:06:17 +02:00
|
|
|
assertInGuiThread();
|
2018-04-26 18:10:26 +02:00
|
|
|
|
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);
|
2019-08-26 11:26:58 +02:00
|
|
|
if (show)
|
|
|
|
{
|
|
|
|
window->show();
|
|
|
|
}
|
2017-11-12 17:21:50 +01:00
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
if (type != WindowType::Main)
|
|
|
|
{
|
2018-04-08 14:13:48 +02:00
|
|
|
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();
|
2018-10-21 13:43:02 +02:00
|
|
|
it++)
|
|
|
|
{
|
|
|
|
if (*it == window)
|
|
|
|
{
|
2018-07-06 19:23:47 +02:00
|
|
|
this->windows_.erase(it);
|
2018-04-08 14:13:48 +02:00
|
|
|
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-04-26 18:10:26 +02:00
|
|
|
|
2018-10-21 13:43:02 +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-04-26 18:10:26 +02:00
|
|
|
|
2018-08-02 14:23:27 +02:00
|
|
|
getApp()->themes->repaintVisibleChatWidgets_.connect(
|
|
|
|
[this] { this->repaintVisibleChatWidgets(); });
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
assert(!this->initialized_);
|
2018-04-06 23:31:34 +02:00
|
|
|
|
|
|
|
// load file
|
2018-07-07 11:41:01 +02:00
|
|
|
QString settingsPath = getPaths()->settingsDirectory + SETTINGS_FILENAME;
|
2019-08-25 21:23:54 +02:00
|
|
|
QJsonArray windows_arr = loadWindowArray(settingsPath);
|
2018-04-06 23:31:34 +02:00
|
|
|
|
|
|
|
// "deserialize"
|
2018-10-21 13:43:02 +02:00
|
|
|
for (QJsonValue window_val : windows_arr)
|
|
|
|
{
|
2018-04-06 23:31:34 +02:00
|
|
|
QJsonObject window_obj = window_val.toObject();
|
|
|
|
|
|
|
|
// get type
|
|
|
|
QString type_val = window_obj.value("type").toString();
|
2018-08-11 22:23:06 +02:00
|
|
|
WindowType type =
|
|
|
|
type_val == "main" ? WindowType::Main : WindowType::Popup;
|
2018-04-06 23:31:34 +02:00
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
if (type == WindowType::Main && mainWindow_ != nullptr)
|
|
|
|
{
|
2018-08-11 22:23:06 +02:00
|
|
|
type = WindowType::Popup;
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
2019-08-26 11:26:58 +02:00
|
|
|
Window &window = createWindow(type, false);
|
2018-04-06 23:31:34 +02:00
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
if (type == WindowType::Main)
|
|
|
|
{
|
2018-07-06 19:23:47 +02:00
|
|
|
mainWindow_ = &window;
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
2019-08-25 21:23:54 +02:00
|
|
|
QRect geometry{x, y, width, height};
|
|
|
|
|
|
|
|
// out of bounds windows
|
|
|
|
auto screens = qApp->screens();
|
|
|
|
bool outOfBounds = std::none_of(
|
|
|
|
screens.begin(), screens.end(), [&](QScreen *screen) {
|
2019-08-26 13:18:40 +02:00
|
|
|
return screen->availableGeometry().intersects(geometry);
|
2019-08-25 21:23:54 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// ask if move into bounds
|
|
|
|
auto &&should = shouldMoveOutOfBoundsWindow();
|
|
|
|
if (outOfBounds && !should)
|
|
|
|
{
|
|
|
|
should =
|
|
|
|
QMessageBox(QMessageBox::Icon::Warning,
|
|
|
|
"Windows out of bounds",
|
|
|
|
"Some windows were detected out of bounds. "
|
|
|
|
"Should they be moved into bounds?",
|
|
|
|
QMessageBox::Yes | QMessageBox::No)
|
|
|
|
.exec() == QMessageBox::Yes;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!outOfBounds || !should.value()) && x != -1 && y != -1 &&
|
|
|
|
width != -1 && height != -1)
|
2018-10-21 13:43:02 +02:00
|
|
|
{
|
2018-10-04 11:07:46 +02:00
|
|
|
// Have to offset x by one because qt moves the window 1px too
|
2019-08-25 21:23:54 +02:00
|
|
|
// far to the left:w
|
|
|
|
|
2019-09-01 14:06:30 +02:00
|
|
|
window.setInitialBounds({x, y, width, height});
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// load tabs
|
|
|
|
QJsonArray tabs = window_obj.value("tabs").toArray();
|
2018-10-21 13:43:02 +02:00
|
|
|
for (QJsonValue tab_val : tabs)
|
|
|
|
{
|
2018-06-26 17:06:17 +02:00
|
|
|
SplitContainer *page = window.getNotebook().addPage(false);
|
2018-04-06 23:31:34 +02:00
|
|
|
|
|
|
|
QJsonObject tab_obj = tab_val.toObject();
|
|
|
|
|
|
|
|
// set custom title
|
|
|
|
QJsonValue title_val = tab_obj.value("title");
|
2018-10-21 13:43:02 +02:00
|
|
|
if (title_val.isString())
|
|
|
|
{
|
2018-06-01 16:01:49 +02:00
|
|
|
page->getTab()->setCustomTitle(title_val.toString());
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
2018-04-10 15:59:53 +02:00
|
|
|
// selected
|
2018-10-21 13:43:02 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-09-30 15:02:30 +02:00
|
|
|
// highlighting on new messages
|
|
|
|
bool val = tab_obj.value("highlightsEnabled").toBool(true);
|
|
|
|
page->getTab()->setHighlightsEnabled(val);
|
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
// load splits
|
2018-05-16 14:55:45 +02:00
|
|
|
QJsonObject splitRoot = tab_obj.value("splits2").toObject();
|
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
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)
|
2018-04-06 23:31:34 +02:00
|
|
|
int colNr = 0;
|
2018-10-21 13:43:02 +02:00
|
|
|
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);
|
2018-04-06 23:31:34 +02:00
|
|
|
|
|
|
|
QJsonObject split_obj = split_val.toObject();
|
2018-05-16 14:55:45 +02:00
|
|
|
split->setChannel(decodeChannel(split_obj));
|
2018-04-06 23:31:34 +02:00
|
|
|
|
2018-05-23 04:22:17 +02:00
|
|
|
page->appendSplit(split);
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
colNr++;
|
|
|
|
}
|
|
|
|
}
|
2019-08-26 11:26:58 +02:00
|
|
|
window.show();
|
2019-08-26 22:32:17 +02:00
|
|
|
|
|
|
|
if (window_obj.value("state") == "minimized")
|
|
|
|
{
|
|
|
|
window.setWindowState(Qt::WindowMinimized);
|
|
|
|
}
|
|
|
|
else if (window_obj.value("state") == "maximized")
|
|
|
|
{
|
|
|
|
window.setWindowState(Qt::WindowMaximized);
|
|
|
|
}
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
if (mainWindow_ == nullptr)
|
|
|
|
{
|
2018-08-11 22:23:06 +02:00
|
|
|
mainWindow_ = &createWindow(WindowType::Main);
|
2018-07-06 19:23:47 +02:00
|
|
|
mainWindow_->getNotebook().addPage(true);
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
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-10-31 19:45:51 +01:00
|
|
|
settings.alternateMessages.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;
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
2017-01-28 22:35:23 +01:00
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
void WindowManager::save()
|
|
|
|
{
|
2018-10-07 18:27:40 +02:00
|
|
|
log("[WindowManager] Saving");
|
2018-06-26 17:06:17 +02:00
|
|
|
assertInGuiThread();
|
2018-04-06 23:31:34 +02:00
|
|
|
QJsonDocument document;
|
2017-01-28 22:35:23 +01:00
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
// "serialize"
|
|
|
|
QJsonArray window_arr;
|
2018-10-21 13:43:02 +02:00
|
|
|
for (Window *window : this->windows_)
|
|
|
|
{
|
2018-04-06 23:31:34 +02:00
|
|
|
QJsonObject window_obj;
|
|
|
|
|
|
|
|
// window type
|
2018-10-21 13:43:02 +02:00
|
|
|
switch (window->getType())
|
|
|
|
{
|
2018-08-11 22:23:06 +02:00
|
|
|
case WindowType::Main:
|
2018-04-06 23:31:34 +02:00
|
|
|
window_obj.insert("type", "main");
|
|
|
|
break;
|
2018-07-07 11:41:01 +02:00
|
|
|
|
2018-08-11 22:23:06 +02:00
|
|
|
case WindowType::Popup:
|
2018-04-06 23:31:34 +02:00
|
|
|
window_obj.insert("type", "popup");
|
|
|
|
break;
|
2018-07-07 11:41:01 +02:00
|
|
|
|
2018-08-11 22:23:06 +02:00
|
|
|
case WindowType::Attached:;
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
2018-10-29 22:11:42 +01:00
|
|
|
if (window->isMaximized())
|
|
|
|
{
|
|
|
|
window_obj.insert("state", "maximized");
|
|
|
|
}
|
|
|
|
else if (window->isMinimized())
|
|
|
|
{
|
|
|
|
window_obj.insert("state", "minimized");
|
|
|
|
}
|
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
// window geometry
|
2019-09-01 14:06:30 +02:00
|
|
|
auto rect = window->getBounds();
|
|
|
|
|
|
|
|
window_obj.insert("x", rect.x());
|
|
|
|
window_obj.insert("y", rect.y());
|
|
|
|
window_obj.insert("width", rect.width());
|
|
|
|
window_obj.insert("height", rect.height());
|
2018-04-06 23:31:34 +02:00
|
|
|
|
|
|
|
// window tabs
|
|
|
|
QJsonArray tabs_arr;
|
|
|
|
|
2018-08-06 21:17:03 +02:00
|
|
|
for (int tab_i = 0; tab_i < window->getNotebook().getPageCount();
|
2018-10-21 13:43:02 +02:00
|
|
|
tab_i++)
|
|
|
|
{
|
2018-04-06 23:31:34 +02:00
|
|
|
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);
|
2018-04-06 23:31:34 +02:00
|
|
|
|
|
|
|
// custom tab title
|
2018-10-21 13:43:02 +02:00
|
|
|
if (tab->getTab()->hasCustomTitle())
|
|
|
|
{
|
2018-06-01 16:01:49 +02:00
|
|
|
tab_obj.insert("title", tab->getTab()->getCustomTitle());
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
2018-04-10 15:59:53 +02:00
|
|
|
// selected
|
2018-10-21 13:43:02 +02:00
|
|
|
if (window->getNotebook().getSelectedPage() == tab)
|
|
|
|
{
|
2018-04-10 15:59:53 +02:00
|
|
|
tab_obj.insert("selected", true);
|
|
|
|
}
|
|
|
|
|
2018-09-30 15:02:30 +02:00
|
|
|
// highlighting on new messages
|
|
|
|
tab_obj.insert("highlightsEnabled",
|
|
|
|
tab->getTab()->hasHighlightsEnabled());
|
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
// splits
|
2018-05-16 14:55:45 +02:00
|
|
|
QJsonObject splits;
|
2018-04-06 23:31:34 +02:00
|
|
|
|
2018-05-16 14:55:45 +02:00
|
|
|
this->encodeNodeRecusively(tab->getBaseNode(), splits);
|
2018-04-06 23:31:34 +02:00
|
|
|
|
2018-05-16 14:55:45 +02:00
|
|
|
tab_obj.insert("splits2", splits);
|
2018-04-06 23:31:34 +02:00
|
|
|
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-08-12 12:56:28 +02:00
|
|
|
QString settingsPath = getPaths()->settingsDirectory + SETTINGS_FILENAME;
|
2019-05-01 09:58:13 +02:00
|
|
|
QSaveFile file(settingsPath);
|
2018-04-06 23:31:34 +02:00
|
|
|
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));
|
2019-05-01 09:58:13 +02:00
|
|
|
file.commit();
|
2018-04-06 23:31:34 +02:00
|
|
|
}
|
|
|
|
|
2018-10-07 12:55:44 +02:00
|
|
|
void WindowManager::sendAlert()
|
|
|
|
{
|
|
|
|
int flashDuration = 2500;
|
2018-10-21 13:43:02 +02:00
|
|
|
if (getSettings()->longAlerts)
|
|
|
|
{
|
2018-10-07 12:55:44 +02:00
|
|
|
flashDuration = 0;
|
|
|
|
}
|
2018-10-07 15:37:17 +02:00
|
|
|
QApplication::alert(this->getMainWindow().window(), flashDuration);
|
2018-10-07 12:55:44 +02:00
|
|
|
}
|
|
|
|
|
2018-10-07 18:27:40 +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)
|
|
|
|
{
|
2018-10-21 13:43:02 +02:00
|
|
|
switch (node->getType())
|
|
|
|
{
|
2019-09-22 15:32:36 +02:00
|
|
|
case SplitNode::_Split: {
|
2018-05-16 14:55:45 +02:00
|
|
|
obj.insert("type", "split");
|
2019-03-24 15:38:09 +01:00
|
|
|
obj.insert("moderationMode", node->getSplit()->getModerationMode());
|
2018-05-16 14:55:45 +02:00
|
|
|
QJsonObject split;
|
|
|
|
encodeChannel(node->getSplit()->getIndirectChannel(), split);
|
|
|
|
obj.insert("data", split);
|
|
|
|
obj.insert("flexh", node->getHorizontalFlex());
|
|
|
|
obj.insert("flexv", node->getVerticalFlex());
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
break;
|
2018-05-16 14:55:45 +02:00
|
|
|
case SplitNode::HorizontalContainer:
|
2019-09-22 15:32:36 +02:00
|
|
|
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;
|
2018-10-21 13:43:02 +02:00
|
|
|
for (const std::unique_ptr<SplitNode> &n : node->getChildren())
|
|
|
|
{
|
2018-05-16 14:55:45 +02:00
|
|
|
QJsonObject subObj;
|
|
|
|
this->encodeNodeRecusively(n.get(), subObj);
|
|
|
|
items_arr.append(subObj);
|
|
|
|
}
|
|
|
|
obj.insert("items", items_arr);
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
break;
|
2018-05-16 14:55:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-20 22:33:28 +02:00
|
|
|
void WindowManager::encodeChannel(IndirectChannel channel, QJsonObject &obj)
|
|
|
|
{
|
2018-06-26 17:06:17 +02:00
|
|
|
assertInGuiThread();
|
2018-04-26 18:10:26 +02:00
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
switch (channel.getType())
|
|
|
|
{
|
2019-09-22 15:32:36 +02:00
|
|
|
case Channel::Type::Twitch: {
|
2018-04-20 22:33:28 +02:00
|
|
|
obj.insert("type", "twitch");
|
2018-08-02 14:23:27 +02:00
|
|
|
obj.insert("name", channel.get()->getName());
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
break;
|
2019-09-22 15:32:36 +02:00
|
|
|
case Channel::Type::TwitchMentions: {
|
2018-04-20 22:33:28 +02:00
|
|
|
obj.insert("type", "mentions");
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
break;
|
2019-09-22 15:32:36 +02:00
|
|
|
case Channel::Type::TwitchWatching: {
|
2018-04-20 22:33:28 +02:00
|
|
|
obj.insert("type", "watching");
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
break;
|
2019-09-22 15:32:36 +02:00
|
|
|
case Channel::Type::TwitchWhispers: {
|
2018-04-20 22:33:28 +02:00
|
|
|
obj.insert("type", "whispers");
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
break;
|
2019-09-22 15:32:36 +02:00
|
|
|
case Channel::Type::Irc: {
|
2019-09-11 00:10:49 +02:00
|
|
|
if (auto ircChannel =
|
|
|
|
dynamic_cast<IrcChannel *>(channel.get().get()))
|
|
|
|
{
|
|
|
|
obj.insert("type", "irc");
|
2019-09-14 18:38:09 +02:00
|
|
|
if (ircChannel->server())
|
|
|
|
{
|
|
|
|
obj.insert("server", ircChannel->server()->id());
|
|
|
|
}
|
2019-09-11 00:10:49 +02:00
|
|
|
obj.insert("channel", ircChannel->getName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2018-04-20 22:33:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IndirectChannel WindowManager::decodeChannel(const QJsonObject &obj)
|
|
|
|
{
|
2018-06-26 17:06:17 +02:00
|
|
|
assertInGuiThread();
|
2018-04-26 18:10:26 +02:00
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
2018-04-20 22:33:28 +02:00
|
|
|
QString type = obj.value("type").toString();
|
2018-10-21 13:43:02 +02:00
|
|
|
if (type == "twitch")
|
|
|
|
{
|
2018-08-06 21:17:03 +02:00
|
|
|
return app->twitch.server->getOrAddChannel(
|
|
|
|
obj.value("name").toString());
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
else if (type == "mentions")
|
|
|
|
{
|
2018-04-28 15:20:18 +02:00
|
|
|
return app->twitch.server->mentionsChannel;
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
else if (type == "watching")
|
|
|
|
{
|
2018-04-28 15:20:18 +02:00
|
|
|
return app->twitch.server->watchingChannel;
|
2018-10-21 13:43:02 +02:00
|
|
|
}
|
|
|
|
else if (type == "whispers")
|
|
|
|
{
|
2018-04-28 15:20:18 +02:00
|
|
|
return app->twitch.server->whispersChannel;
|
2018-04-20 22:33:28 +02:00
|
|
|
}
|
2019-09-11 00:10:49 +02:00
|
|
|
else if (type == "irc")
|
|
|
|
{
|
2019-11-02 12:36:42 +01:00
|
|
|
return Irc::instance().getOrAddChannel(obj.value("server").toInt(-1),
|
|
|
|
obj.value("channel").toString());
|
2019-09-11 00:10:49 +02:00
|
|
|
}
|
2018-04-20 22:33:28 +02:00
|
|
|
|
|
|
|
return Channel::getEmpty();
|
|
|
|
}
|
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
void WindowManager::closeAll()
|
|
|
|
{
|
2018-06-26 17:06:17 +02:00
|
|
|
assertInGuiThread();
|
2018-04-26 18:10:26 +02:00
|
|
|
|
2018-10-21 13:43:02 +02:00
|
|
|
for (Window *window : windows_)
|
|
|
|
{
|
2018-04-06 23:31:34 +02:00
|
|
|
window->close();
|
2017-01-28 22:35:23 +01:00
|
|
|
}
|
2017-01-26 21:04:01 +01:00
|
|
|
}
|
2017-01-28 22:35:23 +01:00
|
|
|
|
2018-06-04 16:10:54 +02:00
|
|
|
int WindowManager::getGeneration() const
|
|
|
|
{
|
2018-07-06 19:23:47 +02:00
|
|
|
return this->generation_;
|
2018-06-04 16:10:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WindowManager::incGeneration()
|
|
|
|
{
|
2018-07-06 19:23:47 +02:00
|
|
|
this->generation_++;
|
2018-06-04 16:10:54 +02:00
|
|
|
}
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace chatterino
|