renamed a bunch of files and classes

This commit is contained in:
2017-11-12 17:21:50 +01:00
parent ad8ee97de9
commit 7f18cefee4
44 changed files with 699 additions and 505 deletions
+28
View File
@@ -0,0 +1,28 @@
#include "widgets/helper/rippleeffectlabel.hpp"
#include "colorscheme.hpp"
#include "widgets/helper/splitheader.hpp"
#include <QBrush>
#include <QPainter>
namespace chatterino {
namespace widgets {
RippleEffectLabel::RippleEffectLabel(BaseWidget *parent, int spacing)
: RippleEffectButton(parent)
, label(this)
{
setLayout(&this->hbox);
this->label.setAlignment(Qt::AlignCenter);
this->hbox.setMargin(0);
this->hbox.addSpacing(spacing);
this->hbox.addWidget(&this->label);
this->hbox.addSpacing(spacing);
this->setMouseEffectColor(QColor(255, 255, 255, 63));
}
} // namespace widgets
} // namespace chatterino