This adds a "Year overview" showing all 12 months in a grid, and a "Decade overview" showing the current decade. CHANGELOG: Calendar navigation has been significantly improved, providing a year and decade overview REVIEW: 122488
18 lines
288 B
C++
18 lines
288 B
C++
#ifndef DAYDATA_H
|
|
#define DAYDATA_H
|
|
|
|
class DayData
|
|
{
|
|
public:
|
|
bool isCurrent;
|
|
// bool containsHolidayItems;
|
|
// bool containsEventItems;
|
|
// bool containsTodoItems;
|
|
// bool containsJournalItems;
|
|
int dayNumber;
|
|
int monthNumber;
|
|
int yearNumber;
|
|
};
|
|
|
|
#endif // DAYDATA_H
|