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

282 lines
9.2 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/completionmanager.hpp"
#include "singletons/ircmanager.hpp"
#include "singletons/settingsmanager.hpp"
#include "singletons/thememanager.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)
, emotesLabel(this)
2017-01-01 02:30:42 +01:00
{
this->setMaximumHeight(150);
this->setLayout(&this->hbox);
2017-12-26 16:54:39 +01:00
this->hbox.setMargin(4);
this->hbox.addLayout(&this->editContainer);
this->hbox.addLayout(&this->vbox);
2017-12-31 22:58:35 +01:00
auto &fontManager = singletons::FontManager::getInstance();
this->textInput.setFont(
2017-12-31 22:58:35 +01:00
fontManager.getFont(singletons::FontManager::Type::Medium, this->getDpiMultiplier()));
this->managedConnections.emplace_back(fontManager.fontChanged.connect([this, &fontManager]() {
this->textInput.setFont(
2017-12-31 22:58:35 +01:00
fontManager.getFont(singletons::FontManager::Type::Medium, this->getDpiMultiplier()));
}));
2017-10-27 20:34:23 +02:00
this->editContainer.addWidget(&this->textInput);
2017-12-26 16:54:39 +01:00
this->editContainer.setMargin(2);
2017-09-15 17:23:49 +02:00
this->emotesLabel.setMinimumHeight(24);
this->vbox.addWidget(&this->textLengthLabel);
this->vbox.addStretch(1);
this->vbox.addWidget(&this->emotesLabel);
2017-12-17 02:40:05 +01:00
this->textLengthLabel.setText("");
this->textLengthLabel.setAlignment(Qt::AlignRight);
this->emotesLabel.getLabel().setTextFormat(Qt::RichText);
this->emotesLabel.getLabel().setText(
"<img src=':/images/Emoji_Color_1F60A_19.png' width='12' height='12' "
"/>");
connect(&this->emotesLabel, &RippleEffectLabel::clicked, [this] {
2017-09-15 17:23:49 +02:00
if (this->emotePopup == nullptr) {
2017-12-31 00:50:07 +01:00
this->emotePopup = new EmotePopup(this->themeManager);
2017-09-15 17:23:49 +02:00
}
this->emotePopup->resize((int)(300 * this->emotePopup->getDpiMultiplier()),
(int)(500 * this->emotePopup->getDpiMultiplier()));
this->emotePopup->loadChannel(this->chatWidget->getChannel());
this->emotePopup->show();
2017-09-15 17:23:49 +02:00
});
2017-11-12 17:21:50 +01:00
connect(&textInput, &ResizingTextEdit::textChanged, this, &SplitInput::editTextChanged);
2017-01-22 12:46:35 +01:00
this->refreshTheme();
2017-12-31 22:58:35 +01:00
textLengthLabel.setHidden(!singletons::SettingManager::getInstance().showMessageLength);
2017-01-22 12:46:35 +01:00
2017-12-31 22:58:35 +01:00
auto completer = new QCompleter(
singletons::CompletionManager::getInstance().createModel(this->chatWidget->channelName));
2017-07-09 00:09:02 +02:00
this->textInput.setCompleter(completer);
this->textInput.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
}
2017-08-12 12:24:28 +02:00
QString message = textInput.toPlainText();
QString sendMessage =
singletons::CommandManager::getInstance().execCommand(message, false);
sendMessage = sendMessage.replace('\n', ' ');
c->sendMessage(sendMessage);
2017-08-12 12:24:28 +02:00
prevMsg.append(message);
2017-05-28 00:47:16 +02:00
event->accept();
2017-07-31 01:26:14 +02:00
if (!(event->modifiers() == Qt::ControlModifier)) {
textInput.setText(QString());
prevIndex = 0;
2017-07-31 01:26:14 +02:00
} else if (textInput.toPlainText() == prevMsg.at(prevMsg.size() - 1)) {
prevMsg.removeLast();
}
prevIndex = 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 (prevMsg.size() && prevIndex) {
prevIndex--;
textInput.setText(prevMsg.at(prevIndex));
}
}
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 (prevIndex != (prevMsg.size() - 1) && prevIndex != prevMsg.size()) {
prevIndex++;
textInput.setText(prevMsg.at(prevIndex));
} else {
prevIndex = prevMsg.size();
textInput.setText(QString());
}
}
} 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-12-31 22:58:35 +01:00
singletons::SettingManager::getInstance().showMessageLength.connect(
[this](const bool &value, auto) { this->textLengthLabel.setHidden(!value); },
this->managedConnections);
2017-09-21 02:20:02 +02:00
QObject::connect(&this->textInput, &QTextEdit::copyAvailable, [this](bool available) {
if (available) {
this->chatWidget->view.clearSelection();
}
});
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
{
QTextCursor c = this->textInput.textCursor();
c.setPosition(c.position());
c.setPosition(c.position(), QTextCursor::KeepAnchor);
this->textInput.setTextCursor(c);
}
QString SplitInput::getInputText() const
{
return this->textInput.toPlainText();
}
2017-11-12 17:21:50 +01:00
void SplitInput::refreshTheme()
{
QPalette palette;
2018-01-02 02:15:11 +01:00
palette.setColor(QPalette::Foreground, this->themeManager.splits.input.text);
this->textLengthLabel.setPalette(palette);
2017-01-21 05:14:27 +01:00
2018-01-02 02:15:11 +01:00
this->textInput.setStyleSheet(this->themeManager.splits.input.styleSheet);
2017-12-26 16:54:39 +01:00
2017-12-31 00:50:07 +01:00
this->hbox.setMargin((this->themeManager.isLightTheme() ? 4 : 2) * this->getDpiMultiplier());
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
{
2017-12-17 02:40:05 +01:00
QString text = this->textInput.toPlainText();
this->textChanged.invoke(text);
2017-12-17 02:40:05 +01:00
text = text.trimmed();
static QRegularExpression spaceRegex("\\s\\s+");
text = text.replace(spaceRegex, " ");
text = singletons::CommandManager::getInstance().execCommand(text, true);
2017-12-17 02:40:05 +01:00
QString labelText;
if (text.length() == 0) {
labelText = "";
} else {
labelText = QString::number(text.length());
}
this->textLengthLabel.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()) {
2017-12-26 16:54:39 +01:00
pen.setWidth((int)(6 * this->getDpiMultiplier()));
}
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()) {
this->textInput.setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
} else {
this->textInput.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
2017-12-26 16:54:39 +01:00
this->refreshTheme();
}
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