qt-material-widgets/components/qtmaterialraisedbutton_p.h

31 lines
661 B
C
Raw Normal View History

2017-09-29 09:50:04 +00:00
#ifndef QTMATERIALRAISEDBUTTON_P_H
#define QTMATERIALRAISEDBUTTON_P_H
#include "qtmaterialflatbutton_p.h"
2022-02-17 02:42:34 +00:00
namespace md
{
2017-09-29 09:50:04 +00:00
class QStateMachine;
class QState;
class QGraphicsDropShadowEffect;
2022-02-17 02:42:34 +00:00
class RaisedButton;
2017-09-29 09:50:04 +00:00
2022-02-17 02:42:34 +00:00
class RaisedButtonPrivate : public FlatButtonPrivate
2017-09-29 09:50:04 +00:00
{
2022-02-17 02:42:34 +00:00
Q_DISABLE_COPY(RaisedButtonPrivate)
Q_DECLARE_PUBLIC(RaisedButton)
2017-09-29 09:50:04 +00:00
public:
2022-02-17 02:42:34 +00:00
RaisedButtonPrivate(RaisedButton *q);
~RaisedButtonPrivate();
2017-09-29 09:50:04 +00:00
void init();
QStateMachine *shadowStateMachine;
QState *normalState;
QState *pressedState;
QGraphicsDropShadowEffect *effect;
};
2022-02-17 02:42:34 +00:00
}
2017-09-29 09:50:04 +00:00
#endif // QTMATERIALRAISEDBUTTON_P_H