mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
36 lines
578 B
C++
36 lines
578 B
C++
#pragma once
|
|
|
|
#include "rippleeffectbutton.hpp"
|
|
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class NotebookButton : public FancyButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static const int IconPlus = 0;
|
|
static const int IconUser = 1;
|
|
static const int IconSettings = 2;
|
|
|
|
int icon = 0;
|
|
|
|
NotebookButton(BaseWidget *parent);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *) override;
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
|
|
signals:
|
|
void clicked();
|
|
|
|
private:
|
|
QPoint mousePos;
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|