mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
42 lines
715 B
C++
42 lines
715 B
C++
#pragma once
|
|
|
|
#include "widgets/BaseWidget.hpp"
|
|
#include "widgets/Label.hpp"
|
|
#include "widgets/helper/Button.hpp"
|
|
#include "widgets/helper/SignalLabel.hpp"
|
|
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QPaintEvent>
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
|
|
class EffectLabel : public Button
|
|
{
|
|
public:
|
|
explicit EffectLabel(BaseWidget *parent = nullptr, int spacing = 6);
|
|
|
|
SignalLabel &getLabel()
|
|
{
|
|
return this->label_;
|
|
}
|
|
|
|
private:
|
|
QHBoxLayout hbox_;
|
|
SignalLabel label_;
|
|
};
|
|
|
|
class EffectLabel2 : public Button
|
|
{
|
|
public:
|
|
explicit EffectLabel2(BaseWidget *parent = nullptr, int padding = 6);
|
|
|
|
Label &getLabel();
|
|
|
|
private:
|
|
Label label_;
|
|
};
|
|
|
|
} // namespace chatterino
|