plasma-framework/src/declarativeimports/calendar/daydata.h
Kai Uwe Broulik 11e5ff10ae Improve calendar navigation
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
2015-07-27 11:41:35 +02:00

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