mirror-chatterino2/src/widgets/split.cpp

624 lines
18 KiB
C++
Raw Normal View History

2017-11-12 17:21:50 +01:00
#include "widgets/split.hpp"
2017-12-31 00:50:07 +01:00
#include "singletons/channelmanager.hpp"
#include "singletons/settingsmanager.hpp"
#include "singletons/thememanager.hpp"
#include "singletons/windowmanager.hpp"
2018-01-17 03:18:47 +01:00
#include "twitch/twitchchannel.hpp"
#include "twitch/twitchmessagebuilder.hpp"
#include "util/urlfetch.hpp"
2018-01-05 13:42:23 +01:00
#include "widgets/helper/searchpopup.hpp"
#include "widgets/helper/shortcut.hpp"
#include "widgets/qualitypopup.hpp"
2017-11-12 17:21:50 +01:00
#include "widgets/splitcontainer.hpp"
2017-09-15 17:23:49 +02:00
#include "widgets/textinputdialog.hpp"
2017-11-12 17:21:50 +01:00
#include "widgets/window.hpp"
2017-01-17 00:15:44 +01:00
2017-09-12 19:06:16 +02:00
#include <QApplication>
#include <QClipboard>
#include <QDebug>
2018-01-17 03:18:47 +01:00
#include <QDesktopServices>
#include <QDockWidget>
#include <QDrag>
2017-08-12 15:58:46 +02:00
#include <QFileInfo>
2017-01-17 00:15:44 +01:00
#include <QFont>
#include <QFontDatabase>
#include <QListWidget>
#include <QMimeData>
2017-01-17 00:15:44 +01:00
#include <QPainter>
2017-08-12 15:58:46 +02:00
#include <QProcess>
#include <QShortcut>
#include <QTimer>
2017-01-17 00:15:44 +01:00
#include <QVBoxLayout>
#include <boost/signals2.hpp>
2016-12-29 17:31:07 +01:00
#include <functional>
#include <random>
2017-04-14 17:52:22 +02:00
using namespace chatterino::messages;
2017-04-12 17:46:44 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace widgets {
2017-01-18 21:30:23 +01:00
2017-12-31 00:50:07 +01:00
Split::Split(SplitContainer *parent, const std::string &_uuid)
: BaseWidget(parent)
, uuid(_uuid)
, settingRoot(fS("/splits/{}", this->uuid))
, channelName(fS("{}/channelName", this->settingRoot))
, parentPage(*parent)
2017-12-31 22:58:35 +01:00
, channel(singletons::ChannelManager::getInstance().emptyChannel)
, vbox(this)
, header(this)
2017-12-17 02:18:13 +01:00
, view(this)
, input(this)
2017-11-12 17:21:50 +01:00
, flexSizeX(1)
, flexSizeY(1)
2018-01-17 16:52:51 +01:00
, moderationMode(false)
2016-12-29 17:31:07 +01:00
{
this->setMouseTracking(true);
this->vbox.setSpacing(0);
this->vbox.setMargin(1);
2017-01-01 02:30:42 +01:00
this->vbox.addWidget(&this->header);
this->vbox.addWidget(&this->view, 1);
this->vbox.addWidget(&this->input);
// Initialize chat widget-wide hotkeys
// CTRL+T: Create new split (Add page)
CreateShortcut(this, "CTRL+T", &Split::doAddSplit);
// CTRL+W: Close Split
CreateShortcut(this, "CTRL+W", &Split::doCloseSplit);
// CTRL+R: Change Channel
CreateShortcut(this, "CTRL+R", &Split::doChangeChannel);
2017-11-12 17:21:50 +01:00
2018-01-05 13:42:23 +01:00
// CTRL+F: Search
CreateShortcut(this, "CTRL+F", &Split::doSearch);
2018-01-05 13:42:23 +01:00
2017-11-12 17:21:50 +01:00
// xd
// CreateShortcut(this, "ALT+SHIFT+RIGHT", &Split::doIncFlexX);
// CreateShortcut(this, "ALT+SHIFT+LEFT", &Split::doDecFlexX);
// CreateShortcut(this, "ALT+SHIFT+UP", &Split::doIncFlexY);
// CreateShortcut(this, "ALT+SHIFT+DOWN", &Split::doDecFlexY);
this->channelName.getValueChangedSignal().connect(
2017-11-12 17:21:50 +01:00
std::bind(&Split::channelNameUpdated, this, std::placeholders::_1));
this->channelNameUpdated(this->channelName.getValue());
this->input.textInput.installEventFilter(parent);
2017-09-16 16:49:52 +02:00
this->view.mouseDown.connect([this](QMouseEvent *) { this->giveFocus(Qt::MouseFocusReason); });
2017-09-21 02:20:02 +02:00
this->view.selectionChanged.connect([this]() {
if (view.hasSelection()) {
this->input.clearSelection();
}
});
this->input.textChanged.connect([this](const QString &newText) {
2017-12-31 22:58:35 +01:00
if (!singletons::SettingManager::getInstance().hideEmptyInput) {
return;
}
if (newText.length() == 0) {
this->input.hide();
} else if (this->input.isHidden()) {
this->input.show();
}
});
2018-01-02 02:15:11 +01:00
singletons::SettingManager::getInstance().hideEmptyInput.connect(
[this](const bool &hideEmptyInput, auto) {
if (hideEmptyInput && this->input.getInputText().length() == 0) {
this->input.hide();
} else {
this->input.show();
}
});
2018-01-17 16:52:51 +01:00
this->header.updateModerationModeIcon();
2017-01-01 02:30:42 +01:00
}
2017-11-12 17:21:50 +01:00
Split::~Split()
2017-01-01 02:30:42 +01:00
{
2017-09-17 02:13:57 +02:00
this->channelNameUpdated("");
2018-01-17 18:36:12 +01:00
this->usermodeChangedConnection.disconnect();
this->channelIDChangedConnection.disconnect();
2016-12-29 17:31:07 +01:00
}
const std::string &Split::getUUID() const
{
return this->uuid;
}
SharedChannel Split::getChannel() const
2017-04-12 17:46:44 +02:00
{
return this->channel;
2017-04-12 17:46:44 +02:00
}
SharedChannel &Split::getChannelRef()
{
return this->channel;
}
void Split::setChannel(SharedChannel _newChannel)
2017-04-12 17:46:44 +02:00
{
this->view.setChannel(_newChannel);
2018-01-17 18:36:12 +01:00
this->usermodeChangedConnection.disconnect();
this->channel = _newChannel;
2018-01-17 18:36:12 +01:00
twitch::TwitchChannel *tc = dynamic_cast<twitch::TwitchChannel *>(_newChannel.get());
if (tc != nullptr) {
this->usermodeChangedConnection =
tc->userStateChanged.connect([this] { this->header.updateModerationModeIcon(); });
}
this->header.updateModerationModeIcon();
this->channelChanged();
2017-04-12 17:46:44 +02:00
}
2017-11-12 17:21:50 +01:00
void Split::setFlexSizeX(double x)
{
this->flexSizeX = x;
this->parentPage.updateFlexValues();
}
double Split::getFlexSizeX()
{
return this->flexSizeX;
}
void Split::setFlexSizeY(double y)
{
this->flexSizeY = y;
this->parentPage.updateFlexValues();
}
double Split::getFlexSizeY()
{
return this->flexSizeY;
}
2018-01-17 16:52:51 +01:00
void Split::setModerationMode(bool value)
{
if (value != this->moderationMode) {
this->moderationMode = value;
this->header.updateModerationModeIcon();
this->view.layoutMessages();
2018-01-17 16:52:51 +01:00
}
}
bool Split::getModerationMode() const
{
return this->moderationMode;
}
2017-11-12 17:21:50 +01:00
void Split::channelNameUpdated(const std::string &newChannelName)
{
2017-12-31 22:58:35 +01:00
auto &cman = singletons::ChannelManager::getInstance();
2017-12-31 00:50:07 +01:00
// remove current channel
if (!this->channel->isEmpty()) {
2017-12-31 00:50:07 +01:00
cman.removeTwitchChannel(this->channel->name);
}
// update messages
if (newChannelName.empty()) {
2017-12-31 00:50:07 +01:00
this->setChannel(cman.emptyChannel);
} else {
2017-12-31 00:50:07 +01:00
this->setChannel(cman.addTwitchChannel(QString::fromStdString(newChannelName)));
}
// update header
this->header.updateChannelText();
2017-01-17 00:15:44 +01:00
}
2017-11-12 17:21:50 +01:00
bool Split::showChangeChannelPopup(const char *dialogTitle, bool empty)
2017-01-17 00:15:44 +01:00
{
2017-04-12 17:46:44 +02:00
// create new input dialog and execute it
2017-01-17 00:15:44 +01:00
TextInputDialog dialog(this);
dialog.setWindowTitle(dialogTitle);
if (!empty) {
dialog.setText(QString::fromStdString(this->channelName));
}
2017-01-17 00:15:44 +01:00
if (dialog.exec() == QDialog::Accepted) {
QString newChannelName = dialog.getText().trimmed();
this->channelName = newChannelName.toStdString();
this->parentPage.refreshTitle();
return true;
2017-01-17 00:15:44 +01:00
}
return false;
2017-01-17 00:15:44 +01:00
}
2017-11-12 17:21:50 +01:00
void Split::layoutMessages()
2017-04-12 17:46:44 +02:00
{
this->view.layoutMessages();
2017-04-12 17:46:44 +02:00
}
2017-11-12 17:21:50 +01:00
void Split::updateGifEmotes()
2017-04-12 17:46:44 +02:00
{
qDebug() << "this shouldn't even exist";
this->view.queueUpdate();
2017-04-12 17:46:44 +02:00
}
2017-11-12 17:21:50 +01:00
void Split::giveFocus(Qt::FocusReason reason)
{
this->input.textInput.setFocus(reason);
}
2017-11-12 17:21:50 +01:00
bool Split::hasFocus() const
{
return this->input.textInput.hasFocus();
}
2017-11-12 17:21:50 +01:00
void Split::paintEvent(QPaintEvent *)
2016-12-29 17:31:07 +01:00
{
2017-04-12 17:46:44 +02:00
// color the background of the chat
2017-01-11 18:52:09 +01:00
QPainter painter(this);
2016-12-29 17:31:07 +01:00
2018-01-02 02:15:11 +01:00
painter.fillRect(this->rect(), this->themeManager.splits.background);
2016-12-29 17:31:07 +01:00
}
2017-01-29 11:38:00 +01:00
void Split::mouseMoveEvent(QMouseEvent *event)
{
this->handleModifiers(event, event->modifiers());
}
void Split::mousePressEvent(QMouseEvent *event)
{
if (event->buttons() == Qt::LeftButton && event->modifiers() & Qt::AltModifier) {
this->drag();
}
}
void Split::keyPressEvent(QKeyEvent *event)
{
this->view.unsetCursor();
this->handleModifiers(event, event->modifiers());
}
void Split::keyReleaseEvent(QKeyEvent *event)
{
this->view.unsetCursor();
this->handleModifiers(event, event->modifiers());
}
void Split::handleModifiers(QEvent *event, Qt::KeyboardModifiers modifiers)
{
if (modifiers == Qt::AltModifier) {
this->setCursor(Qt::SizeAllCursor);
event->accept();
// } else if (modifiers == Qt::ControlModifier) {
// this->setCursor(Qt::SplitHCursor);
// event->accept();
} else {
this->setCursor(Qt::ArrowCursor);
}
}
/// Slots
2017-11-12 17:21:50 +01:00
void Split::doAddSplit()
{
2017-11-12 17:21:50 +01:00
SplitContainer *page = static_cast<SplitContainer *>(this->parentWidget());
page->addChat(true);
}
2017-11-12 17:21:50 +01:00
void Split::doCloseSplit()
{
2017-11-12 17:21:50 +01:00
SplitContainer *page = static_cast<SplitContainer *>(this->parentWidget());
singletons::ChannelManager::getInstance().removeTwitchChannel(this->channel->name);
page->removeFromLayout(this);
}
2017-11-12 17:21:50 +01:00
void Split::doChangeChannel()
{
this->showChangeChannelPopup("Change channel");
2017-09-15 17:23:49 +02:00
auto popup = this->findChildren<QDockWidget *>();
if (popup.size() && popup.at(0)->isVisible() && !popup.at(0)->isFloating()) {
2017-09-12 22:10:30 +02:00
popup.at(0)->hide();
doOpenViewerList();
}
}
2017-11-12 17:21:50 +01:00
void Split::doPopup()
2017-06-11 09:11:55 +02:00
{
2017-12-31 22:58:35 +01:00
Window &window = singletons::WindowManager::getInstance().createWindow();
2017-11-12 17:21:50 +01:00
2017-12-31 00:50:07 +01:00
Split *split = new Split(static_cast<SplitContainer *>(window.getNotebook().getSelectedPage()),
this->uuid);
2017-11-12 17:21:50 +01:00
window.getNotebook().getSelectedPage()->addToLayout(split);
window.show();
2017-06-11 09:11:55 +02:00
}
2017-11-12 17:21:50 +01:00
void Split::doClearChat()
2017-06-11 09:11:55 +02:00
{
this->view.clearMessages();
2017-06-11 09:11:55 +02:00
}
2017-11-12 17:21:50 +01:00
void Split::doOpenChannel()
2017-06-11 09:11:55 +02:00
{
2018-01-17 03:18:47 +01:00
SharedChannel _channel = this->channel;
twitch::TwitchChannel *tc = dynamic_cast<twitch::TwitchChannel *>(_channel.get());
if (tc != nullptr) {
QDesktopServices::openUrl("https://twitch.tv/" + tc->name);
}
2017-06-11 09:11:55 +02:00
}
2017-11-12 17:21:50 +01:00
void Split::doOpenPopupPlayer()
2017-06-11 09:11:55 +02:00
{
2018-01-17 03:18:47 +01:00
SharedChannel _channel = this->channel;
twitch::TwitchChannel *tc = dynamic_cast<twitch::TwitchChannel *>(_channel.get());
if (tc != nullptr) {
QDesktopServices::openUrl("https://player.twitch.tv/?channel=" + tc->name);
}
2017-06-11 09:11:55 +02:00
}
2017-11-12 17:21:50 +01:00
void Split::doOpenStreamlink()
{
2017-12-31 22:58:35 +01:00
singletons::SettingManager &settings = singletons::SettingManager::getInstance();
2018-01-12 23:09:05 +01:00
QString preferredQuality = settings.preferredQuality;
preferredQuality = preferredQuality.toLower();
// TODO(Confuseh): Default streamlink paths
2018-01-12 23:09:05 +01:00
QString path = settings.streamlinkPath;
QString channel = QString::fromStdString(this->channelName.getValue());
QFileInfo fileinfo = QFileInfo(path);
if (path.isEmpty()) {
debug::Log("[Split:doOpenStreamlink] No streamlink path selected in Settings");
return;
}
if (!fileinfo.exists()) {
debug::Log("[Split:doOpenStreamlink] Streamlink path ({}) is invalid, file does not exist",
path);
return;
}
if (fileinfo.isDir() || !fileinfo.isExecutable()) {
debug::Log("[Split:doOpenStreamlink] Streamlink path ({}) is invalid, it needs to point to "
"the streamlink executable",
path);
return;
}
if (preferredQuality != "choose") {
QStringList args = {"twitch.tv/" + channel};
QString quality = "";
QString exclude = "";
if (preferredQuality == "high") {
exclude = ">720p30";
quality = "high,best";
} else if (preferredQuality == "medium") {
exclude = ">540p30";
quality = "medium,best";
} else if (preferredQuality == "low") {
exclude = ">360p30";
quality = "low,best";
} else if (preferredQuality == "audio only") {
quality = "audio,audio_only";
} else {
quality = "best";
}
if (quality != "")
args << quality;
if (exclude != "")
args << "--stream-sorting-excludes" << exclude;
QProcess::startDetached(path, args);
} else {
QProcess *p = new QProcess();
// my god that signal though
QObject::connect(p, static_cast<void (QProcess::*)(int)>(&QProcess::finished), this,
[path, channel, p](int) {
QString lastLine = QString(p->readAllStandardOutput());
lastLine = lastLine.trimmed().split('\n').last().trimmed();
if (lastLine.startsWith("Available streams: ")) {
QStringList options;
QStringList split =
lastLine.right(lastLine.length() - 19).split(", ");
for (int i = split.length() - 1; i >= 0; i--) {
QString option = split.at(i);
if (option.endsWith(" (worst)")) {
options << option.left(option.length() - 8);
} else if (option.endsWith(" (best)")) {
options << option.left(option.length() - 7);
} else {
options << option;
2017-09-15 17:23:49 +02:00
}
}
QualityPopup::showDialog(channel, path, options);
}
});
p->start(path, {"twitch.tv/" + channel, "--default-stream=KKona"});
}
}
2017-11-12 17:21:50 +01:00
void Split::doOpenViewerList()
{
2017-09-15 17:23:49 +02:00
auto viewerDock = new QDockWidget("Viewer List", this);
viewerDock->setAllowedAreas(Qt::LeftDockWidgetArea);
viewerDock->setFeatures(QDockWidget::DockWidgetVerticalTitleBar |
2017-09-15 17:23:49 +02:00
QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetFloatable);
viewerDock->resize(0.5 * this->width(),
this->height() - this->header.height() - this->input.height());
viewerDock->move(0, this->header.height());
2017-09-12 22:10:30 +02:00
auto accountPopup = new AccountPopupWidget(this->channel);
auto multiWidget = new QWidget(viewerDock);
auto dockVbox = new QVBoxLayout(viewerDock);
auto searchBar = new QLineEdit(viewerDock);
auto chattersList = new QListWidget();
auto resultList = new QListWidget();
static QStringList labels = {"Moderators", "Staff", "Admins", "Global Moderators", "Viewers"};
static QStringList jsonLabels = {"moderators", "staff", "admins", "global_mods", "viewers"};
2017-09-15 17:23:49 +02:00
QList<QListWidgetItem *> labelList;
for (auto &x : labels) {
auto label = new QListWidgetItem(x);
2018-01-02 02:15:11 +01:00
label->setBackgroundColor(this->themeManager.splits.header.background);
labelList.append(label);
}
auto loadingLabel = new QLabel("Loading...");
util::twitch::get("https://tmi.twitch.tv/group/user/" + channel->name + "/chatters", this,
[=](QJsonObject obj) {
QJsonObject chattersObj = obj.value("chatters").toObject();
loadingLabel->hide();
for (int i = 0; i < jsonLabels.size(); i++) {
chattersList->addItem(labelList.at(i));
foreach (const QJsonValue &v,
chattersObj.value(jsonLabels.at(i)).toArray())
chattersList->addItem(v.toString());
}
});
searchBar->setPlaceholderText("Search User...");
2017-09-15 17:23:49 +02:00
QObject::connect(searchBar, &QLineEdit::textEdited, this, [=]() {
auto query = searchBar->text();
2017-09-15 17:23:49 +02:00
if (!query.isEmpty()) {
auto results = chattersList->findItems(query, Qt::MatchStartsWith);
chattersList->hide();
resultList->clear();
2017-09-15 17:23:49 +02:00
for (auto &item : results) {
if (!labels.contains(item->text()))
resultList->addItem(item->text());
}
resultList->show();
2017-09-15 17:23:49 +02:00
} else {
resultList->hide();
chattersList->show();
}
});
2017-09-15 17:23:49 +02:00
QObject::connect(viewerDock, &QDockWidget::topLevelChanged, this,
[=]() { viewerDock->setMinimumWidth(300); });
2017-09-15 17:23:49 +02:00
QObject::connect(chattersList, &QListWidget::doubleClicked, this, [=]() {
if (!labels.contains(chattersList->currentItem()->text())) {
doOpenAccountPopupWidget(accountPopup, chattersList->currentItem()->text());
2017-09-12 22:10:30 +02:00
}
});
2017-09-15 17:23:49 +02:00
QObject::connect(resultList, &QListWidget::doubleClicked, this, [=]() {
if (!labels.contains(resultList->currentItem()->text())) {
doOpenAccountPopupWidget(accountPopup, resultList->currentItem()->text());
2017-09-12 22:10:30 +02:00
}
});
dockVbox->addWidget(searchBar);
dockVbox->addWidget(loadingLabel);
dockVbox->addWidget(chattersList);
dockVbox->addWidget(resultList);
resultList->hide();
2018-01-02 02:15:11 +01:00
multiWidget->setStyleSheet(this->themeManager.splits.input.styleSheet);
multiWidget->setLayout(dockVbox);
viewerDock->setWidget(multiWidget);
viewerDock->show();
}
2017-11-12 17:21:50 +01:00
void Split::doOpenAccountPopupWidget(AccountPopupWidget *widget, QString user)
2017-09-12 22:10:30 +02:00
{
widget->setName(user);
widget->move(QCursor::pos());
widget->updatePermissions();
2017-09-12 22:10:30 +02:00
widget->show();
widget->setFocus();
}
2017-11-12 17:21:50 +01:00
void Split::doCopy()
2017-09-12 19:06:16 +02:00
{
QApplication::clipboard()->setText(this->view.getSelectedText());
}
2018-01-05 13:42:23 +01:00
void Split::doSearch()
{
SearchPopup *popup = new SearchPopup();
popup->setChannel(this->getChannel());
popup->show();
}
template <typename Iter, typename RandomGenerator>
static Iter select_randomly(Iter start, Iter end, RandomGenerator &g)
{
std::uniform_int_distribution<> dis(0, std::distance(start, end) - 1);
std::advance(start, dis(g));
return start;
}
template <typename Iter>
static Iter select_randomly(Iter start, Iter end)
{
static std::random_device rd;
static std::mt19937 gen(rd());
return select_randomly(start, end, gen);
}
2017-11-12 17:21:50 +01:00
void Split::doIncFlexX()
{
this->setFlexSizeX(this->getFlexSizeX() * 1.2);
}
void Split::doDecFlexX()
{
this->setFlexSizeX(this->getFlexSizeX() * (1 / 1.2));
}
void Split::doIncFlexY()
{
this->setFlexSizeY(this->getFlexSizeY() * 1.2);
}
void Split::doDecFlexY()
{
this->setFlexSizeY(this->getFlexSizeY() * (1 / 1.2));
}
void Split::drag()
{
auto container = dynamic_cast<SplitContainer *>(this->parentWidget());
if (container != nullptr) {
SplitContainer::isDraggingSplit = true;
SplitContainer::draggingSplit = this;
auto originalLocation = container->removeFromLayout(this);
QDrag *drag = new QDrag(this);
QMimeData *mimeData = new QMimeData;
mimeData->setData("chatterino/split", "xD");
drag->setMimeData(mimeData);
Qt::DropAction dropAction = drag->exec(Qt::MoveAction);
if (dropAction == Qt::IgnoreAction) {
container->addToLayout(this, originalLocation);
}
SplitContainer::isDraggingSplit = false;
}
}
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino