Clean and order documentation in source files. Source ready to beta 2 release
[mdictionary] / src / mdictionary / gui / WordListProxyStyle.h
1 /*******************************************************************************
2
3
4     This file is part of mDictionary.
5
6     mDictionary is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     mDictionary is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
18
19     Copyright 2010 Comarch S.A.
20
21 *******************************************************************************/
22 /*! \file WordListProxyStyle.h
23     \brief Custom proxy style that draws checkboxes as stars.
24
25     \author Mateusz Półrola <mateusz.polrola@comarch.pl>
26 */
27
28 #ifndef WORDLISTPROXYSTYLE_H
29 #define WORDLISTPROXYSTYLE_H
30
31 #include <QProxyStyle>
32 #include <QtGui>
33
34 /*! Custom proxy style that draws checkboxes as stars.
35     It will automatically wrap set style and change only
36     checkboxes drawing.
37 */
38 class WordListProxyStyle : public QProxyStyle
39 {
40 public:
41     WordListProxyStyle();
42     //! Reimplemented drawPrimitive method which only draws different
43     //! PE_IndicatorCheckBox elements
44     //! \sa QProxyStyle::drawPrimitive()
45     void drawPrimitive(PrimitiveElement element,
46                        const QStyleOption *option,
47                        QPainter *painter,
48                        const QWidget *widget) const;
49
50 private:
51     QPixmap starPixmapOn;
52     QPixmap starPixmapOff;
53 };
54
55 #endif // WORDLISTPROXYSTYLE_H