2017-11-12 17:21:50 +01:00
|
|
|
#include "widgets/helper/splitinput.hpp"
|
2018-01-04 04:03:51 +01:00
|
|
|
#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"
|
2018-01-25 20:49:49 +01:00
|
|
|
#include "util/layoutcreator.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
|
|
|
|
2017-01-31 10:41:05 +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)
|
2017-06-26 16:41:20 +02:00
|
|
|
: BaseWidget(_chatWidget)
|
2017-06-11 11:36:42 +02:00
|
|
|
, chatWidget(_chatWidget)
|
2017-01-01 02:30:42 +01:00
|
|
|
{
|
2018-01-25 20:49:49 +01:00
|
|
|
this->initLayout();
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
// auto completion
|
|
|
|
auto completer = new QCompleter(
|
|
|
|
singletons::CompletionManager::getInstance().createModel(this->chatWidget->channelName));
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
this->ui.textEdit->setCompleter(completer);
|
|
|
|
|
|
|
|
// misc
|
|
|
|
this->installKeyPressedEvent();
|
|
|
|
this->themeRefreshEvent();
|
|
|
|
this->scaleChangedEvent(this->getScale());
|
|
|
|
}
|
2017-01-22 05:58:23 +01:00
|
|
|
|
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);
|
2017-10-27 21:04:27 +02:00
|
|
|
|
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);
|
2017-06-11 11:36:42 +02:00
|
|
|
|
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);
|
2017-06-11 11:36:42 +02:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
// ---- misc
|
2017-06-11 11:36:42 +02:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
// set edit font
|
|
|
|
this->ui.textEdit->setFont(
|
|
|
|
fontManager.getFont(singletons::FontManager::Type::Medium, this->getScale()));
|
2017-01-22 05:58:23 +01:00
|
|
|
|
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) {
|
|
|
|
if (link.getType() == messages::Link::InsertText) {
|
|
|
|
this->insertText(link.getValue());
|
|
|
|
}
|
|
|
|
});
|
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()));
|
2017-09-16 00:05:06 +02:00
|
|
|
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()));
|
|
|
|
|
|
|
|
this->themeRefreshEvent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SplitInput::themeRefreshEvent()
|
|
|
|
{
|
|
|
|
QPalette palette;
|
|
|
|
|
|
|
|
palette.setColor(QPalette::Foreground, this->themeManager.splits.input.text);
|
2017-01-31 10:41:05 +01:00
|
|
|
|
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());
|
|
|
|
}
|
2017-01-31 10:41:05 +01:00
|
|
|
|
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) {
|
2017-06-11 11:36:42 +02:00
|
|
|
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
|
|
|
|
2018-01-04 04:03:51 +01:00
|
|
|
QString sendMessage =
|
2018-01-05 02:05:59 +01:00
|
|
|
singletons::CommandManager::getInstance().execCommand(message, c, false);
|
2018-01-04 04:03:51 +01:00
|
|
|
sendMessage = sendMessage.replace('\n', ' ');
|
|
|
|
|
|
|
|
c->sendMessage(sendMessage);
|
2018-01-11 20:16:25 +01:00
|
|
|
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-01-25 20:49:49 +01:00
|
|
|
this->ui.textEdit->setText(QString());
|
2018-01-11 20:16:25 +01:00
|
|
|
this->prevIndex = 0;
|
2018-01-25 20:49:49 +01:00
|
|
|
} else if (this->ui.textEdit->toPlainText() ==
|
2018-01-11 20:16:25 +01:00
|
|
|
this->prevMsg.at(this->prevMsg.size() - 1)) {
|
|
|
|
this->prevMsg.removeLast();
|
2017-07-24 13:48:34 +02:00
|
|
|
}
|
2018-01-11 20:16:25 +01:00
|
|
|
this->prevIndex = this->prevMsg.size();
|
2017-07-31 01:26:14 +02:00
|
|
|
} else if (event->key() == Qt::Key_Up) {
|
2017-08-12 15:41:14 +02:00
|
|
|
if (event->modifiers() == Qt::AltModifier) {
|
2017-11-12 17:21:50 +01:00
|
|
|
SplitContainer *page =
|
|
|
|
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
|
2017-08-12 15:41:14 +02:00
|
|
|
|
|
|
|
int reqX = page->currentX;
|
|
|
|
int reqY = page->lastRequestedY[reqX] - 1;
|
|
|
|
|
|
|
|
qDebug() << "Alt+Down to" << reqX << "/" << reqY;
|
|
|
|
|
|
|
|
page->requestFocus(reqX, reqY);
|
|
|
|
} else {
|
2018-01-11 20:16:25 +01:00
|
|
|
if (this->prevMsg.size() && this->prevIndex) {
|
|
|
|
this->prevIndex--;
|
2018-01-25 20:49:49 +01:00
|
|
|
this->ui.textEdit->setText(this->prevMsg.at(this->prevIndex));
|
2017-08-12 15:41:14 +02:00
|
|
|
}
|
2017-07-24 13:48:34 +02:00
|
|
|
}
|
2017-07-31 01:26:14 +02:00
|
|
|
} else if (event->key() == Qt::Key_Down) {
|
2017-08-12 15:41:14 +02:00
|
|
|
if (event->modifiers() == Qt::AltModifier) {
|
2017-11-12 17:21:50 +01:00
|
|
|
SplitContainer *page =
|
|
|
|
static_cast<SplitContainer *>(this->chatWidget->parentWidget());
|
2017-08-12 15:41:14 +02:00
|
|
|
|
|
|
|
int reqX = page->currentX;
|
|
|
|
int reqY = page->lastRequestedY[reqX] + 1;
|
|
|
|
|
|
|
|
qDebug() << "Alt+Down to" << reqX << "/" << reqY;
|
|
|
|
|
|
|
|
page->requestFocus(reqX, reqY);
|
2017-07-24 13:48:34 +02:00
|
|
|
} else {
|
2018-01-11 20:16:25 +01:00
|
|
|
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));
|
2017-08-12 15:41:14 +02:00
|
|
|
} else {
|
2018-01-11 20:16:25 +01:00
|
|
|
this->prevIndex = this->prevMsg.size();
|
2018-01-25 20:49:49 +01:00
|
|
|
this->ui.textEdit->setText(QString());
|
2017-08-12 15:41:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} 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());
|
2017-08-12 15:41:14 +02:00
|
|
|
|
|
|
|
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());
|
2017-08-12 15:41:14 +02:00
|
|
|
|
|
|
|
int reqX = page->currentX + 1;
|
|
|
|
int reqY = page->lastRequestedY[reqX];
|
|
|
|
|
|
|
|
qDebug() << "Alt+Right to" << reqX << "/" << reqY;
|
|
|
|
|
|
|
|
page->requestFocus(reqX, reqY);
|
2017-07-24 13:48:34 +02:00
|
|
|
}
|
2017-08-13 15:24:41 +02:00
|
|
|
} 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());
|
2017-08-13 15:24:41 +02:00
|
|
|
|
|
|
|
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());
|
2017-08-13 15:24:41 +02:00
|
|
|
|
|
|
|
Notebook *notebook = static_cast<Notebook *>(page->parentWidget());
|
|
|
|
|
|
|
|
notebook->previousTab();
|
|
|
|
}
|
2017-09-21 00:54:10 +02:00
|
|
|
} 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
|
|
|
}
|
|
|
|
|
2017-12-17 16:19:16 +01:00
|
|
|
QString SplitInput::getInputText() const
|
|
|
|
{
|
2018-01-25 20:49:49 +01:00
|
|
|
return this->ui.textEdit->toPlainText();
|
2017-12-17 16:19:16 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-12-17 16:19:16 +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);
|
2018-01-04 04:03:51 +01:00
|
|
|
|
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);
|
2017-06-11 11:36:42 +02:00
|
|
|
painter.drawRect(0, 0, this->width() - 1, this->height() - 1);
|
2017-01-01 02:30:42 +01:00
|
|
|
}
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
void SplitInput::resizeEvent(QResizeEvent *)
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
2017-06-11 11:36:42 +02:00
|
|
|
if (this->height() == this->maximumHeight()) {
|
2018-01-25 20:49:49 +01:00
|
|
|
this->ui.textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
2017-01-22 05:58:23 +01:00
|
|
|
} else {
|
2018-01-25 20:49:49 +01:00
|
|
|
this->ui.textEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
|
|
|
}
|
2017-06-07 10:09:24 +02:00
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
void SplitInput::mousePressEvent(QMouseEvent *)
|
2017-07-31 01:26:20 +02:00
|
|
|
{
|
2017-08-12 15:41:14 +02:00
|
|
|
this->chatWidget->giveFocus(Qt::MouseFocusReason);
|
2017-07-31 01:26:20 +02:00
|
|
|
}
|
|
|
|
|
2017-06-07 10:09:24 +02:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|