mirror-chatterino2/src/widgets/helper/SplitInput.cpp

368 lines
12 KiB
C++
Raw Normal View History

2017-11-12 17:21:50 +01:00
#include "widgets/helper/splitinput.hpp"
#include "application.hpp"
#include "controllers/commands/commandcontroller.hpp"
2018-05-25 13:53:55 +02:00
#include "providers/twitch/twitchchannel.hpp"
#include "providers/twitch/twitchserver.hpp"
2017-12-31 00:50:07 +01:00
#include "singletons/ircmanager.hpp"
#include "singletons/settingsmanager.hpp"
#include "singletons/thememanager.hpp"
2018-01-25 20:49:49 +01:00
#include "util/layoutcreator.hpp"
#include "util/urlfetch.hpp"
2017-11-12 17:21:50 +01:00
#include "widgets/notebook.hpp"
#include "widgets/split.hpp"
#include "widgets/splitcontainer.hpp"
2017-01-01 02:30:42 +01:00
#include <QCompleter>
2017-01-18 04:52:47 +01:00
#include <QPainter>
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace widgets {
2017-01-18 21:30:23 +01:00
2017-12-17 02:18:13 +01:00
SplitInput::SplitInput(Split *_chatWidget)
: BaseWidget(_chatWidget)
2018-06-06 18:57:22 +02:00
, split_(_chatWidget)
2017-01-01 02:30:42 +01:00
{
2018-01-25 20:49:49 +01:00
this->initLayout();
2018-06-06 18:57:22 +02:00
auto completer = new QCompleter(&this->split_->getChannel().get()->completionModel);
this->ui_.textEdit->setCompleter(completer);
2018-01-25 20:49:49 +01:00
2018-06-06 18:57:22 +02:00
this->split_->channelChanged.connect([this] {
auto completer = new QCompleter(&this->split_->getChannel()->completionModel);
this->ui_.textEdit->setCompleter(completer);
});
2018-01-25 20:49:49 +01:00
// misc
this->installKeyPressedEvent();
this->scaleChangedEvent(this->getScale());
}
2018-01-25 20:49:49 +01:00
void SplitInput::initLayout()
{
auto app = getApp();
2018-01-25 20:49:49 +01:00
util::LayoutCreator<SplitInput> layoutCreator(this);
2018-06-06 18:57:22 +02:00
auto layout =
layoutCreator.setLayoutType<QHBoxLayout>().withoutMargin().assign(&this->ui_.hbox);
2017-10-27 20:34:23 +02:00
2018-01-25 20:49:49 +01:00
// input
2018-06-06 18:57:22 +02:00
auto textEdit = layout.emplace<ResizingTextEdit>().assign(&this->ui_.textEdit);
2018-01-25 20:49:49 +01:00
connect(textEdit.getElement(), &ResizingTextEdit::textChanged, this,
&SplitInput::editTextChanged);
2018-01-25 20:49:49 +01:00
// right box
auto box = layout.emplace<QVBoxLayout>().withoutMargin();
box->setSpacing(0);
{
2018-06-06 18:57:22 +02:00
auto textEditLength = box.emplace<QLabel>().assign(&this->ui_.textEditLength);
2018-01-25 20:49:49 +01:00
textEditLength->setAlignment(Qt::AlignRight);
2017-09-15 17:23:49 +02:00
2018-01-25 20:49:49 +01:00
box->addStretch(1);
2018-06-06 18:57:22 +02:00
box.emplace<RippleEffectLabel>().assign(&this->ui_.emoteButton);
2018-01-25 20:49:49 +01:00
}
2018-06-06 18:57:22 +02:00
this->ui_.emoteButton->getLabel().setTextFormat(Qt::RichText);
2018-01-25 20:49:49 +01:00
// ---- misc
2018-01-25 20:49:49 +01:00
// set edit font
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setFont(
2018-05-23 04:22:17 +02:00
app->fonts->getFont(singletons::FontManager::Type::ChatMedium, this->getScale()));
2018-06-13 13:29:11 +02:00
this->managedConnections_.push_back(app->fonts->fontChanged.connect([=]() {
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setFont(
2018-05-23 04:22:17 +02:00
app->fonts->getFont(singletons::FontManager::Type::ChatMedium, this->getScale()));
2018-01-25 20:49:49 +01:00
}));
// open emote popup
2018-06-06 18:57:22 +02:00
QObject::connect(this->ui_.emoteButton, &RippleEffectLabel::clicked, [this] {
if (!this->emotePopup_) {
this->emotePopup_ = std::make_unique<EmotePopup>();
this->emotePopup_->linkClicked.connect([this](const messages::Link &link) {
2018-01-28 03:52:52 +01:00
if (link.type == messages::Link::InsertText) {
this->insertText(link.value + " ");
2018-01-24 20:58:53 +01:00
}
});
2017-09-15 17:23:49 +02:00
}
2018-06-06 18:57:22 +02:00
this->emotePopup_->resize(int(300 * this->emotePopup_->getScale()),
int(500 * this->emotePopup_->getScale()));
this->emotePopup_->loadChannel(this->split_->getChannel());
this->emotePopup_->show();
2017-09-15 17:23:49 +02:00
});
2018-01-25 20:49:49 +01:00
// clear channelview selection when selecting in the input
2018-06-06 18:57:22 +02:00
QObject::connect(this->ui_.textEdit, &QTextEdit::copyAvailable, [this](bool available) {
2018-01-25 20:49:49 +01:00
if (available) {
2018-06-06 18:57:22 +02:00
this->split_->view.clearSelection();
2018-01-25 20:49:49 +01:00
}
});
2017-01-22 12:46:35 +01:00
2018-01-25 20:49:49 +01:00
// textEditLength visibility
app->settings->showMessageLength.connect(
2018-06-06 18:57:22 +02:00
[this](const bool &value, auto) { this->ui_.textEditLength->setHidden(!value); },
this->managedConnections_);
2018-01-25 20:49:49 +01:00
}
2017-01-22 12:46:35 +01:00
2018-01-25 20:49:49 +01:00
void SplitInput::scaleChangedEvent(float scale)
{
// update the icon size of the emote button
2018-06-07 17:43:21 +02:00
this->updateEmoteButton();
2018-01-25 20:49:49 +01:00
// set maximum height
2018-05-25 13:53:55 +02:00
this->setMaximumHeight(int(150 * this->getScale()));
2018-06-11 15:04:54 +02:00
this->ui_.textEdit->setFont(getApp()->fonts->getFont(FontStyle::ChatMedium, this->getScale()));
2018-01-25 20:49:49 +01:00
}
void SplitInput::themeRefreshEvent()
{
QPalette palette;
palette.setColor(QPalette::Foreground, this->themeManager->splits.input.text);
2018-06-07 17:43:21 +02:00
this->updateEmoteButton();
2018-06-06 18:57:22 +02:00
this->ui_.textEditLength->setPalette(palette);
2018-01-25 20:49:49 +01:00
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setStyleSheet(this->themeManager->splits.input.styleSheet);
2018-01-25 20:49:49 +01:00
2018-06-06 18:57:22 +02:00
this->ui_.hbox->setMargin(int((this->themeManager->isLightTheme() ? 4 : 2) * this->getScale()));
2018-06-07 17:43:21 +02:00
this->ui_.emoteButton->getLabel().setStyleSheet("color: #000");
}
void SplitInput::updateEmoteButton()
{
float scale = this->getScale();
QString text = "<img src=':/images/emote.svg' width='xD' height='xD' />";
text.replace("xD", QString::number(int(12 * scale)));
if (this->themeManager->isLightTheme()) {
text.replace("emote", "emote_dark");
}
this->ui_.emoteButton->getLabel().setText(text);
this->ui_.emoteButton->setFixedHeight(int(18 * scale));
2018-01-25 20:49:49 +01:00
}
2018-01-25 20:49:49 +01:00
void SplitInput::installKeyPressedEvent()
{
auto app = getApp();
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->keyPressed.connect([this, app](QKeyEvent *event) {
2017-01-29 13:23:22 +01:00
if (event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return) {
2018-06-06 18:57:22 +02:00
auto c = this->split_->getChannel();
2017-05-28 00:47:16 +02:00
if (c == nullptr) {
return;
2017-01-29 13:23:22 +01:00
}
2018-06-06 18:57:22 +02:00
QString message = ui_.textEdit->toPlainText();
2017-08-12 12:24:28 +02:00
QString sendMessage = app->commands->execCommand(message, c, false);
sendMessage = sendMessage.replace('\n', ' ');
c->sendMessage(sendMessage);
// don't add duplicate messages to message history
2018-06-06 18:57:22 +02:00
if (this->prevMsg_.isEmpty() || !this->prevMsg_.endsWith(message))
this->prevMsg_.append(message);
2017-08-12 12:24:28 +02:00
2017-05-28 00:47:16 +02:00
event->accept();
2017-07-31 01:26:14 +02:00
if (!(event->modifiers() == Qt::ControlModifier)) {
2018-06-06 18:57:22 +02:00
this->currMsg_ = QString();
this->ui_.textEdit->setText(QString());
this->prevIndex_ = 0;
} else if (this->ui_.textEdit->toPlainText() ==
this->prevMsg_.at(this->prevMsg_.size() - 1)) {
this->prevMsg_.removeLast();
}
2018-06-06 18:57:22 +02:00
this->prevIndex_ = this->prevMsg_.size();
2017-07-31 01:26:14 +02:00
} else if (event->key() == Qt::Key_Up) {
if ((event->modifiers() & Qt::ShiftModifier) != 0) {
return;
}
if (event->modifiers() == Qt::AltModifier) {
2018-06-06 18:57:22 +02:00
SplitContainer *page = this->split_->getContainer();
2018-05-25 14:57:17 +02:00
if (page != nullptr) {
page->selectNextSplit(SplitContainer::Above);
}
} else {
2018-06-06 18:57:22 +02:00
if (this->prevMsg_.size() && this->prevIndex_) {
if (this->prevIndex_ == (this->prevMsg_.size())) {
this->currMsg_ = ui_.textEdit->toPlainText();
2018-04-08 14:33:45 +02:00
}
2018-06-06 18:57:22 +02:00
this->prevIndex_--;
this->ui_.textEdit->setText(this->prevMsg_.at(this->prevIndex_));
2018-04-08 14:33:45 +02:00
2018-06-06 18:57:22 +02:00
QTextCursor cursor = this->ui_.textEdit->textCursor();
2018-04-08 14:33:45 +02:00
cursor.movePosition(QTextCursor::End);
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setTextCursor(cursor);
}
}
2017-07-31 01:26:14 +02:00
} else if (event->key() == Qt::Key_Down) {
if ((event->modifiers() & Qt::ShiftModifier) != 0) {
return;
}
if (event->modifiers() == Qt::AltModifier) {
2018-06-06 18:57:22 +02:00
SplitContainer *page = this->split_->getContainer();
2018-05-25 14:57:17 +02:00
if (page != nullptr) {
page->selectNextSplit(SplitContainer::Below);
}
} else {
2018-06-06 18:57:22 +02:00
if (this->prevIndex_ != (this->prevMsg_.size() - 1) &&
this->prevIndex_ != this->prevMsg_.size()) {
this->prevIndex_++;
this->ui_.textEdit->setText(this->prevMsg_.at(this->prevIndex_));
} else {
2018-06-06 18:57:22 +02:00
this->prevIndex_ = this->prevMsg_.size();
this->ui_.textEdit->setText(this->currMsg_);
}
2018-04-08 14:33:45 +02:00
2018-06-06 18:57:22 +02:00
QTextCursor cursor = this->ui_.textEdit->textCursor();
2018-04-08 14:33:45 +02:00
cursor.movePosition(QTextCursor::End);
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setTextCursor(cursor);
}
} else if (event->key() == Qt::Key_Left) {
if (event->modifiers() == Qt::AltModifier) {
2018-06-06 18:57:22 +02:00
SplitContainer *page = this->split_->getContainer();
2018-05-25 14:57:17 +02:00
if (page != nullptr) {
page->selectNextSplit(SplitContainer::Left);
}
}
} else if (event->key() == Qt::Key_Right) {
if (event->modifiers() == Qt::AltModifier) {
2018-06-06 18:57:22 +02:00
SplitContainer *page = this->split_->getContainer();
2018-05-25 14:57:17 +02:00
if (page != nullptr) {
page->selectNextSplit(SplitContainer::Right);
}
}
} else if (event->key() == Qt::Key_Tab) {
if (event->modifiers() == Qt::ControlModifier) {
2018-06-06 18:57:22 +02:00
SplitContainer *page = static_cast<SplitContainer *>(this->split_->parentWidget());
2018-05-23 11:59:37 +02:00
Notebook *notebook = static_cast<Notebook *>(page->parentWidget());
2018-05-23 04:22:17 +02:00
notebook->selectNextTab();
}
} else if (event->key() == Qt::Key_Backtab) {
if (event->modifiers() == (Qt::ControlModifier | Qt::ShiftModifier)) {
2018-06-06 18:57:22 +02:00
SplitContainer *page = static_cast<SplitContainer *>(this->split_->parentWidget());
2018-05-23 11:59:37 +02:00
Notebook *notebook = static_cast<Notebook *>(page->parentWidget());
2018-05-23 04:22:17 +02:00
notebook->selectPreviousTab();
}
} else if (event->key() == Qt::Key_C && event->modifiers() == Qt::ControlModifier) {
2018-06-06 18:57:22 +02:00
if (this->split_->view.hasSelection()) {
this->split_->doCopy();
2017-09-21 02:20:02 +02:00
event->accept();
}
2017-01-29 13:23:22 +01:00
}
});
2017-01-22 12:46:35 +01:00
}
2017-11-12 17:21:50 +01:00
void SplitInput::clearSelection()
2017-09-21 02:20:02 +02:00
{
2018-06-06 18:57:22 +02:00
QTextCursor c = this->ui_.textEdit->textCursor();
2017-09-21 02:20:02 +02:00
c.setPosition(c.position());
c.setPosition(c.position(), QTextCursor::KeepAnchor);
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setTextCursor(c);
2017-09-21 02:20:02 +02:00
}
QString SplitInput::getInputText() const
{
2018-06-06 18:57:22 +02:00
return this->ui_.textEdit->toPlainText();
}
2018-01-24 20:58:53 +01:00
void SplitInput::insertText(const QString &text)
{
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->insertPlainText(text);
2017-01-01 02:30:42 +01:00
}
2017-11-12 17:21:50 +01:00
void SplitInput::editTextChanged()
2017-01-29 13:23:22 +01:00
{
auto app = getApp();
2018-01-25 20:49:49 +01:00
// set textLengthLabel value
2018-06-06 18:57:22 +02:00
QString text = this->ui_.textEdit->toPlainText();
2017-12-17 02:40:05 +01:00
2018-06-06 10:46:23 +02:00
if (text.startsWith("/r ", Qt::CaseInsensitive) &&
2018-06-06 18:57:22 +02:00
this->split_->getChannel()->isTwitchChannel()) //
2018-05-25 13:53:55 +02:00
{
QString lastUser = app->twitch.server->lastUserThatWhisperedMe.get();
if (!lastUser.isEmpty()) {
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setPlainText("/w " + lastUser + text.mid(2));
this->ui_.textEdit->moveCursor(QTextCursor::EndOfBlock);
2018-05-25 13:53:55 +02:00
}
} else {
this->textChanged.invoke(text);
2018-05-25 13:53:55 +02:00
text = text.trimmed();
static QRegularExpression spaceRegex("\\s\\s+");
text = text.replace(spaceRegex, " ");
2017-12-17 02:40:05 +01:00
2018-06-06 18:57:22 +02:00
text = app->commands->execCommand(text, this->split_->getChannel(), true);
2018-05-25 13:53:55 +02:00
}
2017-12-17 02:40:05 +01:00
QString labelText;
if (text.length() == 0) {
labelText = "";
} else {
labelText = QString::number(text.length());
}
2018-06-06 18:57:22 +02:00
this->ui_.textEditLength->setText(labelText);
2017-01-29 13:23:22 +01:00
}
2017-11-12 17:21:50 +01:00
void SplitInput::paintEvent(QPaintEvent *)
2017-01-01 02:30:42 +01:00
{
QPainter painter(this);
if (this->themeManager->isLightTheme()) {
2018-05-25 13:53:55 +02:00
int s = int(3 * this->getScale());
2018-05-23 04:22:17 +02:00
QRect rect = this->rect().marginsRemoved(QMargins(s, s, s, s));
painter.fillRect(rect, this->themeManager->splits.input.background);
painter.setPen(QColor("#ccc"));
painter.drawRect(rect);
} else {
2018-05-25 13:53:55 +02:00
int s = int(1 * this->getScale());
2018-05-23 04:22:17 +02:00
QRect rect = this->rect().marginsRemoved(QMargins(s, s, s, s));
painter.fillRect(rect, this->themeManager->splits.input.background);
painter.setPen(QColor("#333"));
painter.drawRect(rect);
2017-12-26 16:54:39 +01:00
}
2018-06-06 13:35:06 +02:00
// int offset = 2;
// painter.fillRect(offset, this->height() - offset, this->width() - 2 * offset, 1,
// getApp()->themes->splits.input.focusedLine);
2017-01-01 02:30:42 +01:00
}
2017-11-12 17:21:50 +01:00
void SplitInput::resizeEvent(QResizeEvent *)
{
if (this->height() == this->maximumHeight()) {
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
} else {
2018-06-06 18:57:22 +02:00
this->ui_.textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
}
2017-11-12 17:21:50 +01:00
void SplitInput::mousePressEvent(QMouseEvent *)
2017-07-31 01:26:20 +02:00
{
2018-06-06 18:57:22 +02:00
this->split_->giveFocus(Qt::MouseFocusReason);
2017-07-31 01:26:20 +02:00
}
} // namespace widgets
} // namespace chatterino