ArchitectureColoredPainting/qt-material-widgets/components/qtmaterialradiobutton.h

25 lines
483 B
C
Raw Permalink Normal View History

2023-03-06 12:38:25 +08:00
#ifndef QTMATERIALRADIOBUTTON_H
#define QTMATERIALRADIOBUTTON_H
#include "lib/qtmaterialcheckable.h"
class QtMaterialRadioButtonPrivate;
class QtMaterialRadioButton : public QtMaterialCheckable
{
Q_OBJECT
public:
explicit QtMaterialRadioButton(QWidget *parent = 0);
~QtMaterialRadioButton();
protected:
void setupProperties();
private:
Q_DISABLE_COPY(QtMaterialRadioButton)
Q_DECLARE_PRIVATE(QtMaterialRadioButton)
};
#endif // QTMATERIALRADIOBUTTON_H