summary refs log tree commit diff
path: root/src/ui/RaisedButton.h
blob: a93fa000867a9c7752115c8ecd308c8f98c5c710 (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
29
30
31
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include <QGraphicsDropShadowEffect>
#include <QState>
#include <QStateMachine>

#include "FlatButton.h"

class RaisedButton : public FlatButton
{
    Q_OBJECT

public:
    explicit RaisedButton(QWidget *parent = nullptr);
    explicit RaisedButton(const QString &text, QWidget *parent = nullptr);

protected:
    bool event(QEvent *event) override;

private:
    void init();

    QStateMachine *shadow_state_machine_;
    QState *normal_state_;
    QState *pressed_state_;
    QGraphicsDropShadowEffect *effect_;
};