mirror of
https://invent.kde.org/graphics/okular
synced 2024-10-28 19:28:38 +00:00
b163e04115
svn path=/trunk/playground/graphics/okular/; revision=625312
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
/***************************************************************************
|
|
* 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
|