Updated French translation
[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   QStyleOptionViewItem opt = option;
29   opt.displayAlignment = Qt::AlignCenter;
30   QStyledItemDelegate::paint(painter, opt, index);
31   if(index.column() == EV_STATUS) {
32     // Draw checkbox
33     QIcon::fromTheme("general_tickmark_checked");
34     // Is selected
35     // Draw checkbox
36     QIcon cbIco;
37     if(index.data(Qt::UserRole).toBool()) {
38       cbIco = QIcon::fromTheme("clock_alarm_on");
39     } else {
40       cbIco = QIcon::fromTheme("clock_alarm_off");
41     }
42     QPixmap cbPix = cbIco.pixmap(cbIco.actualSize(option.decorationSize));
43     QRect cbRect = option.rect;
44     cbRect.setWidth(cbPix.width());
45     cbRect.setHeight(cbPix.height());
46     cbRect.moveCenter(option.rect.center());;
47     painter->drawPixmap(cbRect, cbPix);
48   }
49 }