How to create a custom calender widget: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(No difference)

Revision as of 15:43, 14 January 2015

English Български

Customizing the appearance of QCalendarWidget

There are numerous ways to make a calendar. And the simplest one , must be using the QCalendarWidget [qt.io]. However, we have limited control over the appearance of this widget.

Inheriting the QCalendarWidget [qt.io] can solve the issue. Here is the example class which explains a ‘custom’ calendar widget.

The cells, or the particular days are customized, and in order to do this , we need to take control over the protected function paintCell [qt.io]

Example:

That is all. Happy coding.

Categories: