added namespaces

This commit is contained in:
fourtf
2017-01-18 21:30:23 +01:00
parent 82338baaa3
commit 2e8dc63a95
82 changed files with 681 additions and 459 deletions
+24
View File
@@ -0,0 +1,24 @@
#include "widgets/chatwidgetinput.h"
#include "colorscheme.h"
#include <QPainter>
namespace chatterino {
namespace widgets {
ChatWidgetInput::ChatWidgetInput()
{
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);
}
}
}