2022-02-17 15:17:19 +00:00
|
|
|
#ifndef CHECKBOX_P_H
|
|
|
|
#define CHECKBOX_P_H
|
2017-09-29 06:53:21 +00:00
|
|
|
|
2022-02-17 12:21:27 +00:00
|
|
|
#include <QPropertyAnimation>
|
|
|
|
#include <QSignalTransition>
|
|
|
|
#include <QState>
|
|
|
|
|
2022-02-17 15:17:19 +00:00
|
|
|
#include "checkbox.h"
|
|
|
|
#include "lib/checkable_internal.h"
|
|
|
|
#include "lib/checkable_p.h"
|
2022-02-17 12:21:27 +00:00
|
|
|
|
2022-02-17 02:10:25 +00:00
|
|
|
namespace md
|
|
|
|
{
|
2017-09-29 06:53:21 +00:00
|
|
|
|
2022-02-17 02:10:25 +00:00
|
|
|
class CheckBox;
|
2017-09-29 06:53:21 +00:00
|
|
|
|
2022-02-17 02:10:25 +00:00
|
|
|
class CheckBoxPrivate : public CheckablePrivate
|
2017-09-29 06:53:21 +00:00
|
|
|
{
|
2022-02-17 02:10:25 +00:00
|
|
|
Q_DISABLE_COPY(CheckBoxPrivate)
|
|
|
|
Q_DECLARE_PUBLIC(CheckBox)
|
2017-09-29 06:53:21 +00:00
|
|
|
|
|
|
|
public:
|
2022-02-17 02:10:25 +00:00
|
|
|
CheckBoxPrivate(CheckBox *q);
|
|
|
|
~CheckBoxPrivate();
|
2017-09-29 06:53:21 +00:00
|
|
|
|
|
|
|
void init();
|
|
|
|
};
|
2022-02-17 02:10:25 +00:00
|
|
|
}
|
2022-02-17 15:17:19 +00:00
|
|
|
#endif // CHECKBOX_P_H
|