2022-02-17 15:17:19 +00:00
|
|
|
#ifndef RADIOBUTTON_P_H
|
|
|
|
#define RADIOBUTTON_P_H
|
2017-09-29 14:26:27 +00:00
|
|
|
|
2022-02-17 12:21:27 +00:00
|
|
|
#include <QStateMachine>
|
|
|
|
#include <QState>
|
|
|
|
#include <QPropertyAnimation>
|
|
|
|
#include <QColor>
|
|
|
|
|
2022-02-17 15:17:19 +00:00
|
|
|
#include "radiobutton.h"
|
|
|
|
#include "lib/checkable_p.h"
|
2022-02-17 12:21:27 +00:00
|
|
|
|
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 RadioButton;
|
2017-09-29 14:26:27 +00:00
|
|
|
|
2022-02-17 02:39:07 +00:00
|
|
|
class RadioButtonPrivate : public CheckablePrivate
|
2017-09-29 14:26:27 +00:00
|
|
|
{
|
2022-02-17 02:39:07 +00:00
|
|
|
Q_DISABLE_COPY(RadioButtonPrivate)
|
|
|
|
Q_DECLARE_PUBLIC(RadioButton)
|
2017-09-29 14:26:27 +00:00
|
|
|
|
|
|
|
public:
|
2022-02-17 02:39:07 +00:00
|
|
|
RadioButtonPrivate(RadioButton *q);
|
|
|
|
~RadioButtonPrivate();
|
2017-09-29 14:26:27 +00:00
|
|
|
|
|
|
|
void init();
|
|
|
|
};
|
2022-02-17 02:39:07 +00:00
|
|
|
}
|
2022-02-17 15:17:19 +00:00
|
|
|
#endif // RADIOBUTTON_P_H
|