f1e13918a8537a3c3ba2a337fc32d6f81e9725ef
[mdictionary] / src / mdictionary / gui / WordListProxyStyle.cpp
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21
22 /*! \file WordListProxyStyle.cpp
23     \brief Custom proxy style that draws checkboxes as stars.
24
25     \author Mateusz Półrola <mateusz.polrola@comarch.pl>
26 */
27
28 #include "WordListProxyStyle.h"
29
30
31 WordListProxyStyle::WordListProxyStyle() :
32     QProxyStyle()
33 {
34     //load pixmap from resources
35     #ifdef Q_WS_MAEMO_5
36         starPixmapOn = QPixmap(":/icons/96x96/staron.png");
37         starPixmapOff = QPixmap(":/icons/96x96/staroff.png");
38     #else
39         starPixmapOn = QPixmap(":/icons/16x16/staron.png");
40         starPixmapOff = QPixmap(":/icons/16x16/staroff.png");
41     #endif
42 }
43
44
45 void WordListProxyStyle::drawPrimitive(PrimitiveElement element,
46                                        const QStyleOption *option,
47                                        QPainter *painter,
48                                        const QWidget *widget) const {
49     if(element == PE_IndicatorCheckBox) {
50         if(option->state & QStyle::State_On)
51             painter->drawPixmap(option->rect, starPixmapOn);
52         else
53             painter->drawPixmap(option->rect, starPixmapOff);
54     }
55     else {
56         QProxyStyle::drawPrimitive(element, option, painter, widget);
57     }
58 }
59
60