mirror-chatterino2/widgets/chatwidgetinput.cpp

148 lines
3.9 KiB
C++
Raw Normal View History

2017-01-18 21:30:23 +01:00
#include "widgets/chatwidgetinput.h"
2017-01-29 13:23:22 +01:00
#include "chatwidget.h"
2017-01-11 18:52:09 +01:00
#include "colorscheme.h"
2017-01-29 13:23:22 +01:00
#include "ircmanager.h"
2017-01-23 16:38:06 +01:00
#include "settings.h"
2017-01-01 02:30:42 +01:00
#include <QCompleter>
2017-01-18 04:52:47 +01:00
#include <QPainter>
2017-01-29 13:23:22 +01:00
#include <boost/signals2.hpp>
2017-01-18 04:52:47 +01:00
2017-01-18 21:30:23 +01:00
namespace chatterino {
namespace widgets {
2017-01-29 13:23:22 +01:00
ChatWidgetInput::ChatWidgetInput(ChatWidget *widget)
: chatWidget(widget)
, hbox()
, vbox()
, editContainer()
2017-01-21 05:14:27 +01:00
, edit()
, textLengthLabel()
, emotesLabel(0)
2017-01-01 02:30:42 +01:00
{
this->setLayout(&this->hbox);
2017-01-21 05:42:59 +01:00
this->setMaximumHeight(150);
this->hbox.setMargin(4);
this->hbox.addLayout(&this->editContainer);
this->hbox.addLayout(&this->vbox);
this->editContainer.addWidget(&this->edit);
this->editContainer.setMargin(4);
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' "
"/>");
2017-01-29 13:23:22 +01:00
QObject::connect(&edit, &ResizingTextEdit::textChanged, this,
&ChatWidgetInput::editTextChanged);
2017-01-29 13:23:22 +01:00
// QObject::connect(&edit, &ResizingTextEdit::keyPressEvent, this,
// &ChatWidgetInput::editKeyPressed);
2017-01-22 12:46:35 +01:00
2017-01-29 13:23:22 +01:00
this->refreshTheme();
2017-01-22 12:46:35 +01:00
this->setMessageLengthVisisble(
2017-01-23 16:38:06 +01:00
Settings::getInstance().showMessageLength.get());
2017-01-22 12:46:35 +01:00
QStringList list;
list.append("asd");
list.append("asdf");
list.append("asdg");
list.append("asdh");
QCompleter *completer = new QCompleter(list, &edit);
completer->setWidget(&edit);
this->edit.keyPressed.connect([this, completer](QKeyEvent *event) {
2017-01-29 13:23:22 +01:00
if (event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return) {
2017-01-30 19:14:25 +01:00
auto ptr = this->chatWidget->getChannel();
Channel *c = ptr.get();
2017-01-29 13:23:22 +01:00
if (c != nullptr) {
IrcManager::send("PRIVMSG #" + c->getName() + ": " +
this->edit.toPlainText());
event->accept();
this->edit.setText(QString());
}
}
// else {
// completer->setCompletionPrefix("asdf");
// completer->complete();
// // completer->popup();
// }
2017-01-29 13:23:22 +01:00
});
/* XXX(pajlada): FIX THIS
2017-01-23 16:38:06 +01:00
QObject::connect(&Settings::getInstance().showMessageLength,
&BoolSetting::valueChanged, this,
2017-01-22 19:43:32 +01:00
&ChatWidgetInput::setMessageLengthVisisble);
*/
2017-01-22 12:46:35 +01:00
}
ChatWidgetInput::~ChatWidgetInput()
{
/* XXX(pajlada): FIX THIS
2017-01-22 12:46:35 +01:00
QObject::disconnect(
2017-01-23 16:38:06 +01:00
&Settings::getInstance().getShowMessageLength(),
&BoolSetting::valueChanged, this,
&ChatWidgetInput::setMessageLengthVisisble);
*/
}
2017-01-21 05:14:27 +01:00
void
ChatWidgetInput::refreshTheme()
{
QPalette palette;
2017-01-24 20:15:12 +01:00
palette.setColor(QPalette::Foreground, ColorScheme::getInstance().Text);
this->textLengthLabel.setPalette(palette);
2017-01-21 05:14:27 +01:00
2017-01-24 20:15:12 +01:00
edit.setStyleSheet(ColorScheme::getInstance().InputStyleSheet);
2017-01-01 02:30:42 +01:00
}
2017-01-29 13:23:22 +01:00
void
ChatWidgetInput::editTextChanged()
{
}
// void
// ChatWidgetInput::editKeyPressed(QKeyEvent *event)
//{
// if (event->key() == Qt::Key_Enter) {
// event->accept();
// IrcManager::send("PRIVMSG #" + edit.toPlainText();
// edit.setText(QString());
// }
//}
2017-01-11 18:52:09 +01:00
void
ChatWidgetInput::paintEvent(QPaintEvent *)
2017-01-01 02:30:42 +01:00
{
QPainter painter(this);
2017-01-24 20:15:12 +01:00
painter.fillRect(rect(), ColorScheme::getInstance().ChatInputBackground);
painter.setPen(ColorScheme::getInstance().ChatInputBorder);
2017-01-01 02:30:42 +01:00
painter.drawRect(0, 0, width() - 1, height() - 1);
}
void
ChatWidgetInput::resizeEvent(QResizeEvent *)
{
if (height() == this->maximumHeight()) {
edit.setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
} else {
edit.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
}
2017-01-18 21:30:23 +01:00
}
}