Difference between revisions of "How to Add Holidays to QCalendarWidget"
From Qt Wiki
AutoSpider (talk | contribs) (Add "cleanup" tag) |
|||
Line 1: | Line 1: | ||
+ | {{Cleanup | reason=Auto-imported from ExpressionEngine.}} | ||
+ | |||
'''English''' [[How_to_Add_Holidays_to_QCalendarWidget_Bulgarian|Български]] | '''English''' [[How_to_Add_Holidays_to_QCalendarWidget_Bulgarian|Български]] | ||
[[Category:HowTo]] | [[Category:HowTo]] |
Revision as of 15:46, 3 March 2015
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);