mirror of
https://invent.kde.org/graphics/okular
synced 2024-10-28 19:28:38 +00:00
239434362e
It provides the items this way: root + page 1 | + annotations for page 1 + page 2 | + annotations for page 2 .. and so on It does not return subtrees for pages without annotations. svn path=/trunk/KDE/kdegraphics/okular/; revision=709946
55 lines
2 KiB
C++
55 lines
2 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 ANNOTATIONMODEL_H
|
|
#define ANNOTATIONMODEL_H
|
|
|
|
#include <qabstractitemmodel.h>
|
|
|
|
namespace Okular {
|
|
class Annotation;
|
|
class Document;
|
|
}
|
|
|
|
class AnnotationModelPrivate;
|
|
|
|
class AnnotationModel : public QAbstractItemModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum {
|
|
AuthorRole = Qt::UserRole + 1000,
|
|
PageRole
|
|
};
|
|
|
|
AnnotationModel( Okular::Document *document, QObject *parent = 0 );
|
|
virtual ~AnnotationModel();
|
|
|
|
// reimplementations from QAbstractItemModel
|
|
virtual int columnCount( const QModelIndex &parent = QModelIndex() ) const;
|
|
virtual QVariant data( const QModelIndex &index, int role = Qt::DisplayRole ) const;
|
|
virtual bool hasChildren( const QModelIndex &parent = QModelIndex() ) const;
|
|
virtual QVariant headerData( int section, Qt::Orientation orientation, int role = Qt::DisplayRole ) const;
|
|
virtual QModelIndex index( int row, int column, const QModelIndex &parent = QModelIndex() ) const;
|
|
virtual QModelIndex parent( const QModelIndex &index ) const;
|
|
virtual int rowCount( const QModelIndex &parent = QModelIndex() ) const;
|
|
|
|
bool isAnnotation( const QModelIndex &index ) const;
|
|
Okular::Annotation* annotationForIndex( const QModelIndex &index ) const;
|
|
|
|
private:
|
|
// storage
|
|
friend class AnnotationModelPrivate;
|
|
AnnotationModelPrivate *const d;
|
|
};
|
|
|
|
|
|
|
|
#endif
|