How to Add Holidays to QCalendarWidget

From Qt Wiki
Revision as of 18:46, 28 June 2015 by Wieland (talk | contribs) (Cleanup)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

The following source code marks 3 March 2013 at QCalendarWidget as a Holiday using the same weekends' QTextCharFormat.

QDate date(2013,3,3); QTextCharFormat format = myCalendarWidget->weekdayTextFormat(Qt::Saturday);

myCalendarWidget->setDateTextFormat(date, format);