You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
/*************************************************************************** |
|
* Copyright (C) 2006 by Pino Toscano <pino@kde.org> * |
|
* * |
|
* 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 PAGEITEMDELEGATE_H |
|
#define PAGEITEMDELEGATE_H |
|
|
|
#include <QItemDelegate> |
|
|
|
class PageItemDelegate : public QItemDelegate |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
PageItemDelegate( QObject * parent = 0 ); |
|
virtual ~PageItemDelegate(); |
|
|
|
static const int PageRole = 0x000f0001; |
|
static const int PageLabelRole = 0x000f0002; |
|
|
|
virtual void paint( QPainter *painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const; |
|
|
|
protected: |
|
virtual void drawDisplay( QPainter *painter, const QStyleOptionViewItem & option, const QRect & rect, const QString & text ) const; |
|
|
|
private: |
|
class Private; |
|
Private * const d; |
|
}; |
|
|
|
#endif
|
|
|