You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
3.8 KiB
120 lines
3.8 KiB
/* |
|
* This file is part of KMail. |
|
* Copyright (c) 2009 Constantin Berzan <exit3219@gmail.com> |
|
* |
|
* 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. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License along |
|
* with this program; if not, write to the Free Software Foundation, Inc., |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#ifndef KMAIL_ATTACHMENTMODEL_H |
|
#define KMAIL_ATTACHMENTMODEL_H |
|
|
|
#include <QtCore/QAbstractItemModel> |
|
|
|
#include <KDE/KUrl> |
|
|
|
#include <messagecore/attachmentpart.h> |
|
#include <akonadi/item.h> |
|
|
|
namespace KMail { |
|
|
|
/** |
|
Columns: |
|
name |
|
size |
|
encoding |
|
mime type |
|
compress |
|
encrypt |
|
sign |
|
*/ |
|
class AttachmentModel : public QAbstractItemModel |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
enum { |
|
AttachmentPartRole = Qt::UserRole |
|
}; |
|
|
|
enum Column { |
|
NameColumn, |
|
SizeColumn, |
|
EncodingColumn, |
|
MimeTypeColumn, |
|
CompressColumn, |
|
EncryptColumn, |
|
SignColumn, |
|
LastColumn ///< @internal |
|
}; |
|
|
|
AttachmentModel( QObject *parent ); |
|
~AttachmentModel(); |
|
|
|
virtual bool dropMimeData( const QMimeData *data, Qt::DropAction action, |
|
int row, int column, const QModelIndex &parent ); |
|
virtual QMimeData *mimeData( const QModelIndexList &indexes ) const; |
|
virtual QStringList mimeTypes() const; |
|
virtual Qt::DropActions supportedDropActions() const; |
|
|
|
/// for the save/discard warning |
|
bool isModified() const; |
|
void setModified( bool modified ); |
|
|
|
bool isEncryptEnabled() const; |
|
void setEncryptEnabled( bool enabled ); |
|
bool isSignEnabled() const; |
|
void setSignEnabled( bool enabled ); |
|
bool isEncryptSelected() const; |
|
/// sets for all |
|
void setEncryptSelected( bool selected ); |
|
bool isSignSelected() const; |
|
/// sets for all |
|
void setSignSelected( bool selected ); |
|
|
|
virtual QVariant data( const QModelIndex &index, int role = Qt::DisplayRole ) const; |
|
virtual bool setData( const QModelIndex &index, const QVariant &value, int role = Qt::EditRole ); |
|
|
|
bool addAttachment( KPIM::AttachmentPart::Ptr part ); |
|
bool updateAttachment( KPIM::AttachmentPart::Ptr part ); |
|
bool replaceAttachment( KPIM::AttachmentPart::Ptr oldPart, KPIM::AttachmentPart::Ptr newPart ); |
|
bool removeAttachment( KPIM::AttachmentPart::Ptr part ); |
|
KPIM::AttachmentPart::List attachments() const; |
|
|
|
virtual Qt::ItemFlags flags( const QModelIndex &index ) 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; |
|
virtual int columnCount( const QModelIndex &parent = QModelIndex() ) const; |
|
|
|
signals: |
|
void encryptEnabled( bool enabled ); |
|
void signEnabled( bool enabled ); |
|
void attachUrlsRequested( const KUrl::List &urls ); |
|
void attachItemsRequester( const Akonadi::Item::List & ); |
|
void attachmentRemoved( KPIM::AttachmentPart::Ptr part ); |
|
void attachmentCompressRequested( KPIM::AttachmentPart::Ptr part, bool compress ); |
|
|
|
private: |
|
class Private; |
|
friend class Private; |
|
Private *const d; |
|
}; |
|
|
|
} // namespace KMail |
|
|
|
#endif // KMAIL_ATTACHMENTMODEL_H
|
|
|