summaryrefslogtreecommitdiff
path: root/noncore/net/mail/viewmail.cpp
Unidiff
Diffstat (limited to 'noncore/net/mail/viewmail.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/viewmail.cpp49
1 files changed, 46 insertions, 3 deletions
diff --git a/noncore/net/mail/viewmail.cpp b/noncore/net/mail/viewmail.cpp
index d2e5e29..5e7ffeb 100644
--- a/noncore/net/mail/viewmail.cpp
+++ b/noncore/net/mail/viewmail.cpp
@@ -5,6 +5,7 @@
5#include <qpopupmenu.h> 5#include <qpopupmenu.h>
6#include <qfile.h> 6#include <qfile.h>
7#include <qapplication.h> 7#include <qapplication.h>
8#include <qvaluelist.h>
8 9
9#include <qpe/config.h> 10#include <qpe/config.h>
10 11
@@ -18,15 +19,49 @@
18#include "mailtypes.h" 19#include "mailtypes.h"
19 20
20AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mime,const QString&desc,const QString&file, 21AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mime,const QString&desc,const QString&file,
21 const QString&fsize,int num) 22 const QString&fsize,int num,const QValueList<int>&path)
22 : QListViewItem(parent,after),_partNum(num) 23 : QListViewItem(parent,after),_partNum(num)
23{ 24{
25 _path=path;
24 setText(0, mime); 26 setText(0, mime);
25 setText(1, desc); 27 setText(1, desc);
26 setText(2, file); 28 setText(2, file);
27 setText(3, fsize); 29 setText(3, fsize);
28} 30}
29 31
32AttachItem::AttachItem(QListViewItem * parent,QListViewItem *after, const QString&mime,const QString&desc,const QString&file,
33 const QString&fsize,int num,const QValueList<int>&path)
34 : QListViewItem(parent,after),_partNum(num)
35{
36 _path=path;
37 setText(0, mime);
38 setText(1, desc);
39 setText(2, file);
40 setText(3, fsize);
41}
42
43bool AttachItem::isParentof(const QValueList<int>&path)
44{
45 /* if not set, then no parent */
46 if (path.count()==0||_path.count()==0) return false;
47 /* the parent must have one digit less then a child */
48 if (path.count()!=_path.count()+1) return false;
49 for (unsigned int i=0; i < _path.count();++i) {
50 if (_path[i]!=path[i]) return false;
51 }
52 return true;
53}
54
55AttachItem* ViewMail::searchParent(const QValueList<int>&path)
56{
57 QListViewItemIterator it( attachments );
58 for ( ; it.current(); ++it ) {
59 AttachItem*ati = (AttachItem*)it.current();
60 if (ati->isParentof(path)) return ati;
61 }
62 return 0;
63}
64
30void ViewMail::setBody( RecBody body ) { 65void ViewMail::setBody( RecBody body ) {
31 66
32m_body = body; 67m_body = body;
@@ -37,6 +72,7 @@ if (body.Parts().count()==0) {
37 return; 72 return;
38} 73}
39AttachItem * curItem=0; 74AttachItem * curItem=0;
75AttachItem * parentItem = 0;
40QString type=body.Description().Type()+"/"+body.Description().Subtype(); 76QString type=body.Description().Type()+"/"+body.Description().Subtype();
41QString desc,fsize; 77QString desc,fsize;
42double s = body.Description().Size(); 78double s = body.Description().Size();
@@ -73,8 +109,9 @@ default:
73 o << s << " " << q << "Byte"; 109 o << s << " " << q << "Byte";
74} 110}
75 111
76curItem=new AttachItem(attachments,curItem,type,"Mailbody","",fsize,-1); 112curItem=new AttachItem(attachments,curItem,type,"Mailbody","",fsize,-1,body.Description().Positionlist());
77QString filename = ""; 113QString filename = "";
114
78for (unsigned int i = 0; i < body.Parts().count();++i) { 115for (unsigned int i = 0; i < body.Parts().count();++i) {
79 type = body.Parts()[i].Type()+"/"+body.Parts()[i].Subtype(); 116 type = body.Parts()[i].Type()+"/"+body.Parts()[i].Subtype();
80 part_plist_t::ConstIterator it = body.Parts()[i].Parameters().begin(); 117 part_plist_t::ConstIterator it = body.Parts()[i].Parameters().begin();
@@ -107,7 +144,13 @@ for (unsigned int i = 0; i < body.Parts().count();++i) {
107 o.setf(QTextStream::fixed); 144 o.setf(QTextStream::fixed);
108 o << s << " " << q << "Byte"; 145 o << s << " " << q << "Byte";
109 desc = body.Parts()[i].Description(); 146 desc = body.Parts()[i].Description();
110 curItem=new AttachItem(attachments,curItem,type,desc,filename,fsize,i); 147 parentItem = searchParent(body.Parts()[i].Positionlist());
148 if (parentItem) {
149 curItem=new AttachItem(parentItem,curItem,type,desc,filename,fsize,i,body.Parts()[i].Positionlist());
150 attachments->setRootIsDecorated(true);
151 } else {
152 curItem=new AttachItem(attachments,curItem,type,desc,filename,fsize,i,body.Parts()[i].Positionlist());
153 }
111} 154}
112} 155}
113 156