mirror-chatterino2/widgets/chatwidgetinput.cpp
2017-01-20 06:10:28 +01:00

26 lines
485 B
C++

#include "widgets/chatwidgetinput.h"
#include "colorscheme.h"
#include <QPainter>
namespace chatterino {
namespace widgets {
ChatWidgetInput::ChatWidgetInput()
: edit(this)
{
setFixedHeight(38);
}
void
ChatWidgetInput::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.fillRect(rect(), ColorScheme::instance().ChatInputBackground);
painter.setPen(ColorScheme::instance().ChatInputBorder);
painter.drawRect(0, 0, width() - 1, height() - 1);
}
}
}