Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to Add Holidays to QCalendarWidget: Difference between revisions
Jump to navigation
Jump to search
(Cleanup) |
(Cleanup) |
||
Line 1: | Line 1: | ||
[[Category:HowTo]] | [[Category:HowTo]] | ||
The following source code marks | The following source code marks the 3rd of March 2013 in a {{DocLink|QCalendarWidget}} as a Holiday using the same style as weekends with {{DocLink|QTextCharFormat}}. | ||
<code> | <code> | ||
QDate date(2013,3,3); | QDate date(2013,3,3); | ||
QTextCharFormat format = myCalendarWidget->weekdayTextFormat(Qt::Saturday); | QTextCharFormat format = myCalendarWidget->weekdayTextFormat(Qt::Saturday); | ||
myCalendarWidget->setDateTextFormat(date, format); | myCalendarWidget->setDateTextFormat(date, format); | ||
</code> |
Latest revision as of 19:28, 11 September 2017
The following source code marks the 3rd of March 2013 in a QCalendarWidget as a Holiday using the same style as weekends with QTextCharFormat.
QDate date(2013,3,3);
QTextCharFormat format = myCalendarWidget->weekdayTextFormat(Qt::Saturday);
myCalendarWidget->setDateTextFormat(date, format);