summary refs log tree commit diff
path: root/src/ui/RaisedButton.h
blob: 277fa7fff70dc447d21c2412f8ffdc56034b11ff (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
32
// 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);
    ~RaisedButton() override;

protected:
    bool event(QEvent *event) override;

private:
    void init();

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