~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to kcontrol/input/xcursor/itemdelegate.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-09-05 20:45:14 UTC
  • Revision ID: james.westby@ubuntu.com-20070905204514-632hhspl0nvrc84i
Tags: upstream-3.93.0
Import upstream version 3.93.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2006-2007 Fredrik Höglund <fredrik@kde.org>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public
 
6
 * License version 2 as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program; see the file COPYING.  If not, write to
 
15
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
 * Boston, MA 02110-1301, USA.
 
17
 */
 
18
 
 
19
#ifndef ITEMDELEGATE_H
 
20
#define ITEMDELEGATE_H
 
21
 
 
22
#include <QAbstractItemDelegate>
 
23
 
 
24
class QPainter;
 
25
 
 
26
class ItemDelegate : public QAbstractItemDelegate
 
27
{
 
28
    public:
 
29
        ItemDelegate(QObject *parent = 0);
 
30
        ~ItemDelegate();
 
31
        QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
32
        void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
33
 
 
34
    private:
 
35
        QString firstLine(const QModelIndex &index) const;
 
36
        QString secondLine(const QModelIndex &index) const;
 
37
        QPixmap decoration(const QModelIndex &index) const;
 
38
        QPalette::ColorRole foregroundRole(const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
39
        QPalette::ColorRole backgroundRole(const QStyleOptionViewItem &option, const QModelIndex &index) const;
 
40
};
 
41
 
 
42
#endif