12345678910111213141516171819202122232425 |
- #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
|