summaryrefslogtreecommitdiff
path: root/noncore/net
authorharlekin <harlekin>2003-12-13 13:45:40 (UTC)
committer harlekin <harlekin>2003-12-13 13:45:40 (UTC)
commite1dc235a829398482dddc66b931d6eec840382ec (patch) (unidiff)
treeb4a93390a382eb9ce2f9c9a3703e4f03c3e475e0 /noncore/net
parent865b023c57f657c8eff26baa670fc76bbcd548e4 (diff)
downloadopie-e1dc235a829398482dddc66b931d6eec840382ec.zip
opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.gz
opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.bz2
beginning of attachment handling ( user side )
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/mainwindow.cpp6
-rw-r--r--noncore/net/mail/viewmail.cpp56
-rw-r--r--noncore/net/mail/viewmail.h2
3 files changed, 59 insertions, 5 deletions
diff --git a/noncore/net/mail/mainwindow.cpp b/noncore/net/mail/mainwindow.cpp
index f0a915d..560715c 100644
--- a/noncore/net/mail/mainwindow.cpp
+++ b/noncore/net/mail/mainwindow.cpp
@@ -144,50 +144,52 @@ void MainWindow::slotShowFolders( bool show )
144void MainWindow::refreshMailView(QList<RecMail>*list) 144void MainWindow::refreshMailView(QList<RecMail>*list)
145{ 145{
146 MailListViewItem*item = 0; 146 MailListViewItem*item = 0;
147 mailView->clear(); 147 mailView->clear();
148 for (unsigned int i = 0; i < list->count();++i) { 148 for (unsigned int i = 0; i < list->count();++i) {
149 item = new MailListViewItem(mailView,item); 149 item = new MailListViewItem(mailView,item);
150 item->storeData(*(list->at(i))); 150 item->storeData(*(list->at(i)));
151 item->showEntry(); 151 item->showEntry();
152 } 152 }
153} 153}
154void MainWindow::displayMail(QListViewItem*item) 154void MainWindow::displayMail(QListViewItem*item)
155{ 155{
156 if (!item) return; 156 if (!item) return;
157 RecMail mail = ((MailListViewItem*)item)->data(); 157 RecMail mail = ((MailListViewItem*)item)->data();
158 RecBody body = folderView->fetchBody(mail); 158 RecBody body = folderView->fetchBody(mail);
159 159
160 ViewMail readMail( this ); 160 ViewMail readMail( this );
161 readMail.setBody( body ); 161 readMail.setBody( body );
162 readMail.setMail( mail ); 162 readMail.setMail( mail );
163 readMail.showMaximized(); 163 readMail.showMaximized();
164 readMail.exec(); 164 readMail.exec();
165 ( (MailListViewItem*)item )->setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgunseen") ); 165 ( (MailListViewItem*)item )->setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgunseen") );
166} 166}
167 167
168MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * after ) 168MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * item )
169 :QListViewItem(parent,after),mail_data() 169 :QListViewItem(parent,item),mail_data()
170{ 170{
171} 171}
172 172
173void MailListViewItem::showEntry() 173void MailListViewItem::showEntry()
174{ 174{
175 if ( mail_data.getFlags().testBit( FLAG_SEEN ) == true ) { 175 if ( mail_data.getFlags().testBit( FLAG_SEEN ) == true ) {
176 setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgunseen") ); 176 setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgunseen") );
177 } else { 177 } else {
178 setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgnew") ); 178 setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgnew") );
179 } 179 }
180 setText(1,mail_data.getSubject()); 180 setText(1,mail_data.getSubject());
181 setText(2,mail_data.getFrom()); 181 setText(2,mail_data.getFrom());
182 setText(3,mail_data.getDate()); 182 setText(3,mail_data.getDate());
183} 183}
184 184
185void MailListViewItem::storeData(const RecMail&data) 185void MailListViewItem::storeData(const RecMail&data)
186{ 186{
187 mail_data = data; 187 mail_data = data;
188} 188}
189 189
190const RecMail& MailListViewItem::data()const 190const RecMail& MailListViewItem::data()const
191{ 191{
192 return mail_data; 192 return mail_data;
193} 193}
194
195
diff --git a/noncore/net/mail/viewmail.cpp b/noncore/net/mail/viewmail.cpp
index 39c9820..c24d5d3 100644
--- a/noncore/net/mail/viewmail.cpp
+++ b/noncore/net/mail/viewmail.cpp
@@ -1,149 +1,196 @@
1#include <qtextbrowser.h> 1#include <qtextbrowser.h>
2#include <qmessagebox.h> 2#include <qmessagebox.h>
3#include <qtextstream.h> 3#include <qtextstream.h>
4#include <qaction.h> 4#include <qaction.h>
5#include <qpopupmenu.h>
5#include <qapplication.h> 6#include <qapplication.h>
6 7
8#include <opie/ofiledialog.h>
9
7#include "settings.h" 10#include "settings.h"
8#include "composemail.h" 11#include "composemail.h"
9#include "viewmail.h" 12#include "viewmail.h"
10 13
11AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mime,const QString&file,const QString&desc,int num) 14AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mime,const QString&file,const QString&desc,int num)
12 : QListViewItem(parent,after),_partNum(num) 15 : QListViewItem(parent,after),_partNum(num)
13{ 16{
14 setText(0, mime); 17 setText(0, mime);
15 setText(1, file); 18 setText(1, file);
16 setText(2, desc); 19 setText(2, desc);
17} 20}
18 21
19
20void ViewMail::setBody( RecBody body ) { 22void ViewMail::setBody( RecBody body ) {
21 23
24m_body = body;
22m_mail[2] = body.Bodytext(); 25m_mail[2] = body.Bodytext();
23attachbutton->setEnabled(body.Parts().count()>0); 26attachbutton->setEnabled(body.Parts().count()>0);
24attachments->setEnabled(body.Parts().count()>0); 27attachments->setEnabled(body.Parts().count()>0);
25if (body.Parts().count()==0) { 28if (body.Parts().count()==0) {
26 return; 29 return;
27} 30}
28AttachItem * curItem=0; 31AttachItem * curItem=0;
29QString type=body.Description().Type()+"/"+body.Description().Subtype(); 32QString type=body.Description().Type()+"/"+body.Description().Subtype();
30QString desc; 33QString desc;
31double s = body.Description().Size(); 34double s = body.Description().Size();
32int w; 35int w;
33w=0; 36w=0;
34 37
35while (s>1024) { 38while (s>1024) {
36 s/=1024; 39 s/=1024;
37 ++w; 40 ++w;
38 if (w>=2) break; 41 if (w>=2) break;
39} 42}
40 43
41QString q=""; 44QString q="";
42switch(w) { 45switch(w) {
43case 1: 46case 1:
44 q="k"; 47 q="k";
45 break; 48 break;
46case 2: 49case 2:
47 q="M"; 50 q="M";
48 break; 51 break;
49default: 52default:
50 break; 53 break;
51} 54}
52 55
53{ 56{
54 /* I did not found a method to make a CONTENT reset on a QTextStream 57 /* I did not found a method to make a CONTENT reset on a QTextStream
55 so I use this construct that the stream will re-constructed in each 58 so I use this construct that the stream will re-constructed in each
56 loop. To let it work, the textstream is packed into a own area of 59 loop. To let it work, the textstream is packed into a own area of
57 code is it will be destructed after finishing its small job. 60 code is it will be destructed after finishing its small job.
58 */ 61 */
59 QTextOStream o(&desc); 62 QTextOStream o(&desc);
60 if (w>0) o.precision(2); else o.precision(0); 63 if (w>0) o.precision(2); else o.precision(0);
61 o.setf(QTextStream::fixed); 64 o.setf(QTextStream::fixed);
62 o << s << " " << q << "Byte"; 65 o << s << " " << q << "Byte";
63} 66}
64 67
65curItem=new AttachItem(attachments,curItem,type,"Mailbody",desc,-1); 68curItem=new AttachItem(attachments,curItem,type,"Mailbody",desc,-1);
66QString filename = ""; 69QString filename = "";
67for (unsigned int i = 0; i < body.Parts().count();++i) { 70for (unsigned int i = 0; i < body.Parts().count();++i) {
68 type = body.Parts()[i].Type()+"/"+body.Parts()[i].Subtype(); 71 type = body.Parts()[i].Type()+"/"+body.Parts()[i].Subtype();
69 part_plist_t::ConstIterator it = body.Parts()[i].Parameters().begin(); 72 part_plist_t::ConstIterator it = body.Parts()[i].Parameters().begin();
70 for (;it!=body.Parts()[i].Parameters().end();++it) { 73 for (;it!=body.Parts()[i].Parameters().end();++it) {
71 if (it.key().lower()=="name") { 74 if (it.key().lower()=="name") {
72 filename=it.data(); 75 filename=it.data();
73 } 76 }
74 } 77 }
75 s = body.Parts()[i].Size(); 78 s = body.Parts()[i].Size();
76 w = 0; 79 w = 0;
77 while (s>1024) { 80 while (s>1024) {
78 s/=1024; 81 s/=1024;
79 ++w; 82 ++w;
80 if (w>=2) break; 83 if (w>=2) break;
81 } 84 }
82 switch(w) { 85 switch(w) {
83 case 1: 86 case 1:
84 q="k"; 87 q="k";
85 break; 88 break;
86 case 2: 89 case 2:
87 q="M"; 90 q="M";
88 break; 91 break;
89 default: 92 default:
90 q=""; 93 q="";
91 break; 94 break;
92 } 95 }
93 QTextOStream o(&desc); 96 QTextOStream o(&desc);
94 if (w>0) o.precision(2); else o.precision(0); 97 if (w>0) o.precision(2); else o.precision(0);
95 o.setf(QTextStream::fixed); 98 o.setf(QTextStream::fixed);
96 o << s << " " << q << "Byte"; 99 o << s << " " << q << "Byte";
97 curItem=new AttachItem(attachments,curItem,type,filename,desc,i); 100 curItem=new AttachItem(attachments,curItem,type,filename,desc,i);
98} 101}
99} 102}
100 103
104void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int c ) {
105 if (!item )
106 return;
107
108 QPopupMenu *menu = new QPopupMenu();
109 int ret=0;
110
111 if ( item->text( 0 ).left( 4 ) == "text" ) {
112 menu->insertItem( tr( "Show Text" ), 1 );
113 }
114 menu->insertItem( tr( "Save Attachemt" ), 0 );
115 menu->insertSeparator(1);
116
117 ret = menu->exec( point, 0 );
118
119 switch(ret) {
120 case 0:
121 { MimeTypes types;
122 types.insert( "all", "*" );
123 QString str = OFileDialog::getSaveFileName( 1,
124 "/", item->text( 1 ) , types, 0 );
125
126 if( !str.isEmpty() ) {
127 qDebug( " first we will need a MIME wrapper" );
128 }
129 }
130 break ;
131
132 case 1:
133
134 qDebug( QString( "Test selected" ).arg( ( ( AttachItem* )item )->Partnumber() ) );
135 if ( ( ( AttachItem* )item )->Partnumber() == -1 ) {
136 setText();
137 } else {
138 browser->setText( ( m_body.Parts()[( ( AttachItem* )item )->Partnumber() ] ).Identifier() );
139 }
140 break;
141 }
142 delete menu;
143}
144
145
101void ViewMail::setMail( RecMail mail ) { 146void ViewMail::setMail( RecMail mail ) {
102 147
103m_mail[0] = mail.getFrom(); 148m_mail[0] = mail.getFrom();
104m_mail[1] = mail.getSubject(); 149m_mail[1] = mail.getSubject();
105m_mail[3] = mail.getDate(); 150m_mail[3] = mail.getDate();
106m_mail[4] = mail.Msgid(); 151m_mail[4] = mail.Msgid();
107 152
108m_mail2[0] = mail.To(); 153m_mail2[0] = mail.To();
109m_mail2[1] = mail.CC(); 154m_mail2[1] = mail.CC();
110m_mail2[2] = mail.Bcc(); 155m_mail2[2] = mail.Bcc();
111 156
112setText(); 157setText();
113} 158}
114 159
115 160
116 161
117ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl) 162ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
118 : ViewMailBase(parent, name, fl), _inLoop(false) 163 : ViewMailBase(parent, name, fl), _inLoop(false)
119{ 164{
120 m_gotBody = false; 165 m_gotBody = false;
121 166
122 connect(reply, SIGNAL(activated()), SLOT(slotReply())); 167 connect(reply, SIGNAL(activated()), SLOT(slotReply()));
123 connect(forward, SIGNAL(activated()), SLOT(slotForward())); 168 connect(forward, SIGNAL(activated()), SLOT(slotForward()));
124 169
125 attachments->setEnabled(m_gotBody); 170 attachments->setEnabled(m_gotBody);
171 connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) );
172
126} 173}
127 174
128void ViewMail::setText() 175void ViewMail::setText()
129{ 176{
130 177
131 QString toString; 178 QString toString;
132 QString ccString; 179 QString ccString;
133 QString bccString; 180 QString bccString;
134 181
135 for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it ) { 182 for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it ) {
136 toString += (*it); 183 toString += (*it);
137 } 184 }
138 for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it ) { 185 for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it ) {
139 ccString += (*it); 186 ccString += (*it);
140 } 187 }
141 for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) { 188 for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) {
142 bccString += (*it); 189 bccString += (*it);
143 } 190 }
144 191
145 setCaption( caption().arg( m_mail[0] ) ); 192 setCaption( caption().arg( m_mail[0] ) );
146 193
147 m_mailHtml = "<html><body>" 194 m_mailHtml = "<html><body>"
148 "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>" 195 "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>"
149 "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>" 196 "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>"
@@ -151,59 +198,62 @@ void ViewMail::setText()
151 "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>" 198 "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>"
152 "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + 199 "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" +
153 tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" 200 tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>"
154 "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] + 201 "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] +
155 "</td></tr></table><font face=fixed>"; 202 "</td></tr></table><font face=fixed>";
156 203
157 browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" ); 204 browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" );
158 // remove later in favor of a real handling 205 // remove later in favor of a real handling
159 m_gotBody = true; 206 m_gotBody = true;
160} 207}
161 208
162 209
163ViewMail::~ViewMail() 210ViewMail::~ViewMail()
164{ 211{
165 hide(); 212 hide();
166} 213}
167 214
168void ViewMail::hide() 215void ViewMail::hide()
169{ 216{
170 QWidget::hide(); 217 QWidget::hide();
171 218
172 if (_inLoop) { 219 if (_inLoop) {
173 _inLoop = false; 220 _inLoop = false;
174 qApp->exit_loop(); 221 qApp->exit_loop();
175 } 222
223 }
224
176} 225}
177 226
178void ViewMail::exec() 227void ViewMail::exec()
179{ 228{
180 show(); 229 show();
181 230
182 if (!_inLoop) { 231 if (!_inLoop) {
183 _inLoop = true; 232 _inLoop = true;
184 qApp->enter_loop(); 233 qApp->enter_loop();
185 } 234 }
235
186} 236}
187 237
188QString ViewMail::deHtml(const QString &string) 238QString ViewMail::deHtml(const QString &string)
189{ 239{
190 QString string_ = string; 240 QString string_ = string;
191 string_.replace(QRegExp("&"), "&amp;"); 241 string_.replace(QRegExp("&"), "&amp;");
192 string_.replace(QRegExp("<"), "&lt;"); 242 string_.replace(QRegExp("<"), "&lt;");
193 string_.replace(QRegExp(">"), "&gt;"); 243 string_.replace(QRegExp(">"), "&gt;");
194 string_.replace(QRegExp("\\n"), "<br>"); 244 string_.replace(QRegExp("\\n"), "<br>");
195 return string_; 245 return string_;
196} 246}
197 247
198void ViewMail::slotReply() 248void ViewMail::slotReply()
199{ 249{
200 if (!m_gotBody) { 250 if (!m_gotBody) {
201 QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok")); 251 QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok"));
202 return; 252 return;
203 } 253 }
204 254
205 QString rtext; 255 QString rtext;
206 rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose 256 rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose
207 .arg( m_mail[1] ) 257 .arg( m_mail[1] )
208 .arg( m_mail[3] ); 258 .arg( m_mail[3] );
209 259
diff --git a/noncore/net/mail/viewmail.h b/noncore/net/mail/viewmail.h
index b497434..0e85839 100644
--- a/noncore/net/mail/viewmail.h
+++ b/noncore/net/mail/viewmail.h
@@ -17,38 +17,40 @@ public:
17private: 17private:
18 int _partNum; 18 int _partNum;
19}; 19};
20 20
21class ViewMail : public ViewMailBase 21class ViewMail : public ViewMailBase
22{ 22{
23 Q_OBJECT 23 Q_OBJECT
24 24
25public: 25public:
26 ViewMail( QWidget *parent = 0, const char *name = 0, WFlags fl = Qt::WType_Modal); 26 ViewMail( QWidget *parent = 0, const char *name = 0, WFlags fl = Qt::WType_Modal);
27 ~ViewMail(); 27 ~ViewMail();
28 28
29 void hide(); 29 void hide();
30 void exec(); 30 void exec();
31 void setMail( RecMail mail ); 31 void setMail( RecMail mail );
32 void setBody( RecBody body ); 32 void setBody( RecBody body );
33 33
34protected: 34protected:
35 QString deHtml(const QString &string); 35 QString deHtml(const QString &string);
36 36
37protected slots: 37protected slots:
38 void slotReply(); 38 void slotReply();
39 void slotForward(); 39 void slotForward();
40 void setText(); 40 void setText();
41 void slotItemClicked( QListViewItem * item , const QPoint & point, int c );
41 42
42private: 43private:
43 bool _inLoop; 44 bool _inLoop;
44 QString m_mailHtml; 45 QString m_mailHtml;
45 bool m_gotBody; 46 bool m_gotBody;
47 RecBody m_body;
46 48
47 // 0 from 1 subject 2 bodytext 3 date 49 // 0 from 1 subject 2 bodytext 3 date
48 QMap <int,QString> m_mail; 50 QMap <int,QString> m_mail;
49 // 0 to 1 cc 2 bcc 51 // 0 to 1 cc 2 bcc
50 QMap <int,QStringList> m_mail2; 52 QMap <int,QStringList> m_mail2;
51 53
52}; 54};
53 55
54#endif 56#endif