qt-material-widgets/components/checkbox.h

26 lines
324 B
C
Raw Normal View History

2022-02-17 15:17:19 +00:00
#ifndef CHECKBOX_H
#define CHECKBOX_H
2017-09-29 06:53:21 +00:00
2022-02-17 15:17:19 +00:00
#include "lib/checkable.h"
2017-09-29 06:53:21 +00:00
2022-02-17 02:10:25 +00:00
namespace md
{
class CheckBoxPrivate;
2017-09-29 06:53:21 +00:00
2022-02-17 02:10:25 +00:00
class CheckBox : public Checkable
2017-09-29 06:53:21 +00:00
{
Q_OBJECT
public:
2022-02-17 02:10:25 +00:00
explicit CheckBox(QWidget *parent = 0);
~CheckBox();
2017-09-29 06:53:21 +00:00
private:
2022-02-17 02:10:25 +00:00
Q_DISABLE_COPY(CheckBox)
Q_DECLARE_PRIVATE(CheckBox)
2017-09-29 06:53:21 +00:00
};
2022-02-17 02:10:25 +00:00
}
2022-02-17 15:17:19 +00:00
#endif // CHECKBOX_H