2018-05-23 06:11:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-05-23 09:08:50 +00:00
|
|
|
#include <QJsonObject>
|
|
|
|
|
2018-05-23 06:11:58 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class CheckableItem
|
|
|
|
{
|
|
|
|
private:
|
2018-05-23 15:47:04 +00:00
|
|
|
bool m_checked = false;
|
|
|
|
std::string m_text;
|
2018-05-23 06:11:58 +00:00
|
|
|
|
|
|
|
public:
|
2018-05-23 15:47:04 +00:00
|
|
|
CheckableItem() = default;
|
|
|
|
CheckableItem(const std::string &text);
|
2018-05-23 06:11:58 +00:00
|
|
|
|
2018-05-23 15:47:04 +00:00
|
|
|
std::string getText() const;
|
|
|
|
bool isChecked() const;
|
|
|
|
void setState(bool checked);
|
2018-05-23 09:08:50 +00:00
|
|
|
|
2018-05-23 15:47:04 +00:00
|
|
|
void write(QJsonObject &json) const;
|
|
|
|
void read(const QJsonObject &json);
|
2018-05-23 06:11:58 +00:00
|
|
|
};
|