Checklist highlights
This commit is contained in:
@@ -50,11 +50,20 @@ public:
|
||||
std::unordered_map<std::string, std::vector<time_t>> tasks = {};
|
||||
};
|
||||
|
||||
enum class HoverTargetType
|
||||
{
|
||||
HOVER_TARGET_NONE = 0,
|
||||
HOVER_TARGET_CHECKLIST_DAY = 1,
|
||||
};
|
||||
|
||||
class ApplicationData {
|
||||
public:
|
||||
ApplicationSettings settings = {};
|
||||
size_t checklistLength = 0;
|
||||
int checklistHighlightDurationDays = 3;
|
||||
std::shared_ptr<AudioData> audioData = std::make_shared<AudioData>();
|
||||
HoverTargetType hoverTargetType = HoverTargetType::HOVER_TARGET_NONE;
|
||||
time_t hoverTargetDay = 0;
|
||||
|
||||
//ApplicationData(const ApplicationData&) = delete;
|
||||
//ApplicationData& operator=(const ApplicationData&) = delete;
|
||||
|
||||
Reference in New Issue
Block a user