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

250 lines
8.2 KiB
C++
Raw Normal View History

2017-11-12 17:21:50 +01:00
#include "widgets/helper/splitinput.hpp"
2017-06-11 09:31:45 +02:00
#include "colorscheme.hpp"
#include "completionmanager.hpp"
2017-06-11 09:31:45 +02:00
#include "ircmanager.hpp"
#include "settingsmanager.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-11-12 17:21:50 +01:00
SplitInput::SplitInput(Split *_chatWidget, EmoteManager &emoteManager, WindowManager &windowManager)
: BaseWidget(_chatWidget)
, chatWidget(_chatWidget)
, emoteManager(emoteManager)
2017-09-17 02:13:57 +02:00
, windowManager(windowManager)
, emotesLabel(this)
2017-01-01 02:30:42 +01:00
{
this->setMaximumHeight(150);
this->setLayout(&this->hbox);
2017-09-15 17:23:49 +02:00
this->hbox.setMargin(0);
this->hbox.addLayout(&this->editContainer);
this->hbox.addLayout(&this->vbox);
auto &fontManager = FontManager::getInstance();
this->textInput.setFont(fontManager.getFont(FontManager::Type::Medium));
fontManager.fontChanged.connect([this, &fontManager]() {
this->textInput.setFont(fontManager.getFont(FontManager::Type::Medium));
});
2017-10-27 20:34:23 +02:00
this->editContainer.addWidget(&this->textInput);
this->editContainer.setMargin(4);
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);
this->textLengthLabel.setText("100");
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-09-17 02:13:57 +02:00
this->emotePopup =
new EmotePopup(this->colorScheme, this->emoteManager, this->windowManager);
2017-09-15 17:23:49 +02:00
}
this->emotePopup->resize(300, 500);
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();
textLengthLabel.setHidden(!SettingsManager::getInstance().showMessageLength);
2017-01-22 12:46:35 +01:00
auto completer = new QCompleter(
this->chatWidget->completionManager.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();
c->sendMessage(message.replace('\n', ' '));
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-09-15 17:23:49 +02:00
this->textLengthVisibleChangedConnection =
SettingsManager::getInstance().showMessageLength.getValueChangedSignal().connect(
2017-09-15 17:23:49 +02:00
[this](const bool &value) { this->textLengthLabel.setHidden(!value); });
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
SplitInput::~SplitInput()
2017-01-22 12:46:35 +01:00
{
SettingsManager::getInstance().showMessageLength.getValueChangedSignal().disconnect(
this->textLengthVisibleChangedConnection);
}
2017-01-21 05:14:27 +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);
}
2017-11-12 17:21:50 +01:00
void SplitInput::refreshTheme()
{
QPalette palette;
palette.setColor(QPalette::Foreground, this->colorScheme.Text);
this->textLengthLabel.setPalette(palette);
2017-01-21 05:14:27 +01:00
this->textInput.setStyleSheet(this->colorScheme.InputStyleSheet);
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-11-12 17:21:50 +01:00
void SplitInput::paintEvent(QPaintEvent *)
2017-01-01 02:30:42 +01:00
{
QPainter painter(this);
painter.fillRect(this->rect(), this->colorScheme.ChatInputBackground);
painter.setPen(this->colorScheme.ChatInputBorder);
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-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