2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2017-01-15 16:38:30 +01:00
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
#include "widgets/basewidget.hpp"
|
2017-09-16 16:20:10 +02:00
|
|
|
#include "widgets/rippleeffectbutton.hpp"
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "widgets/signallabel.hpp"
|
2017-01-15 16:38:30 +01:00
|
|
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPaintEvent>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
2017-06-26 16:41:20 +02:00
|
|
|
|
|
|
|
class ColorScheme;
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace widgets {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2017-09-21 17:34:41 +02:00
|
|
|
class RippleEffectLabel : public RippleEffectButton
|
2017-01-15 16:38:30 +01:00
|
|
|
{
|
|
|
|
public:
|
2017-09-16 16:20:10 +02:00
|
|
|
explicit RippleEffectLabel(BaseWidget *parent, int spacing = 6);
|
2017-01-15 16:38:30 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
SignalLabel &getLabel()
|
2017-01-15 16:38:30 +01:00
|
|
|
{
|
2017-06-26 16:41:20 +02:00
|
|
|
return this->ui.label;
|
2017-01-15 16:38:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-06-26 16:41:20 +02:00
|
|
|
struct {
|
|
|
|
QHBoxLayout hbox;
|
|
|
|
SignalLabel label;
|
|
|
|
} ui;
|
2017-01-15 16:38:30 +01:00
|
|
|
};
|
|
|
|
|
2017-06-07 10:09:24 +02:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|