summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_iconlistitem.h
blob: 4a9f5806a3184d8197e76bda44cd990e49f4a65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/***************************************************************************
                          sq_iconlistitem.h  -  description
                             -------------------
    begin                : ??? ??? 19 2004
    copyright            : (C) 2004 by Baryshev Dmitry
    email                : ksquirrel.iv@gmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef SQ_ICONLISTITEM_H
#define SQ_ICONLISTITEM_H

#include <qlistbox.h>

class QListBox;
class QPainter;
class QPixmap;

/* 
 *  SQ_IconListItem represents a listbox item.
 *
 *  With SQ_IconListBox it is used in SQ_Options.
 *
 *  Taken from kdelibs.
 */

class SQ_IconListItem : public QListBoxItem
{
    public:
        SQ_IconListItem(QListBox *listbox, const QPixmap &pixmap, const QString &text);

        virtual int height(const QListBox *lb) const;
        virtual int width(const QListBox *lb) const;
        int expandMinimumWidth(int width);

    protected:
        const QPixmap& defaultPixmap();
        void paint(QPainter *painter);

    private:
        QPixmap mPixmap;
        int mMinimumWidth;
};

#endif