mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 11:28:49 +03:00
32 lines
662 B
C++
32 lines
662 B
C++
// 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_;
|
|
};
|