How to Add Holidays to QCalendarWidget: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Cleanup)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''English''' [[How_to_Add_Holidays_to_QCalendarWidget_Bulgarian|Български]]<br />[[Category:HowTo]]
[[Category:HowTo]]
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}}.


= How to Add Holidays to QCalendarWidget =
<code>
 
QDate date(2013,3,3);
The following source code marks 3 March 2013 at &quot;QCalendarWidget&amp;quot;:http://doc.qt.io/qt-5.0/qtwidgets/qcalendarwidget.html as a Holiday using the same weekends' &quot;QTextCharFormat&amp;quot;:http://doc.qt.io/qt-5.0/qtgui/qtextcharformat.html.
QTextCharFormat format = myCalendarWidget->weekdayTextFormat(Qt::Saturday);
 
myCalendarWidget->setDateTextFormat(date, format);
<code><br />QDate date(2013,3,3);<br />QTextCharFormat format = myCalendarWidget-&gt;weekdayTextFormat(Qt::Saturday);
</code>
 
myCalendarWidget-&gt;setDateTextFormat(date, format);

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);