CalendarView
-
I want to make a outlook calendar like UI for my event calendar. I would need to add multiple event descriptions(rectangular labels with some text) in calendar cells and to be able to click and identify each such item in the cell. I have restriction of using Qt4.8.4.
Is it possible to make such UI with QTableView and QAbstractItemModel or is there any other better way?Please suggest.
-
@narinder83 What about http://doc.qt.io/qt-4.8/qcalendarwidget.html ?
-
@jsulm: Thanks for your reply.
As I should be able to configure multiple events for a particular date and display them in a cell along with the date information, qCalendarWidget will not be useful.
I'll also need to be able to highlight an event in a cell or click on a particular event to open the configuration dialog, select event and drag & drop it to some other cell etc.