mirror-chatterino2/src/widgets/helper/Line.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
927 B
C++
Raw Normal View History

2018-06-06 13:35:06 +02:00
#pragma once
2018-06-26 14:09:39 +02:00
#include "widgets/BaseWidget.hpp"
2018-06-06 13:35:06 +02:00
#include <QPainter>
2018-06-06 13:35:06 +02:00
namespace chatterino {
2018-06-06 13:35:06 +02:00
class Line : public BaseWidget
{
public:
Line(bool vertical)
: BaseWidget(nullptr)
, vertical_(vertical)
{
if (this->vertical_)
{
this->setScaleIndependantWidth(8);
}
else
{
this->setScaleIndependantHeight(8);
}
}
void paintEvent(QPaintEvent *) override
2018-06-06 13:35:06 +02:00
{
QPainter painter(this);
painter.setPen(QColor(153, 153, 153, 153));
2018-06-06 13:35:06 +02:00
if (this->vertical_)
{
painter.drawLine(this->width() / 2, 0, this->width() / 2,
this->height());
}
else
{
painter.drawLine(0, this->height() / 2, this->width(),
this->height() / 2);
}
}
2018-06-06 13:35:06 +02:00
private:
bool vertical_;
};
2018-06-06 13:35:06 +02:00
} // namespace chatterino