#include "widgets/helper/splitinput.hpp" #include "application.hpp" #include "controllers/commands/commandcontroller.hpp" #include "singletons/ircmanager.hpp" #include "singletons/settingsmanager.hpp" #include "singletons/thememanager.hpp" #include "util/layoutcreator.hpp" #include "util/urlfetch.hpp" #include "widgets/notebook.hpp" #include "widgets/split.hpp" #include "widgets/splitcontainer.hpp" #include #include namespace chatterino { namespace widgets { SplitInput::SplitInput(Split *_chatWidget) : BaseWidget(_chatWidget) , chatWidget(_chatWidget) { this->initLayout(); auto completer = new QCompleter(&this->chatWidget->getChannel().get()->completionModel); this->ui.textEdit->setCompleter(completer); this->chatWidget->channelChanged.connect([this] { auto completer = new QCompleter(&this->chatWidget->getChannel()->completionModel); this->ui.textEdit->setCompleter(completer); }); // misc this->installKeyPressedEvent(); this->scaleChangedEvent(this->getScale()); } void SplitInput::initLayout() { auto app = getApp(); util::LayoutCreator layoutCreator(this); auto layout = layoutCreator.setLayoutType().withoutMargin().assign(&this->ui.hbox); // input auto textEdit = layout.emplace().assign(&this->ui.textEdit); connect(textEdit.getElement(), &ResizingTextEdit::textChanged, this, &SplitInput::editTextChanged); // right box auto box = layout.emplace().withoutMargin(); box->setSpacing(0); { auto textEditLength = box.emplace().assign(&this->ui.textEditLength); textEditLength->setAlignment(Qt::AlignRight); box->addStretch(1); box.emplace().assign(&this->ui.emoteButton); } this->ui.emoteButton->getLabel().setTextFormat(Qt::RichText); // ---- misc // set edit font this->ui.textEdit->setFont( app->fonts->getFont(singletons::FontManager::Type::ChatMedium, this->getScale())); this->managedConnections.emplace_back(app->fonts->fontChanged.connect([=]() { this->ui.textEdit->setFont( app->fonts->getFont(singletons::FontManager::Type::ChatMedium, this->getScale())); })); // open emote popup QObject::connect(this->ui.emoteButton, &RippleEffectLabel::clicked, [this] { if (!this->emotePopup) { this->emotePopup = std::make_unique(); this->emotePopup->linkClicked.connect([this](const messages::Link &link) { if (link.type == messages::Link::InsertText) { this->insertText(link.value + " "); } }); } this->emotePopup->resize((int)(300 * this->emotePopup->getScale()), (int)(500 * this->emotePopup->getScale())); this->emotePopup->loadChannel(this->chatWidget->getChannel()); this->emotePopup->show(); }); // clear channelview selection when selecting in the input QObject::connect(this->ui.textEdit, &QTextEdit::copyAvailable, [this](bool available) { if (available) { this->chatWidget->view.clearSelection(); } }); // textEditLength visibility app->settings->showMessageLength.connect( [this](const bool &value, auto) { this->ui.textEditLength->setHidden(!value); }, this->managedConnections); } void SplitInput::scaleChangedEvent(float scale) { // update the icon size of the emote button QString text = ""; 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); 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()); } void SplitInput::installKeyPressedEvent() { auto app = getApp(); this->ui.textEdit->keyPressed.connect([this, app](QKeyEvent *event) { if (event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return) { auto c = this->chatWidget->getChannel(); if (c == nullptr) { return; } QString message = ui.textEdit->toPlainText(); QString sendMessage = app->commands->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); event->accept(); if (!(event->modifiers() == Qt::ControlModifier)) { 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(); } this->prevIndex = this->prevMsg.size(); } else if (event->key() == Qt::Key_Up) { if ((event->modifiers() & Qt::ShiftModifier) != 0) { return; } if (event->modifiers() == Qt::AltModifier) { // SplitContainer *page = // static_cast(this->chatWidget->parentWidget()); // page->requestFocus(); // 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) { if (this->prevIndex == (this->prevMsg.size())) { this->currMsg = ui.textEdit->toPlainText(); } this->prevIndex--; this->ui.textEdit->setText(this->prevMsg.at(this->prevIndex)); QTextCursor cursor = this->ui.textEdit->textCursor(); cursor.movePosition(QTextCursor::End); this->ui.textEdit->setTextCursor(cursor); } } } else if (event->key() == Qt::Key_Down) { if ((event->modifiers() & Qt::ShiftModifier) != 0) { return; } if (event->modifiers() == Qt::AltModifier) { // SplitContainer *page = // static_cast(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++; this->ui.textEdit->setText(this->prevMsg.at(this->prevIndex)); } else { this->prevIndex = this->prevMsg.size(); this->ui.textEdit->setText(this->currMsg); } 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) { // SplitContainer *page = // static_cast(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) { // SplitContainer *page = // static_cast(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) { SplitContainer *page = static_cast(this->chatWidget->parentWidget()); Notebook *notebook = static_cast(page->parentWidget()); notebook->selectNextTab(); } } else if (event->key() == Qt::Key_Backtab) { if (event->modifiers() == (Qt::ControlModifier | Qt::ShiftModifier)) { SplitContainer *page = static_cast(this->chatWidget->parentWidget()); Notebook *notebook = static_cast(page->parentWidget()); notebook->selectPreviousTab(); } } else if (event->key() == Qt::Key_C && event->modifiers() == Qt::ControlModifier) { if (this->chatWidget->view.hasSelection()) { this->chatWidget->doCopy(); event->accept(); } } }); } void SplitInput::clearSelection() { QTextCursor c = this->ui.textEdit->textCursor(); c.setPosition(c.position()); c.setPosition(c.position(), QTextCursor::KeepAnchor); this->ui.textEdit->setTextCursor(c); } QString SplitInput::getInputText() const { return this->ui.textEdit->toPlainText(); } void SplitInput::insertText(const QString &text) { this->ui.textEdit->insertPlainText(text); } void SplitInput::editTextChanged() { auto app = getApp(); // set textLengthLabel value QString text = this->ui.textEdit->toPlainText(); this->textChanged.invoke(text); text = text.trimmed(); static QRegularExpression spaceRegex("\\s\\s+"); text = text.replace(spaceRegex, " "); text = app->commands->execCommand(text, this->chatWidget->getChannel(), true); QString labelText; if (text.length() == 0) { labelText = ""; } else { labelText = QString::number(text.length()); } this->ui.textEditLength->setText(labelText); } void SplitInput::paintEvent(QPaintEvent *) { QPainter painter(this); if (this->themeManager->isLightTheme()) { int s = (int)(3 * this->getScale()); 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 { int s = (int)(1 * this->getScale()); 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); } } void SplitInput::resizeEvent(QResizeEvent *) { if (this->height() == this->maximumHeight()) { this->ui.textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); } else { this->ui.textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); } } void SplitInput::mousePressEvent(QMouseEvent *) { this->chatWidget->giveFocus(Qt::MouseFocusReason); } } // namespace widgets } // namespace chatterino