mirror-chatterino2/chatwidgetinput.cpp

18 lines
411 B
C++
Raw Normal View History

2017-01-01 02:30:42 +01:00
#include "chatwidgetinput.h"
#include "colorscheme.h"
#include "QPainter"
ChatWidgetInput::ChatWidgetInput()
{
setFixedHeight(38);
}
void ChatWidgetInput::paintEvent(QPaintEvent *)
{
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);
}