mirror-chatterino2/src/widgets/rippleeffectlabel.cpp

29 lines
646 B
C++
Raw Normal View History

#include "widgets/rippleeffectlabel.hpp"
2017-06-11 09:31:45 +02:00
#include "colorscheme.hpp"
#include "widgets/chatwidgetheader.hpp"
2017-01-15 16:38:30 +01:00
#include <QBrush>
#include <QPainter>
2017-04-14 17:52:22 +02:00
namespace chatterino {
namespace widgets {
2017-01-18 21:30:23 +01:00
RippleEffectLabel::RippleEffectLabel(BaseWidget *parent, int spacing)
: RippleEffectButton(parent)
2017-09-22 00:50:43 +02:00
, label(this)
2017-01-15 16:38:30 +01:00
{
2017-09-22 00:50:43 +02:00
setLayout(&this->hbox);
2017-01-15 16:38:30 +01:00
2017-09-22 00:50:43 +02:00
this->label.setAlignment(Qt::AlignCenter);
2017-01-20 06:10:28 +01:00
2017-09-22 00:50:43 +02:00
this->hbox.setMargin(0);
this->hbox.addSpacing(spacing);
this->hbox.addWidget(&this->label);
this->hbox.addSpacing(spacing);
2017-01-15 16:38:30 +01:00
2017-09-15 17:23:49 +02:00
this->setMouseEffectColor(QColor(255, 255, 255, 63));
2017-01-15 16:38:30 +01:00
}
} // namespace widgets
} // namespace chatterino