25 lines
483 B
C
25 lines
483 B
C
|
#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
|