mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-01 10:20:47 +03:00
28 lines
581 B
C++
28 lines
581 B
C++
#pragma once
|
|
|
|
#include <QGraphicsDropShadowEffect>
|
|
#include <QState>
|
|
#include <QStateMachine>
|
|
|
|
#include "FlatButton.h"
|
|
|
|
class RaisedButton : public FlatButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RaisedButton(QWidget *parent = 0);
|
|
explicit RaisedButton(const QString &text, QWidget *parent = 0);
|
|
~RaisedButton();
|
|
|
|
protected:
|
|
bool event(QEvent *event) override;
|
|
|
|
private:
|
|
void init();
|
|
|
|
QStateMachine *shadow_state_machine_;
|
|
QState *normal_state_;
|
|
QState *pressed_state_;
|
|
QGraphicsDropShadowEffect *effect_;
|
|
};
|