qt-material-widgets/components/radiobutton.h

28 lines
390 B
C
Raw Normal View History

2022-02-17 15:17:19 +00:00
#ifndef RADIOBUTTON_H
#define RADIOBUTTON_H
2017-09-29 14:26:27 +00:00
2022-02-17 15:17:19 +00:00
#include "lib/checkable.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
}
2022-02-17 15:17:19 +00:00
#endif // RADIOBUTTON_H