qt-material-widgets/components/qtmaterialradiobutton.h

26 lines
551 B
C
Raw Normal View History

2017-09-29 14:26:27 +00:00
#ifndef QTMATERIALRADIOBUTTON_H
#define QTMATERIALRADIOBUTTON_H
2017-09-29 14:50:04 +00:00
#include "lib/qtmaterialcheckable.h"
2021-07-01 10:04:11 +00:00
#include <QtUiPlugin/QDesignerExportWidget>
2017-09-29 14:26:27 +00:00
class QtMaterialRadioButtonPrivate;
2021-07-01 10:04:11 +00:00
class QDESIGNER_WIDGET_EXPORT QtMaterialRadioButton : public QtMaterialCheckable
2017-09-29 14:26:27 +00:00
{
Q_OBJECT
public:
explicit QtMaterialRadioButton(QWidget *parent = 0);
~QtMaterialRadioButton();
protected:
void setupProperties();
private:
Q_DISABLE_COPY(QtMaterialRadioButton)
Q_DECLARE_PRIVATE(QtMaterialRadioButton)
};
#endif // QTMATERIALRADIOBUTTON_H