/*************************************************************************** * Copyright (C) 2006 by Pino Toscano * * * * 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 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