Major new release: Several events can now be defined and one can set events to occur...
[timedsilencer] / eventlistdelegate.cpp
1 /*
2  * This file is part of TimedSilencer.
3  *
4  *  TimedSilencer is free software: you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation, either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  TimedSilencer is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with TimedSilencer.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <QIcon>
19 #include <QPainter>
20 #include "eventlistdelegate.h"
21 #include "switchingeventlist.h"
22
23 EventListDelegate::EventListDelegate()
24 {
25 }
26
27 void EventListDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const {
28   if(index.column() == EV_STATUS) {
29     // Draw checkbox
30     QIcon::fromTheme("general_tickmark_checked");
31     // Is selected
32     // Draw checkbox
33     QIcon cbIco;
34     if(index.data().toBool()) {
35       cbIco = QIcon::fromTheme("clock_alarm_on");
36     } else {
37       cbIco = QIcon::fromTheme("clock_alarm_off");
38     }
39     QPixmap cbPix = cbIco.pixmap(cbIco.actualSize(option.decorationSize));
40     QRect cbRect = option.rect;
41     cbRect.setWidth(cbPix.width());
42     cbRect.setHeight(cbPix.height());
43     cbRect.moveCenter(option.rect.center());;
44     painter->drawPixmap(cbRect, cbPix);
45   } else {
46     QStyleOptionViewItem opt = option;
47     opt.displayAlignment = Qt::AlignCenter;
48     QStyledItemDelegate::paint(painter, opt, index);
49   }
50 }