summaryrefslogtreecommitdiff
path: root/libopie/ocheckitem.h
blob: 238713444f7fc2c4dff947f70d8cd8f546d35d2c (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
/**********************************************************************
** Copyright (C) 2002 Stefan Eilers (se, eilers.stefan@epost.de)
**
** This file may be distributed and/or modified under the terms of the
** GNU Library General Public License version 2 as published by the
**  Free Software Foundation and appearing in the file LICENSE.GPL
** included in the packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************/
#include <qtable.h>

#ifndef CHECKITEM_H__
#define CHECKITEM_H__

/**
 * This class represents a checkable QTableItem. This can
 * be added to any QTable.
 *
 *
 * @see QTable
 * @see QTableItem
 * @short An checkable QTableItem
 * @version 1.0
 * @author Stefan Eilers ( eilers@handhelds.org )
 */

class OCheckItem : public QTableItem
{
public:
    enum Size { BoxSize = 10 };
    OCheckItem( QTable *t, const QString &sortkey );

    virtual void setChecked( bool b );
    virtual void toggle();
    bool isChecked() const;
    void setKey( const QString &key ) { m_sortKey = key; }
    virtual QString key() const;

    void paint( QPainter *p, const QColorGroup &cg, const QRect &cr, bool selected );

    //static const int BoxSize = 10;

private:
    class OCheckItemPrivate;
    OCheckItemPrivate *d;
    bool m_checked: 1;
    QString m_sortKey;

};

#endif