2017-06-11 09:31:45 +02:00
|
|
|
#include "widgets/chatwidgetinput.hpp"
|
|
|
|
#include "chatwidget.hpp"
|
|
|
|
#include "colorscheme.hpp"
|
|
|
|
#include "ircmanager.hpp"
|
|
|
|
#include "settingsmanager.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-01-29 13:23:22 +01:00
|
|
|
#include <boost/signals2.hpp>
|
2017-01-18 04:52:47 +01:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2017-01-29 13:23:22 +01:00
|
|
|
ChatWidgetInput::ChatWidgetInput(ChatWidget *widget)
|
2017-04-12 17:46:44 +02:00
|
|
|
: _chatWidget(widget)
|
|
|
|
, _hbox()
|
|
|
|
, _vbox()
|
|
|
|
, _editContainer()
|
|
|
|
, _edit()
|
|
|
|
, _textLengthLabel()
|
|
|
|
, _emotesLabel(0)
|
2017-01-01 02:30:42 +01:00
|
|
|
{
|
2017-04-12 17:46:44 +02:00
|
|
|
setLayout(&_hbox);
|
|
|
|
setMaximumHeight(150);
|
|
|
|
_hbox.setMargin(4);
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
_hbox.addLayout(&_editContainer);
|
|
|
|
_hbox.addLayout(&_vbox);
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
_editContainer.addWidget(&_edit);
|
|
|
|
_editContainer.setMargin(4);
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
_vbox.addWidget(&_textLengthLabel);
|
|
|
|
_vbox.addStretch(1);
|
|
|
|
_vbox.addWidget(&_emotesLabel);
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
_textLengthLabel.setText("100");
|
|
|
|
_textLengthLabel.setAlignment(Qt::AlignRight);
|
|
|
|
_emotesLabel.getLabel().setTextFormat(Qt::RichText);
|
|
|
|
_emotesLabel.getLabel().setText(
|
2017-01-22 05:58:23 +01:00
|
|
|
"<img src=':/images/Emoji_Color_1F60A_19.png' width='12' height='12' "
|
|
|
|
"/>");
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QObject::connect(&_edit, &ResizingTextEdit::textChanged, this,
|
2017-01-29 13:23:22 +01:00
|
|
|
&ChatWidgetInput::editTextChanged);
|
2017-01-22 05:58:23 +01:00
|
|
|
|
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-04-12 17:46:44 +02:00
|
|
|
refreshTheme();
|
|
|
|
setMessageLengthVisisble(SettingsManager::getInstance().showMessageLength.get());
|
2017-01-22 12:46:35 +01:00
|
|
|
|
2017-01-31 10:41:05 +01:00
|
|
|
QStringList list;
|
|
|
|
list.append("asd");
|
|
|
|
list.append("asdf");
|
|
|
|
list.append("asdg");
|
|
|
|
list.append("asdh");
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QCompleter *completer = new QCompleter(list, &_edit);
|
2017-01-31 10:41:05 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
completer->setWidget(&_edit);
|
2017-01-31 10:41:05 +01:00
|
|
|
|
2017-06-07 10:09:24 +02:00
|
|
|
_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-05-28 00:47:16 +02:00
|
|
|
auto c = _chatWidget->getChannel();
|
|
|
|
if (c == nullptr) {
|
|
|
|
return;
|
2017-01-29 13:23:22 +01:00
|
|
|
}
|
2017-05-28 00:47:16 +02:00
|
|
|
|
|
|
|
c->sendMessage(_edit.toPlainText());
|
|
|
|
event->accept();
|
|
|
|
_edit.setText(QString());
|
2017-01-29 13:23:22 +01:00
|
|
|
}
|
2017-01-31 10:41:05 +01:00
|
|
|
// else {
|
|
|
|
// completer->setCompletionPrefix("asdf");
|
|
|
|
// completer->complete();
|
|
|
|
// // completer->popup();
|
|
|
|
// }
|
2017-01-29 13:23:22 +01:00
|
|
|
});
|
|
|
|
|
2017-01-22 23:00:35 +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 23:00:35 +01:00
|
|
|
*/
|
2017-01-22 12:46:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ChatWidgetInput::~ChatWidgetInput()
|
|
|
|
{
|
2017-01-22 23:00:35 +01:00
|
|
|
/* 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,
|
2017-01-22 23:00:35 +01:00
|
|
|
&ChatWidgetInput::setMessageLengthVisisble);
|
|
|
|
*/
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
2017-01-21 05:14:27 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void ChatWidgetInput::refreshTheme()
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
|
|
|
QPalette palette;
|
|
|
|
|
2017-01-24 20:15:12 +01:00
|
|
|
palette.setColor(QPalette::Foreground, ColorScheme::getInstance().Text);
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
_textLengthLabel.setPalette(palette);
|
2017-01-21 05:14:27 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
_edit.setStyleSheet(ColorScheme::getInstance().InputStyleSheet);
|
2017-01-01 02:30:42 +01:00
|
|
|
}
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void ChatWidgetInput::editTextChanged()
|
2017-01-29 13:23:22 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// void
|
|
|
|
// ChatWidgetInput::editKeyPressed(QKeyEvent *event)
|
|
|
|
//{
|
|
|
|
// if (event->key() == Qt::Key_Enter) {
|
|
|
|
// event->accept();
|
|
|
|
// IrcManager::send("PRIVMSG #" + edit.toPlainText();
|
|
|
|
// edit.setText(QString());
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
|
2017-04-12 17:46:44 +02: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);
|
|
|
|
}
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void ChatWidgetInput::resizeEvent(QResizeEvent *)
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
2017-04-12 17:46:44 +02:00
|
|
|
if (height() == maximumHeight()) {
|
|
|
|
_edit.setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
2017-01-22 05:58:23 +01:00
|
|
|
} else {
|
2017-04-12 17:46:44 +02:00
|
|
|
_edit.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
|
|
|
}
|
2017-06-07 10:09:24 +02:00
|
|
|
|
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|