2016-04-14 13:47:27 +00:00
|
|
|
#ifndef RADIOBUTTON_H
|
|
|
|
#define RADIOBUTTON_H
|
|
|
|
|
2016-06-13 23:27:37 +00:00
|
|
|
#include "lib/checkable.h"
|
2016-04-14 13:47:27 +00:00
|
|
|
|
2016-06-12 16:02:45 +00:00
|
|
|
class RadioButtonPrivate;
|
|
|
|
|
2016-06-13 23:27:37 +00:00
|
|
|
class RadioButton : public Checkable
|
2016-04-14 13:47:27 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit RadioButton(QWidget *parent = 0);
|
|
|
|
~RadioButton();
|
|
|
|
|
|
|
|
protected:
|
2016-06-13 23:27:37 +00:00
|
|
|
void assignProperties() Q_DECL_OVERRIDE;
|
2016-06-12 16:02:45 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(RadioButton)
|
|
|
|
Q_DECLARE_PRIVATE(RadioButton)
|
2016-04-14 13:47:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RADIOBUTTON_H
|