summary refs log tree commit diff
path: root/include/ui/RaisedButton.h
blob: edd5ee4a0a63e1214cfcd2a9933e08353a74532a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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_;
};