How to Add Holidays to QCalendarWidget

From Qt Wiki
Revision as of 14:43, 24 February 2015 by Maintenance script (talk | contribs)
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.

English Български

How to Add Holidays to QCalendarWidget

The following source code marks 3 March 2013 at "QCalendarWidget":http://doc.qt.io/qt-5.0/qtwidgets/qcalendarwidget.html as a Holiday using the same weekends' "QTextCharFormat":http://doc.qt.io/qt-5.0/qtgui/qtextcharformat.html.


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

myCalendarWidget->setDateTextFormat(date, format);