25 lines
409 B
C++
25 lines
409 B
C++
#ifndef RAISEDBUTTON_H
|
|
#define RAISEDBUTTON_H
|
|
|
|
#include "flatbutton.h"
|
|
|
|
class RaisedButtonPrivate;
|
|
|
|
class RaisedButton : public FlatButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RaisedButton(QWidget *parent = 0);
|
|
~RaisedButton();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
Q_DISABLE_COPY(RaisedButton)
|
|
Q_DECLARE_PRIVATE(RaisedButton)
|
|
};
|
|
|
|
#endif // RAISEDBUTTON_H
|