Added spanish translation
[timedsilencer] / checklistdelegate.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 <QPainter>
19 #include <QItemDelegate>
20 #include "checklistdelegate.h"
21
22 CheckListDelegate::CheckListDelegate()
23 {
24
25 }
26
27 void CheckListDelegate::paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const {
28   // Save painter
29   painter->save();
30
31   QStyleOptionViewItem opt = option;
32   opt.displayAlignment = Qt::AlignCenter;
33   QStyledItemDelegate::paint(painter, opt, index);
34
35   if (option.state & QStyle::State_Selected) {
36     // Is selected
37     // Draw checkbox
38     QIcon cbIco = QIcon::fromTheme("widgets_tickmark_list");
39     QPixmap cbPix = cbIco.pixmap(cbIco.actualSize(option.decorationSize));
40     //qDebug("Pix size: (%d, %d)", cbPix.width(), cbPix.height());
41     QRect cbRect = option.rect;
42     cbRect.setLeft(cbRect.left()+(cbRect.width()-cbPix.width()));
43     int diff_height = cbRect.height() - cbPix.height();
44     cbRect.setHeight(cbPix.height());
45     cbRect.moveBottom(cbRect.bottom()+(diff_height/2.));
46     //qDebug("Rect size: (%d, %d)", cbRect.width(), cbRect.height());
47     painter->drawPixmap(cbRect, cbPix);
48   }
49
50   // Restore painter
51   painter->restore();
52 }