akonadi/kmime
messagethreaderproxymodel.h
00001 /* 00002 Copyright (c) 2007 Bruno Virlet <bruno.virlet@gmail.com> 00003 00004 This library is free software; you can redistribute it and/or modify it 00005 under the terms of the GNU Library General Public License as published by 00006 the Free Software Foundation; either version 2 of the License, or (at your 00007 option) any later version. 00008 00009 This library is distributed in the hope that it will be useful, but WITHOUT 00010 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00011 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00012 License for more details. 00013 00014 You should have received a copy of the GNU Library General Public License 00015 along with this library; see the file COPYING.LIB. If not, write to the 00016 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00017 02110-1301, USA. 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
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon May 14 2012 05:04:42 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon May 14 2012 05:04:42 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.