2017-12-31 00:50:07 +01:00
|
|
|
#include "channelview.hpp"
|
2018-04-27 22:11:19 +02:00
|
|
|
|
|
|
|
#include "application.hpp"
|
2017-11-04 13:17:35 +01:00
|
|
|
#include "debug/log.hpp"
|
2018-01-11 20:16:25 +01:00
|
|
|
#include "messages/layouts/messagelayout.hpp"
|
2017-09-12 19:06:16 +02:00
|
|
|
#include "messages/limitedqueuesnapshot.hpp"
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "messages/message.hpp"
|
2018-02-05 15:11:50 +01:00
|
|
|
#include "providers/twitch/twitchserver.hpp"
|
2017-12-31 00:50:07 +01:00
|
|
|
#include "singletons/settingsmanager.hpp"
|
|
|
|
#include "singletons/thememanager.hpp"
|
|
|
|
#include "singletons/windowmanager.hpp"
|
2017-04-19 15:25:05 +02:00
|
|
|
#include "ui_accountpopupform.h"
|
2017-10-11 10:34:04 +02:00
|
|
|
#include "util/benchmark.hpp"
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "util/distancebetweenpoints.hpp"
|
2017-11-12 17:21:50 +01:00
|
|
|
#include "widgets/split.hpp"
|
2017-12-23 22:17:38 +01:00
|
|
|
#include "widgets/tooltipwidget.hpp"
|
2017-01-11 01:08:20 +01:00
|
|
|
|
2018-01-24 21:16:00 +01:00
|
|
|
#include <QClipboard>
|
2017-02-01 16:28:28 +01:00
|
|
|
#include <QDebug>
|
2017-07-26 09:08:19 +02:00
|
|
|
#include <QDesktopServices>
|
2017-02-07 00:03:15 +01:00
|
|
|
#include <QGraphicsBlurEffect>
|
2017-01-11 01:08:20 +01:00
|
|
|
#include <QPainter>
|
2017-06-06 17:18:23 +02:00
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
#include <algorithm>
|
2017-02-07 00:03:15 +01:00
|
|
|
#include <chrono>
|
2018-04-03 02:55:32 +02:00
|
|
|
#include <cmath>
|
2017-01-18 01:04:54 +01:00
|
|
|
#include <functional>
|
2017-09-12 19:06:16 +02:00
|
|
|
#include <memory>
|
2017-01-01 02:30:42 +01:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
#define LAYOUT_WIDTH (this->width() - (this->scrollBar.isVisible() ? 16 : 4) * this->getScale())
|
2018-05-17 12:16:13 +02:00
|
|
|
#define SELECTION_RESUME_SCROLLING_MSG_THRESHOLD 3
|
|
|
|
#define CHAT_HOVER_PAUSE_DURATION 300
|
2018-01-05 10:41:21 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
using namespace chatterino::messages;
|
2018-02-05 15:11:50 +01:00
|
|
|
using namespace chatterino::providers::twitch;
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
|
2017-12-17 02:18:13 +01:00
|
|
|
ChannelView::ChannelView(BaseWidget *parent)
|
2017-09-16 00:05:06 +02:00
|
|
|
: BaseWidget(parent)
|
2017-06-11 11:36:42 +02:00
|
|
|
, scrollBar(this)
|
2018-02-05 15:11:50 +01:00
|
|
|
, userPopupWidget(std::shared_ptr<TwitchChannel>())
|
2017-01-01 02:30:42 +01:00
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->setMouseTracking(true);
|
2017-01-22 12:46:35 +01:00
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
this->managedConnections.emplace_back(app->settings->wordFlagsChanged.connect([=] {
|
|
|
|
this->layoutMessages();
|
|
|
|
this->update();
|
|
|
|
}));
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->scrollBar.getCurrentValueChanged().connect([this] {
|
2017-06-06 17:18:23 +02:00
|
|
|
// Whenever the scrollbar value has been changed, re-render the ChatWidgetView
|
2018-05-06 16:12:21 +02:00
|
|
|
this->actuallyLayoutMessages(true);
|
2018-05-17 17:27:20 +02:00
|
|
|
|
|
|
|
if (!this->isPaused()) {
|
|
|
|
this->goToBottom->setVisible(this->enableScrollingToBottom &&
|
|
|
|
this->scrollBar.isVisible() &&
|
|
|
|
!this->scrollBar.isAtBottom());
|
|
|
|
}
|
2017-09-21 17:34:41 +02:00
|
|
|
|
2017-10-11 10:34:04 +02:00
|
|
|
this->queueUpdate();
|
2017-06-06 17:18:23 +02:00
|
|
|
});
|
2017-09-17 02:13:57 +02:00
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
this->repaintGifsConnection = app->windows->repaintGifs.connect([&] {
|
|
|
|
this->queueUpdate(); //
|
|
|
|
});
|
|
|
|
this->layoutConnection = app->windows->layout.connect([&](Channel *channel) {
|
2018-01-01 23:29:54 +01:00
|
|
|
if (channel == nullptr || this->channel.get() == channel) {
|
|
|
|
this->layoutMessages();
|
|
|
|
}
|
|
|
|
});
|
2017-09-21 17:34:41 +02:00
|
|
|
|
|
|
|
this->goToBottom = new RippleEffectLabel(this, 0);
|
2018-01-05 00:01:31 +01:00
|
|
|
this->goToBottom->setStyleSheet("background-color: rgba(0,0,0,0.66); color: #FFF;");
|
|
|
|
this->goToBottom->getLabel().setText("More messages below");
|
2017-09-21 17:34:41 +02:00
|
|
|
this->goToBottom->setVisible(false);
|
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
this->managedConnections.emplace_back(app->fonts->fontChanged.connect([this] {
|
|
|
|
this->layoutMessages(); //
|
|
|
|
}));
|
2017-12-17 03:26:23 +01:00
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
connect(goToBottom, &RippleEffectLabel::clicked, this, [=] {
|
|
|
|
QTimer::singleShot(180, [=] {
|
|
|
|
this->scrollBar.scrollToBottom(
|
|
|
|
app->settings->enableSmoothScrollingNewMessages.getValue());
|
2018-01-05 03:14:46 +01:00
|
|
|
});
|
|
|
|
});
|
2017-10-11 10:34:04 +02:00
|
|
|
|
2018-04-06 18:27:49 +02:00
|
|
|
// this->updateTimer.setInterval(1000 / 60);
|
|
|
|
// this->updateTimer.setSingleShot(true);
|
|
|
|
// connect(&this->updateTimer, &QTimer::timeout, this, [this] {
|
|
|
|
// if (this->updateQueued) {
|
|
|
|
// this->updateQueued = false;
|
|
|
|
// this->repaint();
|
|
|
|
// this->updateTimer.start();
|
|
|
|
// }
|
|
|
|
// });
|
2018-01-05 11:22:51 +01:00
|
|
|
|
|
|
|
this->pauseTimeout.setSingleShot(true);
|
2018-05-17 12:16:13 +02:00
|
|
|
QObject::connect(&this->pauseTimeout, &QTimer::timeout, [this] {
|
|
|
|
this->pausedTemporarily = false;
|
2018-05-17 17:27:20 +02:00
|
|
|
this->layoutMessages();
|
2018-05-17 12:16:13 +02:00
|
|
|
});
|
2018-01-16 01:40:52 +01:00
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
app->settings->showLastMessageIndicator.connect(
|
|
|
|
[this](auto, auto) {
|
|
|
|
this->update(); //
|
|
|
|
},
|
|
|
|
this->managedConnections);
|
2018-04-06 18:27:49 +02:00
|
|
|
|
|
|
|
this->layoutCooldown = new QTimer(this);
|
|
|
|
this->layoutCooldown->setSingleShot(true);
|
|
|
|
this->layoutCooldown->setInterval(66);
|
|
|
|
|
|
|
|
QObject::connect(this->layoutCooldown, &QTimer::timeout, [this] {
|
|
|
|
if (this->layoutQueued) {
|
|
|
|
this->layoutMessages();
|
2018-04-06 23:31:34 +02:00
|
|
|
this->layoutQueued = false;
|
2018-04-06 18:27:49 +02:00
|
|
|
}
|
|
|
|
});
|
2018-05-17 12:16:13 +02:00
|
|
|
|
|
|
|
QTimer::singleShot(1, this, [this] {
|
|
|
|
this->scrollBar.setGeometry(this->width() - this->scrollBar.width(), 0,
|
|
|
|
this->scrollBar.width(), this->height());
|
|
|
|
});
|
2018-05-23 13:54:42 +02:00
|
|
|
|
|
|
|
QShortcut *shortcut = new QShortcut(QKeySequence("Ctrl+C"), this);
|
|
|
|
QObject::connect(shortcut, &QShortcut::activated,
|
|
|
|
[this] { QGuiApplication::clipboard()->setText(this->getSelectedText()); });
|
|
|
|
}
|
2017-01-22 12:46:35 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
ChannelView::~ChannelView()
|
2017-01-22 12:46:35 +01:00
|
|
|
{
|
2017-12-28 16:26:35 +01:00
|
|
|
this->messageAppendedConnection.disconnect();
|
|
|
|
this->messageRemovedConnection.disconnect();
|
|
|
|
this->repaintGifsConnection.disconnect();
|
|
|
|
this->layoutConnection.disconnect();
|
2018-01-05 23:14:55 +01:00
|
|
|
this->messageAddedAtStartConnection.disconnect();
|
|
|
|
this->messageReplacedConnection.disconnect();
|
2017-01-01 02:30:42 +01:00
|
|
|
}
|
2017-01-03 21:19:33 +01:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
void ChannelView::themeRefreshEvent()
|
2018-01-24 20:35:26 +01:00
|
|
|
{
|
2018-01-25 20:49:49 +01:00
|
|
|
BaseWidget::themeRefreshEvent();
|
2018-01-24 20:35:26 +01:00
|
|
|
|
|
|
|
this->layoutMessages();
|
|
|
|
}
|
|
|
|
|
2017-10-11 10:34:04 +02:00
|
|
|
void ChannelView::queueUpdate()
|
2017-01-03 21:19:33 +01:00
|
|
|
{
|
2018-04-06 23:31:34 +02:00
|
|
|
// if (this->updateTimer.isActive()) {
|
|
|
|
// this->updateQueued = true;
|
|
|
|
// return;
|
|
|
|
// }
|
2017-10-11 10:34:04 +02:00
|
|
|
|
2018-01-19 23:41:02 +01:00
|
|
|
// this->repaint();
|
|
|
|
this->update();
|
2017-10-11 10:34:04 +02:00
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
// this->updateTimer.start();
|
2017-10-11 10:34:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChannelView::layoutMessages()
|
|
|
|
{
|
2018-04-10 02:07:25 +02:00
|
|
|
// if (!this->layoutCooldown->isActive()) {
|
|
|
|
this->actuallyLayoutMessages();
|
2018-04-06 18:27:49 +02:00
|
|
|
|
2018-04-10 02:07:25 +02:00
|
|
|
// this->layoutCooldown->start();
|
|
|
|
// } else {
|
|
|
|
// this->layoutQueued = true;
|
|
|
|
// }
|
2017-10-11 10:34:04 +02:00
|
|
|
}
|
|
|
|
|
2018-05-06 16:12:21 +02:00
|
|
|
void ChannelView::actuallyLayoutMessages(bool causedByScrollbar)
|
2017-10-11 10:34:04 +02:00
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
2017-10-27 22:05:08 +02:00
|
|
|
// BENCH(timer)
|
2017-12-22 15:13:42 +01:00
|
|
|
auto messagesSnapshot = this->getMessagesSnapshot();
|
2017-01-11 01:08:20 +01:00
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
if (messagesSnapshot.getLength() == 0) {
|
2017-06-11 11:36:42 +02:00
|
|
|
this->scrollBar.setVisible(false);
|
2017-10-11 10:34:04 +02:00
|
|
|
|
|
|
|
return;
|
2017-02-03 19:31:51 +01:00
|
|
|
}
|
|
|
|
|
2017-10-11 10:34:04 +02:00
|
|
|
bool redrawRequired = false;
|
2017-06-11 11:36:42 +02:00
|
|
|
bool showScrollbar = false;
|
2017-02-03 19:31:51 +01:00
|
|
|
|
2017-06-06 17:18:23 +02:00
|
|
|
// Bool indicating whether or not we were showing all messages
|
|
|
|
// True if one of the following statements are true:
|
|
|
|
// The scrollbar was not visible
|
|
|
|
// The scrollbar was visible and at the bottom
|
2017-06-11 11:36:42 +02:00
|
|
|
this->showingLatestMessages = this->scrollBar.isAtBottom() || !this->scrollBar.isVisible();
|
2017-06-06 17:18:23 +02:00
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
size_t start = this->scrollBar.getCurrentValue();
|
2017-12-27 21:29:56 +01:00
|
|
|
// int layoutWidth =
|
|
|
|
// (this->scrollBar.isVisible() ? width() - this->scrollBar.width() : width()) - 4;
|
2018-01-05 10:41:21 +01:00
|
|
|
int layoutWidth = LAYOUT_WIDTH;
|
2017-02-03 19:31:51 +01:00
|
|
|
|
2018-01-17 16:52:51 +01:00
|
|
|
MessageElement::Flags flags = this->getFlags();
|
|
|
|
|
2017-02-06 18:31:25 +01:00
|
|
|
// layout the visible messages in the view
|
2017-12-22 15:13:42 +01:00
|
|
|
if (messagesSnapshot.getLength() > start) {
|
|
|
|
int y =
|
|
|
|
-(messagesSnapshot[start]->getHeight() * (fmod(this->scrollBar.getCurrentValue(), 1)));
|
2017-02-06 11:38:26 +01:00
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
for (size_t i = start; i < messagesSnapshot.getLength(); ++i) {
|
|
|
|
auto message = messagesSnapshot[i];
|
2017-01-16 03:15:07 +01:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
redrawRequired |= message->layout(layoutWidth, this->getScale(), flags);
|
2017-02-02 20:35:12 +01:00
|
|
|
|
2017-02-06 18:31:25 +01:00
|
|
|
y += message->getHeight();
|
2017-02-03 19:31:51 +01:00
|
|
|
|
2018-04-25 14:49:30 +02:00
|
|
|
if (y >= this->height()) {
|
2017-02-06 18:31:25 +01:00
|
|
|
break;
|
|
|
|
}
|
2017-02-03 19:31:51 +01:00
|
|
|
}
|
|
|
|
}
|
2017-01-16 03:15:07 +01:00
|
|
|
|
2017-02-06 18:31:25 +01:00
|
|
|
// layout the messages at the bottom to determine the scrollbar thumb size
|
2018-04-25 14:49:30 +02:00
|
|
|
int h = this->height() - 8;
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2018-01-05 03:41:31 +01:00
|
|
|
for (int i = (int)messagesSnapshot.getLength() - 1; i >= 0; i--) {
|
2017-12-22 15:13:42 +01:00
|
|
|
auto *message = messagesSnapshot[i].get();
|
2017-01-16 03:15:07 +01:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
message->layout(layoutWidth, this->getScale(), flags);
|
2017-01-26 04:26:40 +01:00
|
|
|
|
2017-01-26 07:10:46 +01:00
|
|
|
h -= message->getHeight();
|
|
|
|
|
|
|
|
if (h < 0) {
|
2017-12-22 15:13:42 +01:00
|
|
|
this->scrollBar.setLargeChange((messagesSnapshot.getLength() - i) +
|
2017-06-11 11:36:42 +02:00
|
|
|
(qreal)h / message->getHeight());
|
2017-12-18 20:18:20 +01:00
|
|
|
// this->scrollBar.setDesiredValue(this->scrollBar.getDesiredValue());
|
2017-01-26 07:10:46 +01:00
|
|
|
|
|
|
|
showScrollbar = true;
|
2017-02-01 16:28:28 +01:00
|
|
|
break;
|
2017-01-26 07:10:46 +01:00
|
|
|
}
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->scrollBar.setVisible(showScrollbar);
|
2017-01-26 07:10:46 +01:00
|
|
|
|
2017-02-07 00:03:15 +01:00
|
|
|
if (!showScrollbar) {
|
2018-05-06 16:12:21 +02:00
|
|
|
if (!causedByScrollbar) {
|
|
|
|
this->scrollBar.setDesiredValue(0);
|
|
|
|
}
|
2017-02-07 00:03:15 +01:00
|
|
|
}
|
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
this->scrollBar.setMaximum(messagesSnapshot.getLength());
|
2017-01-26 07:10:46 +01:00
|
|
|
|
2018-01-05 03:14:46 +01:00
|
|
|
// If we were showing the latest messages and the scrollbar now wants to be rendered, scroll
|
|
|
|
// to bottom
|
|
|
|
// TODO: Do we want to check if the user is currently moving the scrollbar?
|
|
|
|
// Perhaps also if the user scrolled with the scrollwheel in this ChatWidget in the last 0.2
|
|
|
|
// seconds or something
|
2017-12-28 00:48:21 +01:00
|
|
|
if (this->enableScrollingToBottom && this->showingLatestMessages && showScrollbar) {
|
2018-05-17 17:27:20 +02:00
|
|
|
if (!this->isPaused()) {
|
|
|
|
this->scrollBar.scrollToBottom(
|
2018-05-23 20:22:41 +02:00
|
|
|
// this->messageWasAdded &&
|
2018-05-17 17:27:20 +02:00
|
|
|
app->settings->enableSmoothScrollingNewMessages.getValue());
|
|
|
|
}
|
2018-01-05 12:22:03 +01:00
|
|
|
this->messageWasAdded = false;
|
2017-06-06 17:18:23 +02:00
|
|
|
}
|
|
|
|
|
2017-10-27 22:05:08 +02:00
|
|
|
// MARK(timer);
|
2017-10-11 10:34:04 +02:00
|
|
|
|
|
|
|
if (redrawRequired) {
|
|
|
|
this->queueUpdate();
|
|
|
|
}
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::clearMessages()
|
|
|
|
{
|
|
|
|
// Clear all stored messages in this chat widget
|
|
|
|
this->messages.clear();
|
|
|
|
|
|
|
|
// Layout chat widget messages, and force an update regardless if there are no messages
|
|
|
|
this->layoutMessages();
|
2017-10-11 10:34:04 +02:00
|
|
|
this->queueUpdate();
|
2017-09-16 00:05:06 +02:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
Scrollbar &ChannelView::getScrollBar()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
return this->scrollBar;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
QString ChannelView::getSelectedText()
|
2017-09-12 19:06:16 +02:00
|
|
|
{
|
2018-01-16 02:39:31 +01:00
|
|
|
QString result = "";
|
2017-09-12 19:06:16 +02:00
|
|
|
|
2018-01-16 02:39:31 +01:00
|
|
|
messages::LimitedQueueSnapshot<MessageLayoutPtr> messagesSnapshot = this->getMessagesSnapshot();
|
2017-09-12 19:06:16 +02:00
|
|
|
|
2018-05-06 14:57:57 +02:00
|
|
|
Selection _selection = this->selection;
|
2017-09-12 19:06:16 +02:00
|
|
|
|
2018-05-06 14:57:57 +02:00
|
|
|
if (_selection.isEmpty()) {
|
2018-01-16 02:39:31 +01:00
|
|
|
return result;
|
|
|
|
}
|
2017-09-12 19:06:16 +02:00
|
|
|
|
2018-05-06 14:57:57 +02:00
|
|
|
qDebug() << "xd >";
|
|
|
|
for (int msg = _selection.selectionMin.messageIndex;
|
|
|
|
msg <= _selection.selectionMax.messageIndex; msg++) {
|
2018-01-16 02:39:31 +01:00
|
|
|
MessageLayoutPtr layout = messagesSnapshot[msg];
|
2018-04-15 15:09:31 +02:00
|
|
|
int from =
|
2018-05-06 14:57:57 +02:00
|
|
|
msg == _selection.selectionMin.messageIndex ? _selection.selectionMin.charIndex : 0;
|
|
|
|
int to = msg == _selection.selectionMax.messageIndex ? _selection.selectionMax.charIndex
|
|
|
|
: layout->getLastCharacterIndex() + 1;
|
2018-04-10 15:48:56 +02:00
|
|
|
|
|
|
|
qDebug() << "from:" << from << ", to:" << to;
|
2017-09-12 19:06:16 +02:00
|
|
|
|
2018-01-16 02:39:31 +01:00
|
|
|
layout->addSelectionText(result, from, to);
|
|
|
|
}
|
2018-05-06 14:57:57 +02:00
|
|
|
qDebug() << "xd <";
|
2017-09-12 19:06:16 +02:00
|
|
|
|
2018-01-16 02:39:31 +01:00
|
|
|
return result;
|
2017-09-12 19:06:16 +02:00
|
|
|
}
|
|
|
|
|
2017-09-21 02:20:02 +02:00
|
|
|
bool ChannelView::hasSelection()
|
|
|
|
{
|
|
|
|
return !this->selection.isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChannelView::clearSelection()
|
|
|
|
{
|
|
|
|
this->selection = Selection();
|
|
|
|
layoutMessages();
|
|
|
|
}
|
|
|
|
|
2017-12-28 00:48:21 +01:00
|
|
|
void ChannelView::setEnableScrollingToBottom(bool value)
|
|
|
|
{
|
|
|
|
this->enableScrollingToBottom = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChannelView::getEnableScrollingToBottom() const
|
|
|
|
{
|
|
|
|
return this->enableScrollingToBottom;
|
|
|
|
}
|
|
|
|
|
2018-01-27 21:13:22 +01:00
|
|
|
void ChannelView::setOverrideFlags(boost::optional<messages::MessageElement::Flags> value)
|
|
|
|
{
|
|
|
|
this->overrideFlags = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
const boost::optional<messages::MessageElement::Flags> &ChannelView::getOverrideFlags() const
|
|
|
|
{
|
|
|
|
return this->overrideFlags;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
messages::LimitedQueueSnapshot<MessageLayoutPtr> ChannelView::getMessagesSnapshot()
|
2017-09-16 00:05:06 +02:00
|
|
|
{
|
2018-05-17 12:16:13 +02:00
|
|
|
// if (!this->isPaused()) {
|
|
|
|
this->snapshot = this->messages.getSnapshot();
|
|
|
|
// }
|
2018-01-05 11:22:51 +01:00
|
|
|
|
2018-05-17 12:16:13 +02:00
|
|
|
// return this->snapshot;
|
2018-01-05 11:22:51 +01:00
|
|
|
return this->snapshot;
|
2017-09-16 00:05:06 +02:00
|
|
|
}
|
|
|
|
|
2018-01-24 13:15:41 +01:00
|
|
|
void ChannelView::setChannel(ChannelPtr newChannel)
|
2017-09-16 00:05:06 +02:00
|
|
|
{
|
|
|
|
if (this->channel) {
|
|
|
|
this->detachChannel();
|
|
|
|
}
|
2018-04-20 19:54:45 +02:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
this->messages.clear();
|
|
|
|
|
|
|
|
// on new message
|
|
|
|
this->messageAppendedConnection =
|
2018-01-11 20:16:25 +01:00
|
|
|
newChannel->messageAppended.connect([this](MessagePtr &message) {
|
|
|
|
MessageLayoutPtr deleted;
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
auto messageRef = new MessageLayout(message);
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2018-05-06 14:38:23 +02:00
|
|
|
if (this->lastMessageHasAlternateBackground) {
|
|
|
|
messageRef->flags |= MessageLayout::AlternateBackground;
|
|
|
|
}
|
|
|
|
this->lastMessageHasAlternateBackground = !this->lastMessageHasAlternateBackground;
|
|
|
|
|
2018-05-17 12:16:13 +02:00
|
|
|
if (this->isPaused()) {
|
|
|
|
this->messagesAddedSinceSelectionPause++;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
if (this->messages.pushBack(MessageLayoutPtr(messageRef), deleted)) {
|
2018-05-17 12:16:13 +02:00
|
|
|
// if (!this->isPaused()) {
|
|
|
|
if (this->scrollBar.isAtBottom()) {
|
|
|
|
this->scrollBar.scrollToBottom();
|
|
|
|
} else {
|
|
|
|
this->scrollBar.offset(-1);
|
2017-12-18 22:13:46 +01:00
|
|
|
}
|
2018-05-17 12:16:13 +02:00
|
|
|
// }
|
2017-09-16 00:05:06 +02:00
|
|
|
}
|
|
|
|
|
2018-04-10 16:53:40 +02:00
|
|
|
if (!(message->flags & Message::DoNotTriggerNotification)) {
|
|
|
|
if (message->flags & Message::Highlighted) {
|
|
|
|
this->tabHighlightRequested.invoke(HighlightState::Highlighted);
|
|
|
|
} else {
|
|
|
|
this->tabHighlightRequested.invoke(HighlightState::NewMessage);
|
|
|
|
}
|
2017-12-26 12:32:24 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
this->scrollBar.addHighlight(message->getScrollBarHighlight());
|
|
|
|
|
2018-01-05 03:14:46 +01:00
|
|
|
this->messageWasAdded = true;
|
|
|
|
this->layoutMessages();
|
2018-01-01 22:29:21 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
this->messageAddedAtStartConnection =
|
2018-01-11 20:16:25 +01:00
|
|
|
newChannel->messagesAddedAtStart.connect([this](std::vector<MessagePtr> &messages) {
|
|
|
|
std::vector<MessageLayoutPtr> messageRefs;
|
2018-01-01 22:29:21 +01:00
|
|
|
messageRefs.resize(messages.size());
|
2018-01-11 20:16:25 +01:00
|
|
|
for (size_t i = 0; i < messages.size(); i++) {
|
|
|
|
messageRefs.at(i) = MessageLayoutPtr(new MessageLayout(messages.at(i)));
|
2018-01-01 22:29:21 +01:00
|
|
|
}
|
|
|
|
|
2018-05-17 12:16:13 +02:00
|
|
|
if (!this->isPaused()) {
|
2018-01-11 21:03:40 +01:00
|
|
|
if (this->messages.pushFront(messageRefs).size() > 0) {
|
|
|
|
if (this->scrollBar.isAtBottom()) {
|
|
|
|
this->scrollBar.scrollToBottom();
|
|
|
|
} else {
|
|
|
|
this->scrollBar.offset((qreal)messages.size());
|
|
|
|
}
|
2018-01-01 22:29:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
std::vector<ScrollbarHighlight> highlights;
|
|
|
|
highlights.reserve(messages.size());
|
2018-01-11 20:16:25 +01:00
|
|
|
for (size_t i = 0; i < messages.size(); i++) {
|
2018-01-06 03:48:56 +01:00
|
|
|
highlights.push_back(messages.at(i)->getScrollBarHighlight());
|
|
|
|
}
|
|
|
|
|
|
|
|
this->scrollBar.addHighlightsAtStart(highlights);
|
|
|
|
|
2018-01-05 03:14:46 +01:00
|
|
|
this->messageWasAdded = true;
|
|
|
|
this->layoutMessages();
|
2017-09-16 00:05:06 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// on message removed
|
|
|
|
this->messageRemovedConnection =
|
2018-01-11 20:16:25 +01:00
|
|
|
newChannel->messageRemovedFromStart.connect([this](MessagePtr &) {
|
2018-04-15 15:09:31 +02:00
|
|
|
this->selection.selectionMin.messageIndex--;
|
|
|
|
this->selection.selectionMax.messageIndex--;
|
2017-09-16 00:05:06 +02:00
|
|
|
this->selection.start.messageIndex--;
|
|
|
|
this->selection.end.messageIndex--;
|
|
|
|
|
2017-10-11 10:34:04 +02:00
|
|
|
this->layoutMessages();
|
2017-09-16 00:05:06 +02:00
|
|
|
});
|
|
|
|
|
2018-01-05 23:14:55 +01:00
|
|
|
// on message replaced
|
|
|
|
this->messageReplacedConnection =
|
2018-01-11 20:16:25 +01:00
|
|
|
newChannel->messageReplaced.connect([this](size_t index, MessagePtr replacement) {
|
|
|
|
MessageLayoutPtr newItem(new MessageLayout(replacement));
|
2018-05-06 14:57:57 +02:00
|
|
|
if (this->messages.getSnapshot()[index]->flags & MessageLayout::AlternateBackground) {
|
|
|
|
newItem->flags |= MessageLayout::AlternateBackground;
|
|
|
|
}
|
2018-01-05 23:14:55 +01:00
|
|
|
|
2018-01-06 03:48:56 +01:00
|
|
|
this->scrollBar.replaceHighlight(index, replacement->getScrollBarHighlight());
|
|
|
|
|
2018-01-05 23:14:55 +01:00
|
|
|
this->messages.replaceItem(this->messages.getSnapshot()[index], newItem);
|
|
|
|
this->layoutMessages();
|
|
|
|
});
|
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
auto snapshot = newChannel->getMessageSnapshot();
|
2017-09-16 00:05:06 +02:00
|
|
|
|
|
|
|
for (size_t i = 0; i < snapshot.getLength(); i++) {
|
2018-01-11 20:16:25 +01:00
|
|
|
MessageLayoutPtr deleted;
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
auto messageRef = new MessageLayout(snapshot[i]);
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2018-05-06 14:57:57 +02:00
|
|
|
if (this->lastMessageHasAlternateBackground) {
|
|
|
|
messageRef->flags |= MessageLayout::AlternateBackground;
|
|
|
|
}
|
|
|
|
this->lastMessageHasAlternateBackground = !this->lastMessageHasAlternateBackground;
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
this->messages.pushBack(MessageLayoutPtr(messageRef), deleted);
|
2017-09-16 00:05:06 +02:00
|
|
|
}
|
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
this->channel = newChannel;
|
2017-09-16 00:05:06 +02:00
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
this->userPopupWidget.setChannel(newChannel);
|
2018-01-05 13:42:23 +01:00
|
|
|
this->layoutMessages();
|
2018-01-07 00:05:32 +01:00
|
|
|
this->queueUpdate();
|
2017-09-16 00:05:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChannelView::detachChannel()
|
|
|
|
{
|
2018-04-20 19:54:45 +02:00
|
|
|
messageAppendedConnection.disconnect();
|
|
|
|
messageAddedAtStartConnection.disconnect();
|
|
|
|
messageRemovedConnection.disconnect();
|
|
|
|
messageReplacedConnection.disconnect();
|
2017-09-16 00:05:06 +02:00
|
|
|
}
|
|
|
|
|
2018-01-05 11:22:51 +01:00
|
|
|
void ChannelView::pause(int msecTimeout)
|
|
|
|
{
|
2018-05-17 12:16:13 +02:00
|
|
|
this->pausedTemporarily = true;
|
2018-01-05 11:22:51 +01:00
|
|
|
|
|
|
|
this->pauseTimeout.start(msecTimeout);
|
|
|
|
}
|
|
|
|
|
2018-01-23 22:48:33 +01:00
|
|
|
void ChannelView::updateLastReadMessage()
|
|
|
|
{
|
|
|
|
auto _snapshot = this->getMessagesSnapshot();
|
|
|
|
|
|
|
|
if (_snapshot.getLength() > 0) {
|
|
|
|
this->lastReadMessage = _snapshot[_snapshot.getLength() - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
this->update();
|
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::resizeEvent(QResizeEvent *)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-05-17 12:16:13 +02:00
|
|
|
this->scrollBar.setGeometry(this->width() - this->scrollBar.width(), 0, this->scrollBar.width(),
|
|
|
|
this->height());
|
2017-01-16 03:15:07 +01:00
|
|
|
|
2017-09-21 17:34:41 +02:00
|
|
|
this->goToBottom->setGeometry(0, this->height() - 32, this->width(), 32);
|
|
|
|
|
|
|
|
this->scrollBar.raise();
|
|
|
|
|
2018-01-05 10:41:21 +01:00
|
|
|
this->layoutMessages();
|
2017-02-07 00:03:15 +01:00
|
|
|
|
2017-06-06 17:18:23 +02:00
|
|
|
this->update();
|
2017-01-03 21:19:33 +01:00
|
|
|
}
|
2017-01-05 16:07:20 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::setSelection(const SelectionItem &start, const SelectionItem &end)
|
2017-08-18 15:12:07 +02:00
|
|
|
{
|
|
|
|
// selections
|
2018-05-17 12:16:13 +02:00
|
|
|
if (!this->selecting && start != end) {
|
2018-05-17 17:27:20 +02:00
|
|
|
this->messagesAddedSinceSelectionPause = 0;
|
2018-05-17 12:16:13 +02:00
|
|
|
|
|
|
|
this->selecting = true;
|
|
|
|
this->pausedBySelection = true;
|
|
|
|
}
|
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
this->selection = Selection(start, end);
|
2017-08-18 15:12:07 +02:00
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
this->selectionChanged.invoke();
|
2017-08-18 15:12:07 +02:00
|
|
|
}
|
|
|
|
|
2018-01-17 16:52:51 +01:00
|
|
|
messages::MessageElement::Flags ChannelView::getFlags() const
|
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
2018-01-27 21:13:22 +01:00
|
|
|
if (this->overrideFlags) {
|
|
|
|
return this->overrideFlags.get();
|
|
|
|
}
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
MessageElement::Flags flags = app->settings->getWordFlags();
|
2018-01-17 16:52:51 +01:00
|
|
|
|
|
|
|
Split *split = dynamic_cast<Split *>(this->parentWidget());
|
|
|
|
|
|
|
|
if (split != nullptr) {
|
|
|
|
if (split->getModerationMode()) {
|
|
|
|
flags = (MessageElement::Flags)(flags | MessageElement::ModeratorTools);
|
|
|
|
}
|
2018-04-28 15:20:18 +02:00
|
|
|
if (this->channel == app->twitch.server->mentionsChannel) {
|
2018-01-23 23:28:06 +01:00
|
|
|
flags = (MessageElement::Flags)(flags | MessageElement::ChannelName);
|
|
|
|
}
|
2018-01-17 16:52:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
2018-05-17 12:16:13 +02:00
|
|
|
bool ChannelView::isPaused()
|
|
|
|
{
|
|
|
|
return this->pausedTemporarily || this->pausedBySelection;
|
|
|
|
}
|
|
|
|
|
2018-05-17 17:27:20 +02:00
|
|
|
// void ChannelView::beginPause()
|
|
|
|
//{
|
|
|
|
// if (this->scrollBar.isAtBottom()) {
|
|
|
|
// this->scrollBar.setDesiredValue(this->scrollBar.getDesiredValue() - 0.001);
|
|
|
|
// this->layoutMessages();
|
|
|
|
// }
|
|
|
|
//}
|
2018-05-17 12:16:13 +02:00
|
|
|
|
2018-05-17 17:27:20 +02:00
|
|
|
// void ChannelView::endPause()
|
|
|
|
//{
|
|
|
|
//}
|
2018-05-17 12:16:13 +02:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::paintEvent(QPaintEvent * /*event*/)
|
2017-01-05 16:07:20 +01:00
|
|
|
{
|
2017-10-11 10:34:04 +02:00
|
|
|
// BENCH(timer);
|
2017-02-07 00:03:15 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
QPainter painter(this);
|
2017-02-07 00:03:15 +01:00
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
painter.fillRect(rect(), this->themeManager->splits.background);
|
2017-08-18 15:12:07 +02:00
|
|
|
|
|
|
|
// draw messages
|
2018-01-11 20:16:25 +01:00
|
|
|
this->drawMessages(painter);
|
2018-01-01 23:29:54 +01:00
|
|
|
|
2017-10-11 10:34:04 +02:00
|
|
|
// MARK(timer);
|
2017-08-18 15:12:07 +02:00
|
|
|
}
|
|
|
|
|
2018-01-01 23:29:54 +01:00
|
|
|
// if overlays is false then it draws the message, if true then it draws things such as the grey
|
|
|
|
// overlay when a message is disabled
|
2018-01-11 20:16:25 +01:00
|
|
|
void ChannelView::drawMessages(QPainter &painter)
|
2017-08-18 15:12:07 +02:00
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
auto messagesSnapshot = this->getMessagesSnapshot();
|
2017-01-11 01:08:20 +01:00
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
size_t start = this->scrollBar.getCurrentValue();
|
2017-01-11 01:08:20 +01:00
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
if (start >= messagesSnapshot.getLength()) {
|
2017-01-18 04:33:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
int y = -(messagesSnapshot[start].get()->getHeight() *
|
|
|
|
(fmod(this->scrollBar.getCurrentValue(), 1)));
|
2017-01-18 04:33:30 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
messages::MessageLayout *end = nullptr;
|
2018-01-23 22:48:33 +01:00
|
|
|
bool windowFocused = this->window() == QApplication::activeWindow();
|
2017-12-26 18:24:02 +01:00
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
for (size_t i = start; i < messagesSnapshot.getLength(); ++i) {
|
2018-01-11 20:16:25 +01:00
|
|
|
messages::MessageLayout *layout = messagesSnapshot[i].get();
|
2017-02-07 00:03:15 +01:00
|
|
|
|
2018-01-23 22:48:33 +01:00
|
|
|
bool isLastMessage = false;
|
2018-04-27 22:11:19 +02:00
|
|
|
if (app->settings->showLastMessageIndicator) {
|
2018-01-23 22:48:33 +01:00
|
|
|
isLastMessage = this->lastReadMessage.get() == layout;
|
|
|
|
}
|
|
|
|
|
|
|
|
layout->paint(painter, y, i, this->selection, isLastMessage, windowFocused);
|
2017-02-03 19:31:51 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
y += layout->getHeight();
|
2017-01-20 06:10:28 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
end = layout;
|
2018-04-25 14:49:30 +02:00
|
|
|
if (y > this->height()) {
|
2017-01-20 06:10:28 +01:00
|
|
|
break;
|
|
|
|
}
|
2017-01-11 01:08:20 +01:00
|
|
|
}
|
2017-12-26 18:24:02 +01:00
|
|
|
|
|
|
|
if (end == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove messages that are on screen
|
|
|
|
// the messages that are left at the end get their buffers reset
|
|
|
|
for (size_t i = start; i < messagesSnapshot.getLength(); ++i) {
|
2018-01-01 22:29:21 +01:00
|
|
|
auto it = this->messagesOnScreen.find(messagesSnapshot[i]);
|
2017-12-26 18:24:02 +01:00
|
|
|
if (it != this->messagesOnScreen.end()) {
|
|
|
|
this->messagesOnScreen.erase(it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete the message buffers that aren't on screen
|
2018-01-11 20:16:25 +01:00
|
|
|
for (const std::shared_ptr<messages::MessageLayout> &item : this->messagesOnScreen) {
|
|
|
|
item->deleteBuffer();
|
2017-12-26 18:24:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this->messagesOnScreen.clear();
|
|
|
|
|
|
|
|
// add all messages on screen to the map
|
|
|
|
for (size_t i = start; i < messagesSnapshot.getLength(); ++i) {
|
2018-01-11 20:16:25 +01:00
|
|
|
std::shared_ptr<messages::MessageLayout> layout = messagesSnapshot[i];
|
2017-12-26 18:24:02 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
this->messagesOnScreen.insert(layout);
|
2017-12-26 18:24:02 +01:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
if (layout.get() == end) {
|
2017-12-26 18:24:02 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-08-18 15:12:07 +02:00
|
|
|
}
|
2017-02-07 00:03:15 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::wheelEvent(QWheelEvent *event)
|
2017-01-26 04:26:40 +01:00
|
|
|
{
|
2018-05-17 17:27:20 +02:00
|
|
|
this->pausedBySelection = false;
|
|
|
|
this->pausedTemporarily = false;
|
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
if (this->scrollBar.isVisible()) {
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
|
|
|
float mouseMultiplier = app->settings->mouseScrollMultiplier;
|
2017-04-14 17:47:28 +02:00
|
|
|
|
2018-01-05 02:55:24 +01:00
|
|
|
float desired = this->scrollBar.getDesiredValue();
|
|
|
|
float delta = event->delta() * 1.5 * mouseMultiplier;
|
|
|
|
|
|
|
|
auto snapshot = this->getMessagesSnapshot();
|
2018-01-11 20:16:25 +01:00
|
|
|
int snapshotLength = (int)snapshot.getLength();
|
|
|
|
int i = std::min((int)desired, snapshotLength);
|
2018-01-05 02:55:24 +01:00
|
|
|
|
|
|
|
if (delta > 0) {
|
|
|
|
float scrollFactor = fmod(desired, 1);
|
|
|
|
float currentScrollLeft = (int)(scrollFactor * snapshot[i]->getHeight());
|
|
|
|
|
|
|
|
for (; i >= 0; i--) {
|
|
|
|
if (delta < currentScrollLeft) {
|
|
|
|
desired -= scrollFactor * (delta / currentScrollLeft);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
delta -= currentScrollLeft;
|
|
|
|
desired -= scrollFactor;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == 0) {
|
|
|
|
desired = 0;
|
|
|
|
} else {
|
2018-01-25 20:49:49 +01:00
|
|
|
snapshot[i - 1]->layout(LAYOUT_WIDTH, this->getScale(), this->getFlags());
|
2018-01-05 02:55:24 +01:00
|
|
|
scrollFactor = 1;
|
|
|
|
currentScrollLeft = snapshot[i - 1]->getHeight();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
delta = -delta;
|
|
|
|
float scrollFactor = 1 - fmod(desired, 1);
|
|
|
|
float currentScrollLeft = (int)(scrollFactor * snapshot[i]->getHeight());
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
for (; i < snapshotLength; i++) {
|
2018-01-05 02:55:24 +01:00
|
|
|
if (delta < currentScrollLeft) {
|
|
|
|
desired += scrollFactor * ((double)delta / currentScrollLeft);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
delta -= currentScrollLeft;
|
|
|
|
desired += scrollFactor;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
if (i == snapshotLength - 1) {
|
2018-01-05 02:55:24 +01:00
|
|
|
desired = snapshot.getLength();
|
|
|
|
} else {
|
2018-01-25 20:49:49 +01:00
|
|
|
snapshot[i + 1]->layout(LAYOUT_WIDTH, this->getScale(), this->getFlags());
|
2018-01-05 02:55:24 +01:00
|
|
|
|
|
|
|
scrollFactor = 1;
|
|
|
|
currentScrollLeft = snapshot[i + 1]->getHeight();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this->scrollBar.setDesiredValue(desired, true);
|
2017-02-06 18:31:25 +01:00
|
|
|
}
|
2017-01-26 04:26:40 +01:00
|
|
|
}
|
2017-02-17 23:51:35 +01:00
|
|
|
|
2018-01-05 11:22:51 +01:00
|
|
|
void ChannelView::enterEvent(QEvent *)
|
|
|
|
{
|
|
|
|
// this->pause(PAUSE_TIME);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChannelView::leaveEvent(QEvent *)
|
|
|
|
{
|
2018-05-17 12:16:13 +02:00
|
|
|
this->pausedTemporarily = false;
|
2018-05-17 17:27:20 +02:00
|
|
|
this->layoutMessages();
|
2018-01-05 11:22:51 +01:00
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::mouseMoveEvent(QMouseEvent *event)
|
2017-02-17 23:51:35 +01:00
|
|
|
{
|
2018-01-17 01:19:42 +01:00
|
|
|
if (event->modifiers() & (Qt::AltModifier | Qt::ControlModifier)) {
|
|
|
|
this->unsetCursor();
|
|
|
|
|
|
|
|
event->ignore();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
|
|
|
if (app->settings->pauseChatHover.getValue()) {
|
2018-05-17 12:16:13 +02:00
|
|
|
this->pause(CHAT_HOVER_PAUSE_DURATION);
|
2018-01-05 11:22:51 +01:00
|
|
|
}
|
|
|
|
|
2017-12-23 22:17:38 +01:00
|
|
|
auto tooltipWidget = TooltipWidget::getInstance();
|
2018-01-11 20:16:25 +01:00
|
|
|
std::shared_ptr<messages::MessageLayout> layout;
|
2017-02-17 23:51:35 +01:00
|
|
|
QPoint relativePos;
|
2017-08-18 15:12:07 +02:00
|
|
|
int messageIndex;
|
2017-02-17 23:51:35 +01:00
|
|
|
|
2017-12-19 00:09:38 +01:00
|
|
|
// no message under cursor
|
2018-01-11 20:16:25 +01:00
|
|
|
if (!tryGetMessageAt(event->pos(), layout, relativePos, messageIndex)) {
|
2017-12-19 00:09:38 +01:00
|
|
|
this->setCursor(Qt::ArrowCursor);
|
2017-12-23 22:17:38 +01:00
|
|
|
tooltipWidget->hide();
|
2017-12-19 00:09:38 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// is selecting
|
2018-05-17 12:16:13 +02:00
|
|
|
if (this->isMouseDown) {
|
|
|
|
this->pause(300);
|
2018-01-11 20:16:25 +01:00
|
|
|
int index = layout->getSelectionIndex(relativePos);
|
2017-08-18 15:12:07 +02:00
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
this->setSelection(this->selection.start, SelectionItem(messageIndex, index));
|
2017-08-18 15:12:07 +02:00
|
|
|
|
2018-01-05 11:22:51 +01:00
|
|
|
this->queueUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
// message under cursor is collapsed
|
2018-04-18 09:12:29 +02:00
|
|
|
if (layout->getMessage()->flags & Message::Collapsed) {
|
2018-01-05 11:22:51 +01:00
|
|
|
this->setCursor(Qt::PointingHandCursor);
|
|
|
|
tooltipWidget->hide();
|
|
|
|
return;
|
2017-08-18 15:12:07 +02:00
|
|
|
}
|
2017-04-24 23:00:26 +02:00
|
|
|
|
2017-12-19 00:09:38 +01:00
|
|
|
// check if word underneath cursor
|
2018-01-11 20:16:25 +01:00
|
|
|
const messages::MessageLayoutElement *hoverLayoutElement = layout->getElementAt(relativePos);
|
|
|
|
|
|
|
|
if (hoverLayoutElement == nullptr) {
|
2017-12-19 00:09:38 +01:00
|
|
|
this->setCursor(Qt::ArrowCursor);
|
2017-12-23 22:17:38 +01:00
|
|
|
tooltipWidget->hide();
|
2017-02-17 23:51:35 +01:00
|
|
|
return;
|
|
|
|
}
|
2018-01-11 20:16:25 +01:00
|
|
|
const auto &tooltip = hoverLayoutElement->getCreator().getTooltip();
|
2017-12-19 03:36:05 +01:00
|
|
|
|
2018-01-17 03:26:32 +01:00
|
|
|
if (tooltip.isEmpty()) {
|
|
|
|
tooltipWidget->hide();
|
|
|
|
} else {
|
2018-01-22 15:06:36 +01:00
|
|
|
tooltipWidget->moveTo(this, event->globalPos());
|
2018-01-17 03:26:32 +01:00
|
|
|
tooltipWidget->setText(tooltip);
|
|
|
|
tooltipWidget->show();
|
|
|
|
}
|
2017-12-19 03:36:05 +01:00
|
|
|
|
2017-12-19 00:09:38 +01:00
|
|
|
// check if word has a link
|
2018-01-17 14:14:31 +01:00
|
|
|
if (hoverLayoutElement->getLink().isValid()) {
|
2017-12-19 00:09:38 +01:00
|
|
|
this->setCursor(Qt::PointingHandCursor);
|
2017-02-17 23:51:35 +01:00
|
|
|
} else {
|
2017-12-19 00:09:38 +01:00
|
|
|
this->setCursor(Qt::ArrowCursor);
|
2017-02-17 23:51:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::mousePressEvent(QMouseEvent *event)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-01-17 01:19:42 +01:00
|
|
|
if (event->modifiers() & (Qt::AltModifier | Qt::ControlModifier)) {
|
|
|
|
this->unsetCursor();
|
|
|
|
|
|
|
|
event->ignore();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
|
|
|
if (app->settings->linksDoubleClickOnly.getValue()) {
|
2018-01-05 11:22:51 +01:00
|
|
|
this->pause(200);
|
|
|
|
}
|
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->isMouseDown = true;
|
2017-08-18 15:12:07 +02:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->lastPressPosition = event->screenPos();
|
2017-06-11 20:53:43 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
std::shared_ptr<messages::MessageLayout> layout;
|
2017-08-18 15:12:07 +02:00
|
|
|
QPoint relativePos;
|
|
|
|
int messageIndex;
|
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
this->mouseDown.invoke(event);
|
2017-09-16 16:49:52 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
if (!tryGetMessageAt(event->pos(), layout, relativePos, messageIndex)) {
|
2017-08-18 15:12:07 +02:00
|
|
|
setCursor(Qt::ArrowCursor);
|
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
auto messagesSnapshot = this->getMessagesSnapshot();
|
|
|
|
if (messagesSnapshot.getLength() == 0) {
|
2017-11-04 13:17:35 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start selection at the last message at its last index
|
2017-12-22 15:13:42 +01:00
|
|
|
auto lastMessageIndex = messagesSnapshot.getLength() - 1;
|
|
|
|
auto lastMessage = messagesSnapshot[lastMessageIndex];
|
2017-11-04 13:17:35 +01:00
|
|
|
auto lastCharacterIndex = lastMessage->getLastCharacterIndex();
|
|
|
|
|
|
|
|
SelectionItem selectionItem(lastMessageIndex, lastCharacterIndex);
|
|
|
|
this->setSelection(selectionItem, selectionItem);
|
|
|
|
|
2017-08-18 15:12:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-19 00:09:38 +01:00
|
|
|
// check if message is collapsed
|
2018-04-18 09:12:29 +02:00
|
|
|
if (layout->getMessage()->flags & Message::Collapsed) {
|
2017-12-19 00:09:38 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
int index = layout->getSelectionIndex(relativePos);
|
2017-08-18 15:12:07 +02:00
|
|
|
|
|
|
|
auto selectionItem = SelectionItem(messageIndex, index);
|
|
|
|
this->setSelection(selectionItem, selectionItem);
|
|
|
|
|
|
|
|
this->repaint();
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void ChannelView::mouseReleaseEvent(QMouseEvent *event)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-01-17 01:19:42 +01:00
|
|
|
if (event->modifiers() & (Qt::AltModifier | Qt::ControlModifier)) {
|
|
|
|
this->unsetCursor();
|
|
|
|
|
|
|
|
event->ignore();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
if (!this->isMouseDown) {
|
2017-04-12 17:46:44 +02:00
|
|
|
// We didn't grab the mouse press, so we shouldn't be handling the mouse
|
|
|
|
// release
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
2018-01-05 11:22:51 +01:00
|
|
|
if (this->selecting) {
|
2018-05-17 17:27:20 +02:00
|
|
|
if (this->messagesAddedSinceSelectionPause > SELECTION_RESUME_SCROLLING_MSG_THRESHOLD) {
|
|
|
|
this->showingLatestMessages = false;
|
2018-05-17 12:16:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
this->pausedBySelection = false;
|
|
|
|
this->selecting = false;
|
|
|
|
this->pauseTimeout.stop();
|
|
|
|
this->pausedTemporarily = false;
|
|
|
|
|
|
|
|
this->layoutMessages();
|
2018-01-05 11:22:51 +01:00
|
|
|
}
|
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
this->isMouseDown = false;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-06-11 11:36:42 +02:00
|
|
|
float distance = util::distanceBetweenPoints(this->lastPressPosition, event->screenPos());
|
2017-04-12 17:46:44 +02:00
|
|
|
|
|
|
|
if (fabsf(distance) > 15.f) {
|
|
|
|
// It wasn't a proper click, so we don't care about that here
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If you clicked and released less than X pixels away, it counts
|
|
|
|
// as a click!
|
|
|
|
|
2018-02-06 00:10:30 +01:00
|
|
|
this->layoutMessages();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
std::shared_ptr<messages::MessageLayout> layout;
|
2017-04-12 17:46:44 +02:00
|
|
|
QPoint relativePos;
|
2017-08-18 15:12:07 +02:00
|
|
|
int messageIndex;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
if (!tryGetMessageAt(event->pos(), layout, relativePos, messageIndex)) {
|
2017-04-12 17:46:44 +02:00
|
|
|
// No message at clicked position
|
2017-06-11 11:36:42 +02:00
|
|
|
this->userPopupWidget.hide();
|
2017-04-12 17:46:44 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-19 00:09:38 +01:00
|
|
|
// message under cursor is collapsed
|
2018-04-18 09:12:29 +02:00
|
|
|
if (layout->getMessage()->flags & Message::MessageFlags::Collapsed) {
|
|
|
|
layout->getMessage()->flags &= ~Message::MessageFlags::Collapsed;
|
|
|
|
|
|
|
|
this->layoutMessages();
|
2017-12-19 00:09:38 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
const messages::MessageLayoutElement *hoverLayoutElement = layout->getElementAt(relativePos);
|
2017-04-24 23:00:26 +02:00
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
if (hoverLayoutElement == nullptr) {
|
2017-04-24 23:00:26 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-16 03:55:56 +02:00
|
|
|
const auto &creator = hoverLayoutElement->getCreator();
|
|
|
|
auto creatorFlags = creator.getFlags();
|
|
|
|
|
|
|
|
if ((creatorFlags & (MessageElement::Flags::EmoteImages | MessageElement::Flags::EmojiImage)) !=
|
|
|
|
0) {
|
|
|
|
if (event->button() == Qt::RightButton) {
|
|
|
|
static QMenu *menu = new QMenu;
|
|
|
|
menu->clear();
|
|
|
|
|
|
|
|
const auto &emoteElement = static_cast<const messages::EmoteElement &>(creator);
|
|
|
|
|
|
|
|
// TODO: We might want to add direct "Open image" variants alongside the Copy actions
|
|
|
|
|
|
|
|
if (emoteElement.data.image1x != nullptr) {
|
|
|
|
menu->addAction("Copy 1x link", [url = emoteElement.data.image1x->getUrl()] {
|
|
|
|
QApplication::clipboard()->setText(url); //
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (emoteElement.data.image2x != nullptr) {
|
|
|
|
menu->addAction("Copy 2x link", [url = emoteElement.data.image2x->getUrl()] {
|
|
|
|
QApplication::clipboard()->setText(url); //
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (emoteElement.data.image3x != nullptr) {
|
|
|
|
menu->addAction("Copy 3x link", [url = emoteElement.data.image3x->getUrl()] {
|
|
|
|
QApplication::clipboard()->setText(url); //
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((creatorFlags & MessageElement::Flags::BttvEmote) != 0) {
|
|
|
|
menu->addSeparator();
|
|
|
|
QString emotePageLink = emoteElement.data.pageLink;
|
|
|
|
menu->addAction("Copy BTTV emote link", [emotePageLink] {
|
|
|
|
QApplication::clipboard()->setText(emotePageLink); //
|
|
|
|
});
|
|
|
|
} else if ((creatorFlags & MessageElement::Flags::FfzEmote) != 0) {
|
|
|
|
menu->addSeparator();
|
|
|
|
QString emotePageLink = emoteElement.data.pageLink;
|
|
|
|
menu->addAction("Copy FFZ emote link", [emotePageLink] {
|
|
|
|
QApplication::clipboard()->setText(emotePageLink); //
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
menu->move(QCursor::pos());
|
|
|
|
menu->show();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-17 14:14:31 +01:00
|
|
|
auto &link = hoverLayoutElement->getLink();
|
2018-04-27 22:11:19 +02:00
|
|
|
if (event->button() != Qt::LeftButton || !app->settings->linksDoubleClickOnly) {
|
2018-01-24 21:44:31 +01:00
|
|
|
this->handleLinkClick(event, link, layout.get());
|
|
|
|
}
|
|
|
|
|
|
|
|
this->linkClicked.invoke(link);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChannelView::mouseDoubleClickEvent(QMouseEvent *event)
|
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
|
|
|
if (app->settings->linksDoubleClickOnly) {
|
2018-01-24 21:44:31 +01:00
|
|
|
std::shared_ptr<messages::MessageLayout> layout;
|
|
|
|
QPoint relativePos;
|
|
|
|
int messageIndex;
|
|
|
|
|
|
|
|
if (!tryGetMessageAt(event->pos(), layout, relativePos, messageIndex)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// message under cursor is collapsed
|
2018-04-18 09:12:29 +02:00
|
|
|
if (layout->getMessage()->flags & Message::Collapsed) {
|
2018-01-24 21:44:31 +01:00
|
|
|
return;
|
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-24 21:44:31 +01:00
|
|
|
const messages::MessageLayoutElement *hoverLayoutElement =
|
|
|
|
layout->getElementAt(relativePos);
|
|
|
|
|
|
|
|
if (hoverLayoutElement == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2018-01-24 21:44:31 +01:00
|
|
|
auto &link = hoverLayoutElement->getLink();
|
|
|
|
this->handleLinkClick(event, link, layout.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-18 09:12:29 +02:00
|
|
|
void ChannelView::hideEvent(QHideEvent *)
|
|
|
|
{
|
|
|
|
for (auto &layout : this->messagesOnScreen) {
|
|
|
|
layout->deleteBuffer();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->messagesOnScreen.clear();
|
|
|
|
}
|
|
|
|
|
2018-01-24 21:44:31 +01:00
|
|
|
void ChannelView::handleLinkClick(QMouseEvent *event, const messages::Link &link,
|
|
|
|
messages::MessageLayout *layout)
|
|
|
|
{
|
2018-01-28 03:52:52 +01:00
|
|
|
switch (link.type) {
|
2017-07-31 00:57:42 +02:00
|
|
|
case messages::Link::UserInfo: {
|
2018-01-28 03:52:52 +01:00
|
|
|
auto user = link.value;
|
2017-06-11 11:36:42 +02:00
|
|
|
this->userPopupWidget.setName(user);
|
2018-01-22 20:52:32 +01:00
|
|
|
this->userPopupWidget.moveTo(this, event->screenPos().toPoint());
|
2017-06-11 11:36:42 +02:00
|
|
|
this->userPopupWidget.show();
|
|
|
|
this->userPopupWidget.setFocus();
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-04-24 23:00:26 +02:00
|
|
|
qDebug() << "Clicked " << user << "s message";
|
|
|
|
break;
|
2017-07-26 09:08:19 +02:00
|
|
|
}
|
2017-07-31 00:57:42 +02:00
|
|
|
case messages::Link::Url: {
|
2018-01-24 21:16:00 +01:00
|
|
|
if (event->button() == Qt::RightButton) {
|
|
|
|
static QMenu *menu = nullptr;
|
|
|
|
static QString url;
|
|
|
|
|
|
|
|
if (menu == nullptr) {
|
|
|
|
menu = new QMenu;
|
|
|
|
menu->addAction("Open in browser",
|
|
|
|
[] { QDesktopServices::openUrl(QUrl(url)); });
|
|
|
|
menu->addAction("Copy to clipboard",
|
|
|
|
[] { QApplication::clipboard()->setText(url); });
|
|
|
|
}
|
|
|
|
|
2018-01-28 03:52:52 +01:00
|
|
|
url = link.value;
|
2018-01-24 21:16:00 +01:00
|
|
|
menu->move(QCursor::pos());
|
|
|
|
menu->show();
|
|
|
|
} else {
|
2018-01-28 03:52:52 +01:00
|
|
|
QDesktopServices::openUrl(QUrl(link.value));
|
2018-01-24 21:16:00 +01:00
|
|
|
}
|
2017-07-26 09:08:19 +02:00
|
|
|
break;
|
|
|
|
}
|
2018-01-17 14:14:31 +01:00
|
|
|
case messages::Link::UserAction: {
|
2018-01-28 03:52:52 +01:00
|
|
|
QString value = link.value;
|
2018-01-17 14:14:31 +01:00
|
|
|
value.replace("{user}", layout->getMessage()->loginName);
|
|
|
|
this->channel->sendMessage(value);
|
|
|
|
}
|
2017-04-24 23:00:26 +02:00
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
bool ChannelView::tryGetMessageAt(QPoint p, std::shared_ptr<messages::MessageLayout> &_message,
|
2017-09-16 00:05:06 +02:00
|
|
|
QPoint &relativePos, int &index)
|
2017-02-17 23:51:35 +01:00
|
|
|
{
|
2017-12-22 15:13:42 +01:00
|
|
|
auto messagesSnapshot = this->getMessagesSnapshot();
|
2017-02-17 23:51:35 +01:00
|
|
|
|
2017-09-12 19:06:16 +02:00
|
|
|
size_t start = this->scrollBar.getCurrentValue();
|
2017-02-17 23:51:35 +01:00
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
if (start >= messagesSnapshot.getLength()) {
|
2017-02-17 23:51:35 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
int y = -(messagesSnapshot[start]->getHeight() * (fmod(this->scrollBar.getCurrentValue(), 1)));
|
2017-02-17 23:51:35 +01:00
|
|
|
|
2017-12-22 15:13:42 +01:00
|
|
|
for (size_t i = start; i < messagesSnapshot.getLength(); ++i) {
|
|
|
|
auto message = messagesSnapshot[i];
|
2017-02-17 23:51:35 +01:00
|
|
|
|
2017-04-24 23:00:26 +02:00
|
|
|
if (p.y() < y + message->getHeight()) {
|
|
|
|
relativePos = QPoint(p.x(), p.y() - y);
|
2017-02-17 23:51:35 +01:00
|
|
|
_message = message;
|
2017-08-18 15:12:07 +02:00
|
|
|
index = i;
|
2017-02-17 23:51:35 +01:00
|
|
|
return true;
|
|
|
|
}
|
2017-04-24 23:00:26 +02:00
|
|
|
|
|
|
|
y += message->getHeight();
|
2017-02-17 23:51:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-06 17:18:23 +02:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|