00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef AKONADI_MESSAGETHREADERPROXYMODEL_H
00021 #define AKONADI_MESSAGETHREADERPROXYMODEL_H
00022
00023 #include "akonadi-kmime_export.h"
00024 #include <QtGui/QAbstractProxyModel>
00025 #include <QtCore/QModelIndex>
00026
00027 class QModelIndex;
00028
00029 namespace Akonadi {
00030
00031 class Collection;
00032
00038 class AKONADI_KMIME_EXPORT_DEPRECATED MessageThreaderProxyModel : public QAbstractProxyModel
00039 {
00040 Q_OBJECT
00041
00042 public:
00047 MessageThreaderProxyModel( QObject *parent = 0 );
00048
00052 virtual ~MessageThreaderProxyModel();
00053
00057 QModelIndex parent ( const QModelIndex & index ) const;
00058
00062 int rowCount( const QModelIndex & index ) const;
00063
00067 QModelIndex index( int row, int column, const QModelIndex& parent ) const;
00068
00072 bool hasChildren( const QModelIndex& index ) const;
00073
00077 QModelIndex createIndex( int row, int column, quint32 internalId ) const;
00078
00082 int columnCount( const QModelIndex& index ) const;
00083
00087 QStringList mimeTypes() const;
00088
00092 QMimeData *mimeData(const QModelIndexList &indexes) const;
00093
00097 QModelIndex mapFromSource( const QModelIndex& index ) const;
00098
00102 QModelIndex mapToSource(const QModelIndex& index ) const;
00103
00109 void setSourceModel( QAbstractItemModel *sourceMessageModel );
00110
00111 private:
00112 class Private;
00113 Private* const d;
00114
00115 Q_PRIVATE_SLOT( d, void slotInsertRows( const QModelIndex&, int, int) )
00116 Q_PRIVATE_SLOT( d, void slotRemoveRows( const QModelIndex&, int, int) )
00117 Q_PRIVATE_SLOT( d, void slotCollectionChanged() )
00118 };
00119
00120 }
00121
00122 #endif