qt-material-widgets/components/qtmaterialraisedbutton.h

29 lines
740 B
C
Raw Normal View History

2017-09-29 09:50:04 +00:00
#ifndef QTMATERIALRAISEDBUTTON_H
#define QTMATERIALRAISEDBUTTON_H
#include "qtmaterialflatbutton.h"
2021-07-01 10:04:11 +00:00
#include <QtUiPlugin/QDesignerExportWidget>
2017-09-29 09:50:04 +00:00
class QtMaterialRaisedButtonPrivate;
2021-07-01 10:04:11 +00:00
class QDESIGNER_WIDGET_EXPORT QtMaterialRaisedButton : public QtMaterialFlatButton
2017-09-29 09:50:04 +00:00
{
Q_OBJECT
public:
explicit QtMaterialRaisedButton(QWidget *parent = 0);
explicit QtMaterialRaisedButton(const QString &text, QWidget *parent = 0);
~QtMaterialRaisedButton();
protected:
QtMaterialRaisedButton(QtMaterialRaisedButtonPrivate &d, QWidget *parent = 0);
bool event(QEvent *event) Q_DECL_OVERRIDE;
private:
Q_DISABLE_COPY(QtMaterialRaisedButton)
Q_DECLARE_PRIVATE(QtMaterialRaisedButton)
};
#endif // QTMATERIALRAISEDBUTTON_H