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.
61 lines
1.6 KiB
61 lines
1.6 KiB
// -*- c++ -*- |
|
#ifndef KMMIMEPARTTREE_H |
|
#define KMMIMEPARTTREE_H |
|
|
|
#include <klistview.h> |
|
#include <kio/global.h> |
|
|
|
#include <qstring.h> |
|
|
|
class partNode; |
|
class KMReaderWin; |
|
class KMMimePartTreeItem; |
|
|
|
class KMMimePartTree : public KListView |
|
{ |
|
Q_OBJECT |
|
public: |
|
KMMimePartTree( KMReaderWin* readerWin, |
|
QWidget* parent, |
|
const char* name = 0 ); |
|
virtual ~KMMimePartTree(); |
|
|
|
protected slots: |
|
void itemClicked( QListViewItem* ); |
|
void itemRightClicked( QListViewItem*, const QPoint& ); |
|
void slotSaveAs(); |
|
void slotSaveAsEncoded(); |
|
|
|
protected: |
|
void restoreLayoutIfPresent(); |
|
|
|
protected: |
|
KMReaderWin* mReaderWin; |
|
KMMimePartTreeItem* mCurrentContextMenuItem; |
|
}; |
|
|
|
class KMMimePartTreeItem :public QListViewItem |
|
{ |
|
public: |
|
KMMimePartTreeItem( KMMimePartTree& parent, |
|
partNode* node, |
|
const QString & labelDescr, |
|
const QString & labelCntType = QString::null, |
|
const QString & labelEncoding = QString::null, |
|
KIO::filesize_t size=0 ); |
|
KMMimePartTreeItem( KMMimePartTreeItem& parent, |
|
partNode* node, |
|
const QString & labelDescr, |
|
const QString & labelCntType = QString::null, |
|
const QString & labelEncoding = QString::null, |
|
KIO::filesize_t size=0, |
|
bool revertOrder = false ); |
|
partNode* node() const { return mPartNode; } |
|
|
|
private: |
|
void setIconAndTextForType( const QString & mimetype ); |
|
|
|
partNode* mPartNode; |
|
}; |
|
|
|
#endif // KMMIMEPARTTREE_H
|
|
|