mirror-chatterino2/widgets/chatwidgetinput.cpp

76 lines
1.8 KiB
C++
Raw Normal View History

2017-01-18 21:30:23 +01:00
#include "widgets/chatwidgetinput.h"
2017-01-11 18:52:09 +01:00
#include "colorscheme.h"
2017-01-01 02:30:42 +01:00
2017-01-18 04:52:47 +01:00
#include <QPainter>
2017-01-18 21:30:23 +01:00
namespace chatterino {
namespace widgets {
2017-01-01 02:30:42 +01:00
ChatWidgetInput::ChatWidgetInput()
2017-01-21 05:14:27 +01:00
: 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' "
"/>");
// this->emotesLabel.setMaximumSize(12, 12);
this->refreshTheme();
}
2017-01-21 05:14:27 +01:00
void
ChatWidgetInput::refreshTheme()
{
QPalette palette;
palette.setColor(QPalette::Foreground, ColorScheme::instance().Text);
this->textLengthLabel.setPalette(palette);
2017-01-21 05:14:27 +01:00
edit.setStyleSheet(ColorScheme::instance().InputStyleSheet);
2017-01-01 02:30:42 +01:00
}
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-06 23:28:48 +01:00
painter.fillRect(rect(), ColorScheme::instance().ChatInputBackground);
painter.setPen(ColorScheme::instance().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
}
}