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

334 lines
11 KiB
C++
Raw Normal View History

2017-11-12 17:21:50 +01:00
#include "widgets/helper/splitinput.hpp"
#include "singletons/commandmanager.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)
, chatWidget(_chatWidget)
2017-01-01 02:30:42 +01:00
{
2018-01-25 20:49:49 +01:00
this->initLayout();
auto completer = new QCompleter(&this->chatWidget->getChannel()->completionModel);
2018-01-25 20:49:49 +01:00
this->ui.textEdit->setCompleter(completer);
this->chatWidget->channelChanged.connect([this] {
auto completer = new QCompleter(&this->chatWidget->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()
{
2017-12-31 22:58:35 +01:00
auto &fontManager = singletons::FontManager::getInstance();
2018-01-25 20:49:49 +01:00
util::LayoutCreator<SplitInput> layoutCreator(this);
2018-01-25 20:49:49 +01: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
auto textEdit = layout.emplace<ResizingTextEdit>().assign(&this->ui.textEdit);
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);
{
auto textEditLength = box.emplace<QLabel>().assign(&this->ui.textEditLength);
textEditLength->setAlignment(Qt::AlignRight);
2017-09-15 17:23:49 +02:00
2018-01-25 20:49:49 +01:00
box->addStretch(1);
box.emplace<RippleEffectLabel>().assign(&this->ui.emoteButton);
}
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
this->ui.textEdit->setFont(
fontManager.getFont(singletons::FontManager::Type::Medium, this->getScale()));
2018-01-25 20:49:49 +01:00
this->managedConnections.emplace_back(fontManager.fontChanged.connect([this, &fontManager]() {
this->ui.textEdit->setFont(
fontManager.getFont(singletons::FontManager::Type::Medium, this->getScale()));
}));
// open emote popup
QObject::connect(this->ui.emoteButton, &RippleEffectLabel::clicked, [this] {
2018-01-24 20:58:53 +01:00
if (!this->emotePopup) {
this->emotePopup = std::make_unique<EmotePopup>(this->themeManager);
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-01-25 20:49:49 +01:00
this->emotePopup->resize((int)(300 * this->emotePopup->getScale()),
(int)(500 * this->emotePopup->getScale()));
this->emotePopup->loadChannel(this->chatWidget->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
QObject::connect(this->ui.textEdit, &QTextEdit::copyAvailable, [this](bool available) {
if (available) {
this->chatWidget->view.clearSelection();
}
});
2017-01-22 12:46:35 +01:00
2018-01-25 20:49:49 +01:00
// textEditLength visibility
singletons::SettingManager::getInstance().showMessageLength.connect(
[this](const bool &value, auto) { this->ui.textEditLength->setHidden(!value); },
this->managedConnections);
}
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
QString text = "<img src=':/images/emote.svg' width='xD' height='xD' />";
text.replace("xD", QString::number((int)12 * scale));
this->ui.emoteButton->getLabel().setText(text);
this->ui.emoteButton->setFixedHeight((int)18 * scale);
// set maximum height
this->setMaximumHeight((int)(150 * this->getScale()));
}
void SplitInput::themeRefreshEvent()
{
QPalette palette;
palette.setColor(QPalette::Foreground, this->themeManager.splits.input.text);
2018-01-25 20:49:49 +01:00
this->ui.textEditLength->setPalette(palette);
this->ui.textEdit->setStyleSheet(this->themeManager.splits.input.styleSheet);
this->ui.hbox->setMargin((this->themeManager.isLightTheme() ? 4 : 2) * this->getScale());
}
2018-01-25 20:49:49 +01:00
void SplitInput::installKeyPressedEvent()
{
this->ui.textEdit->keyPressed.connect([this](QKeyEvent *event) {
2017-01-29 13:23:22 +01:00
if (event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return) {
auto c = this->chatWidget->getChannel();
2017-05-28 00:47:16 +02:00
if (c == nullptr) {
return;
2017-01-29 13:23:22 +01:00
}
2018-01-25 20:49:49 +01:00
QString message = ui.textEdit->toPlainText();
2017-08-12 12:24:28 +02:00
QString sendMessage =
2018-01-05 02:05:59 +01:00
singletons::CommandManager::getInstance().execCommand(message, c, false);
sendMessage = sendMessage.replace('\n', ' ');
c->sendMessage(sendMessage);
// don't add duplicate messages to message history
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-04-08 14:33:45 +02:00
this->currMsg = QString();
2018-01-25 20:49:49 +01:00
this->ui.textEdit->setText(QString());
this->prevIndex = 0;
2018-01-25 20:49:49 +01:00
} else if (this->ui.textEdit->toPlainText() ==
this->prevMsg.at(this->prevMsg.size() - 1)) {
this->prevMsg.removeLast();
}
this->prevIndex = this->prevMsg.size();
2017-07-31 01:26:14 +02:00
} else if (event->key() == Qt::Key_Up) {
if (event->modifiers() == Qt::AltModifier) {
2017-11-12 17:21:50 +01:00
SplitContainer *page =
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
int reqX = page->currentX;
int reqY = page->lastRequestedY[reqX] - 1;
qDebug() << "Alt+Down to" << reqX << "/" << reqY;
page->requestFocus(reqX, reqY);
} else {
if (this->prevMsg.size() && this->prevIndex) {
2018-04-08 14:33:45 +02:00
if (this->prevIndex == (this->prevMsg.size())) {
this->currMsg = ui.textEdit->toPlainText();
}
this->prevIndex--;
2018-01-25 20:49:49 +01:00
this->ui.textEdit->setText(this->prevMsg.at(this->prevIndex));
2018-04-08 14:33:45 +02:00
QTextCursor cursor = this->ui.textEdit->textCursor();
cursor.movePosition(QTextCursor::End);
this->ui.textEdit->setTextCursor(cursor);
}
}
2017-07-31 01:26:14 +02:00
} else if (event->key() == Qt::Key_Down) {
if (event->modifiers() == Qt::AltModifier) {
2017-11-12 17:21:50 +01:00
SplitContainer *page =
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
int reqX = page->currentX;
int reqY = page->lastRequestedY[reqX] + 1;
qDebug() << "Alt+Down to" << reqX << "/" << reqY;
page->requestFocus(reqX, reqY);
} else {
if (this->prevIndex != (this->prevMsg.size() - 1) &&
this->prevIndex != this->prevMsg.size()) {
this->prevIndex++;
2018-01-25 20:49:49 +01:00
this->ui.textEdit->setText(this->prevMsg.at(this->prevIndex));
} else {
this->prevIndex = this->prevMsg.size();
2018-04-08 14:33:45 +02:00
this->ui.textEdit->setText(this->currMsg);
}
2018-04-08 14:33:45 +02:00
QTextCursor cursor = this->ui.textEdit->textCursor();
cursor.movePosition(QTextCursor::End);
this->ui.textEdit->setTextCursor(cursor);
}
} else if (event->key() == Qt::Key_Left) {
if (event->modifiers() == Qt::AltModifier) {
2017-11-12 17:21:50 +01:00
SplitContainer *page =
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
int reqX = page->currentX - 1;
int reqY = page->lastRequestedY[reqX];
qDebug() << "Alt+Left to" << reqX << "/" << reqY;
page->requestFocus(reqX, reqY);
}
} else if (event->key() == Qt::Key_Right) {
if (event->modifiers() == Qt::AltModifier) {
2017-11-12 17:21:50 +01:00
SplitContainer *page =
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
int reqX = page->currentX + 1;
int reqY = page->lastRequestedY[reqX];
qDebug() << "Alt+Right to" << reqX << "/" << reqY;
page->requestFocus(reqX, reqY);
}
} else if (event->key() == Qt::Key_Tab) {
if (event->modifiers() == Qt::ControlModifier) {
2017-11-12 17:21:50 +01:00
SplitContainer *page =
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
Notebook *notebook = static_cast<Notebook *>(page->parentWidget());
notebook->nextTab();
}
} else if (event->key() == Qt::Key_Backtab) {
if (event->modifiers() == (Qt::ControlModifier | Qt::ShiftModifier)) {
2017-11-12 17:21:50 +01:00
SplitContainer *page =
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
Notebook *notebook = static_cast<Notebook *>(page->parentWidget());
notebook->previousTab();
}
} else if (event->key() == Qt::Key_C && event->modifiers() == Qt::ControlModifier) {
2017-09-21 02:20:02 +02:00
if (this->chatWidget->view.hasSelection()) {
this->chatWidget->doCopy();
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-01-25 20:49:49 +01: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-01-25 20:49:49 +01:00
this->ui.textEdit->setTextCursor(c);
2017-09-21 02:20:02 +02:00
}
QString SplitInput::getInputText() const
{
2018-01-25 20:49:49 +01:00
return this->ui.textEdit->toPlainText();
}
2018-01-24 20:58:53 +01:00
void SplitInput::insertText(const QString &text)
{
2018-01-25 20:49:49 +01: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
{
2018-01-25 20:49:49 +01:00
// set textLengthLabel value
QString text = this->ui.textEdit->toPlainText();
2017-12-17 02:40:05 +01:00
this->textChanged.invoke(text);
2017-12-17 02:40:05 +01:00
text = text.trimmed();
static QRegularExpression spaceRegex("\\s\\s+");
text = text.replace(spaceRegex, " ");
2018-01-05 02:05:59 +01:00
text = singletons::CommandManager::getInstance().execCommand(
text, this->chatWidget->getChannel(), true);
2017-12-17 02:40:05 +01:00
QString labelText;
if (text.length() == 0) {
labelText = "";
} else {
labelText = QString::number(text.length());
}
2018-01-25 20:49:49 +01: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);
2018-01-02 02:15:11 +01:00
painter.fillRect(this->rect(), this->themeManager.splits.input.background);
2017-12-26 16:54:39 +01:00
2018-01-02 02:15:11 +01:00
QPen pen(this->themeManager.splits.input.border);
2017-12-31 00:50:07 +01:00
if (this->themeManager.isLightTheme()) {
2018-01-25 20:49:49 +01:00
pen.setWidth((int)(6 * this->getScale()));
2017-12-26 16:54:39 +01:00
}
painter.setPen(pen);
painter.drawRect(0, 0, this->width() - 1, this->height() - 1);
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-01-25 20:49:49 +01:00
this->ui.textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
} else {
2018-01-25 20:49:49 +01: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
{
this->chatWidget->giveFocus(Qt::MouseFocusReason);
2017-07-31 01:26:20 +02:00
}
} // namespace widgets
} // namespace chatterino