qt-material-widgets/components/qtmaterialradiobutton.h

28 lines
430 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"
2022-02-17 02:39:07 +00:00
namespace md
{
2017-09-29 14:26:27 +00:00
2022-02-17 02:39:07 +00:00
class RadioButtonPrivate;
2017-09-29 14:26:27 +00:00
2022-02-17 02:39:07 +00:00
class RadioButton : public Checkable
2017-09-29 14:26:27 +00:00
{
Q_OBJECT
public:
2022-02-17 02:39:07 +00:00
explicit RadioButton(QWidget *parent = 0);
~RadioButton();
2017-09-29 14:26:27 +00:00
protected:
void setupProperties();
private:
2022-02-17 02:39:07 +00:00
Q_DISABLE_COPY(RadioButton)
Q_DECLARE_PRIVATE(RadioButton)
2017-09-29 14:26:27 +00:00
};
2022-02-17 02:39:07 +00:00
}
2017-09-29 14:26:27 +00:00
#endif // QTMATERIALRADIOBUTTON_H