2017-09-29 06:53:21 +00:00
|
|
|
#ifndef QTMATERIALCHECKBOX_P_H
|
|
|
|
#define QTMATERIALCHECKBOX_P_H
|
|
|
|
|
|
|
|
#include "lib/qtmaterialcheckable_p.h"
|
2023-01-31 10:08:03 +00:00
|
|
|
#include "qtmaterialcheckbox.h"
|
2017-09-29 06:53:21 +00:00
|
|
|
|
|
|
|
class QtMaterialCheckBox;
|
|
|
|
|
|
|
|
class QtMaterialCheckBoxPrivate : public QtMaterialCheckablePrivate
|
|
|
|
{
|
|
|
|
Q_DISABLE_COPY(QtMaterialCheckBoxPrivate)
|
|
|
|
Q_DECLARE_PUBLIC(QtMaterialCheckBox)
|
|
|
|
|
|
|
|
public:
|
|
|
|
QtMaterialCheckBoxPrivate(QtMaterialCheckBox *q);
|
|
|
|
~QtMaterialCheckBoxPrivate();
|
|
|
|
|
|
|
|
void init();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTMATERIALCHECKBOX_P_H
|