summaryrefslogtreecommitdiffabout
path: root/kmicromail/viewmail.cpp
Unidiff
Diffstat (limited to 'kmicromail/viewmail.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/viewmail.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/kmicromail/viewmail.cpp b/kmicromail/viewmail.cpp
index b434318..703711d 100644
--- a/kmicromail/viewmail.cpp
+++ b/kmicromail/viewmail.cpp
@@ -60,466 +60,467 @@ bool AttachItem::isParentof(const QValueList<int>&path)
60 for (unsigned int i=0; i < _path.count();++i) 60 for (unsigned int i=0; i < _path.count();++i)
61 { 61 {
62 if (_path[i]!=path[i]) return false; 62 if (_path[i]!=path[i]) return false;
63 } 63 }
64 return true; 64 return true;
65} 65}
66 66
67AttachItem* ViewMail::searchParent(const QValueList<int>&path) 67AttachItem* ViewMail::searchParent(const QValueList<int>&path)
68{ 68{
69 QListViewItemIterator it( attachments ); 69 QListViewItemIterator it( attachments );
70 for ( ; it.current(); ++it ) 70 for ( ; it.current(); ++it )
71 { 71 {
72 AttachItem*ati = (AttachItem*)it.current(); 72 AttachItem*ati = (AttachItem*)it.current();
73 if (ati->isParentof(path)) return ati; 73 if (ati->isParentof(path)) return ati;
74 } 74 }
75 return 0; 75 return 0;
76} 76}
77 77
78AttachItem* ViewMail::lastChild(AttachItem*parent) 78AttachItem* ViewMail::lastChild(AttachItem*parent)
79{ 79{
80 if (!parent) return 0; 80 if (!parent) return 0;
81 AttachItem* item = (AttachItem*)parent->firstChild(); 81 AttachItem* item = (AttachItem*)parent->firstChild();
82 if (!item) return item; 82 if (!item) return item;
83 AttachItem*temp=0; 83 AttachItem*temp=0;
84 while( (temp=(AttachItem*)item->nextSibling())) 84 while( (temp=(AttachItem*)item->nextSibling()))
85 { 85 {
86 item = temp; 86 item = temp;
87 } 87 }
88 return item; 88 return item;
89} 89}
90 90
91void ViewMail::setBody(const RecBodyP&body ) 91void ViewMail::setBody(const RecBodyP&body )
92{ 92{
93 93
94 m_body = body; 94 m_body = body;
95 m_mail[2] = body->Bodytext(); 95 m_mail[2] = body->Bodytext();
96 attachbutton->setEnabled(body->Parts().count()>0); 96 attachbutton->setEnabled(body->Parts().count()>0);
97 attachments->setEnabled(body->Parts().count()>0); 97 attachments->setEnabled(body->Parts().count()>0);
98 if (body->Parts().count()==0) 98 if (body->Parts().count()==0)
99 { 99 {
100 return; 100 return;
101 } 101 }
102 AttachItem * curItem=0; 102 AttachItem * curItem=0;
103 AttachItem * parentItem = 0; 103 AttachItem * parentItem = 0;
104 QString type=body->Description()->Type()+"/"+body->Description()->Subtype(); 104 QString type=body->Description()->Type()+"/"+body->Description()->Subtype();
105 QString desc,fsize; 105 QString desc,fsize;
106 double s = body->Description()->Size(); 106 double s = body->Description()->Size();
107 int w; 107 int w;
108 w=0; 108 w=0;
109 109
110 while (s>1024) 110 while (s>1024)
111 { 111 {
112 s/=1024; 112 s/=1024;
113 ++w; 113 ++w;
114 if (w>=2) break; 114 if (w>=2) break;
115 } 115 }
116 116
117 QString q=""; 117 QString q="";
118 switch(w) 118 switch(w)
119 { 119 {
120 case 1: 120 case 1:
121 q="k"; 121 q="k";
122 break; 122 break;
123 case 2: 123 case 2:
124 q="M"; 124 q="M";
125 break; 125 break;
126 default: 126 default:
127 break; 127 break;
128 } 128 }
129 129
130 { 130 {
131 /* I did not found a method to make a CONTENT reset on a QTextStream 131 /* I did not found a method to make a CONTENT reset on a QTextStream
132 so I use this construct that the stream will re-constructed in each 132 so I use this construct that the stream will re-constructed in each
133 loop. To let it work, the textstream is packed into a own area of 133 loop. To let it work, the textstream is packed into a own area of
134 code is it will be destructed after finishing its small job. 134 code is it will be destructed after finishing its small job.
135 */ 135 */
136 QTextOStream o(&fsize); 136 QTextOStream o(&fsize);
137 if (w>0) o.precision(2); else o.precision(0); 137 if (w>0) o.precision(2); else o.precision(0);
138 o.setf(QTextStream::fixed); 138 o.setf(QTextStream::fixed);
139 o << s << " " << q << "Byte"; 139 o << s << " " << q << "Byte";
140 } 140 }
141 141
142 curItem=new AttachItem(attachments,curItem,type,"Mailbody","",fsize,-1,body->Description()->Positionlist()); 142 curItem=new AttachItem(attachments,curItem,type,"Mailbody","",fsize,-1,body->Description()->Positionlist());
143 QString filename = ""; 143 QString filename = "";
144 144
145 for (unsigned int i = 0; i < body->Parts().count();++i) 145 for (unsigned int i = 0; i < body->Parts().count();++i)
146 { 146 {
147 filename = ""; 147 filename = "";
148 type = body->Parts()[i]->Type()+"/"+body->Parts()[i]->Subtype(); 148 type = body->Parts()[i]->Type()+"/"+body->Parts()[i]->Subtype();
149 part_plist_t::ConstIterator it = body->Parts()[i]->Parameters().begin(); 149 part_plist_t::ConstIterator it = body->Parts()[i]->Parameters().begin();
150 for (;it!=body->Parts()[i]->Parameters().end();++it) 150 for (;it!=body->Parts()[i]->Parameters().end();++it)
151 { 151 {
152 if (it.key().lower()=="name") 152 if (it.key().lower()=="name")
153 { 153 {
154 filename=it.data(); 154 filename=it.data();
155 } 155 }
156 } 156 }
157 s = body->Parts()[i]->Size(); 157 s = body->Parts()[i]->Size();
158 w = 0; 158 w = 0;
159 while (s>1024) 159 while (s>1024)
160 { 160 {
161 s/=1024; 161 s/=1024;
162 ++w; 162 ++w;
163 if (w>=2) break; 163 if (w>=2) break;
164 } 164 }
165 switch(w) 165 switch(w)
166 { 166 {
167 case 1: 167 case 1:
168 q="k"; 168 q="k";
169 break; 169 break;
170 case 2: 170 case 2:
171 q="M"; 171 q="M";
172 break; 172 break;
173 default: 173 default:
174 q=""; 174 q="";
175 break; 175 break;
176 } 176 }
177 QTextOStream o(&fsize); 177 QTextOStream o(&fsize);
178 if (w>0) o.precision(2); else o.precision(0); 178 if (w>0) o.precision(2); else o.precision(0);
179 o.setf(QTextStream::fixed); 179 o.setf(QTextStream::fixed);
180 o << s << " " << q << "Byte"; 180 o << s << " " << q << "Byte";
181 desc = body->Parts()[i]->Description(); 181 desc = body->Parts()[i]->Description();
182 parentItem = searchParent(body->Parts()[i]->Positionlist()); 182 parentItem = searchParent(body->Parts()[i]->Positionlist());
183 if (parentItem) 183 if (parentItem)
184 { 184 {
185 AttachItem*temp = lastChild(parentItem); 185 AttachItem*temp = lastChild(parentItem);
186 if (temp) curItem = temp; 186 if (temp) curItem = temp;
187 curItem=new AttachItem(parentItem,curItem,type,desc,filename,fsize,i,body->Parts()[i]->Positionlist()); 187 curItem=new AttachItem(parentItem,curItem,type,desc,filename,fsize,i,body->Parts()[i]->Positionlist());
188 attachments->setRootIsDecorated(true); 188 attachments->setRootIsDecorated(true);
189 curItem = parentItem; 189 curItem = parentItem;
190 } 190 }
191 else 191 else
192 { 192 {
193 curItem=new AttachItem(attachments,curItem,type,desc,filename,fsize,i,body->Parts()[i]->Positionlist()); 193 curItem=new AttachItem(attachments,curItem,type,desc,filename,fsize,i,body->Parts()[i]->Positionlist());
194 } 194 }
195 } 195 }
196} 196}
197 197
198 198
199void ViewMail::slotShowHtml( bool state ) 199void ViewMail::slotShowHtml( bool state )
200{ 200{
201 m_showHtml = state; 201 m_showHtml = state;
202 setText(); 202 setText();
203} 203}
204 204
205void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int ) 205void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int )
206{ 206{
207 if (!item ) 207 if (!item )
208 return; 208 return;
209 209
210 if ( ( ( AttachItem* )item )->Partnumber() == -1 ) 210 if ( ( ( AttachItem* )item )->Partnumber() == -1 )
211 { 211 {
212 setText(); 212 setText();
213 return; 213 return;
214 } 214 }
215 QPopupMenu *menu = new QPopupMenu(); 215 QPopupMenu *menu = new QPopupMenu();
216 int ret=0; 216 int ret=0;
217 217
218 if ( item->text( 0 ).left( 5 ) == "text/" || item->text(0)=="message/rfc822" ) 218 if ( item->text( 0 ).left( 5 ) == "text/" || item->text(0)=="message/rfc822" )
219 { 219 {
220 menu->insertItem( tr( "Show Text" ), 1 ); 220 menu->insertItem( tr( "Show Text" ), 1 );
221 } 221 }
222 if (item->text(0).left(6)=="image/") { 222 if (item->text(0).left(6)=="image/") {
223 menu->insertItem(tr("Display image preview"),2); 223 menu->insertItem(tr("Display image preview"),2);
224 } 224 }
225 menu->insertItem( tr( "Save Attachment" ), 0 ); 225 menu->insertItem( tr( "Save Attachment" ), 0 );
226 menu->insertSeparator(1); 226 menu->insertSeparator(1);
227 227
228 ret = menu->exec( point, 0 ); 228 ret = menu->exec( point, 0 );
229 229
230 switch(ret) 230 switch(ret)
231 { 231 {
232 case 0: 232 case 0:
233 { 233 {
234 //MimeTypes types; 234 //MimeTypes types;
235 //types.insert( "all", "*" ); 235 //types.insert( "all", "*" );
236 QString str = KFileDialog::getSaveFileName( "/", item->text( 2 ), this ); 236 QString str = KFileDialog::getSaveFileName( "/", item->text( 2 ), this );
237 237
238 if( !str.isEmpty() ) 238 if( !str.isEmpty() )
239 { 239 {
240 encodedString*content = m_recMail->Wrapper()->fetchDecodedPart( m_recMail, m_body->Parts()[ ( ( AttachItem* )item )->Partnumber() ] ); 240 encodedString*content = m_recMail->Wrapper()->fetchDecodedPart( m_recMail, m_body->Parts()[ ( ( AttachItem* )item )->Partnumber() ] );
241 if (content) 241 if (content)
242 { 242 {
243 QFile output(str); 243 QFile output(str);
244 output.open(IO_WriteOnly); 244 output.open(IO_WriteOnly);
245 output.writeBlock(content->Content(),content->Length()); 245 output.writeBlock(content->Content(),content->Length());
246 output.close(); 246 output.close();
247 delete content; 247 delete content;
248 } 248 }
249 } 249 }
250 } 250 }
251 break ; 251 break ;
252 252
253 case 2: 253 case 2:
254 { 254 {
255 QString tmpfile = "/tmp/opiemail-image"; 255 QString tmpfile = "/tmp/opiemail-image";
256 encodedString*content = m_recMail->Wrapper()->fetchDecodedPart( m_recMail, m_body->Parts()[ ( ( AttachItem* )item )->Partnumber() ] ); 256 encodedString*content = m_recMail->Wrapper()->fetchDecodedPart( m_recMail, m_body->Parts()[ ( ( AttachItem* )item )->Partnumber() ] );
257 if (content) { 257 if (content) {
258 QFile output(tmpfile); 258 QFile output(tmpfile);
259 output.open(IO_WriteOnly); 259 output.open(IO_WriteOnly);
260 output.writeBlock(content->Content(),content->Length()); 260 output.writeBlock(content->Content(),content->Length());
261 output.close(); 261 output.close();
262 delete content; 262 delete content;
263 MailImageDlg iview(""); 263 MailImageDlg iview("");
264 iview.setName(tmpfile); 264 iview.setName(tmpfile);
265 KApplication::execDialog(&iview); 265 KApplication::execDialog(&iview);
266 output.remove(); 266 output.remove();
267 } 267 }
268 } 268 }
269 break; 269 break;
270 case 1: 270 case 1:
271 if ( ( ( AttachItem* )item )->Partnumber() == -1 ) 271 if ( ( ( AttachItem* )item )->Partnumber() == -1 )
272 { 272 {
273 setText(); 273 setText();
274 } 274 }
275 else 275 else
276 { 276 {
277 if ( m_recMail->Wrapper() != 0l ) 277 if ( m_recMail->Wrapper() != 0l )
278 { // make sure that there is a wrapper , even after delete or simular actions 278 { // make sure that there is a wrapper , even after delete or simular actions
279 browser->setText( m_recMail->Wrapper()->fetchTextPart( m_recMail, m_body->Parts()[ ( ( AttachItem* )item )->Partnumber() ] ) ); 279 browser->setText( m_recMail->Wrapper()->fetchTextPart( m_recMail, m_body->Parts()[ ( ( AttachItem* )item )->Partnumber() ] ) );
280 } 280 }
281 } 281 }
282 break; 282 break;
283 } 283 }
284 delete menu; 284 delete menu;
285} 285}
286 286
287 287
288void ViewMail::setMail(const RecMailP&mail ) 288void ViewMail::setMail(const RecMailP&mail )
289{ 289{
290 290
291 m_recMail = mail; 291 m_recMail = mail;
292 292
293 m_mail[0] = mail->getFrom(); 293 m_mail[0] = mail->getFrom();
294 m_mail[1] = mail->getSubject(); 294 m_mail[1] = mail->getSubject();
295 m_mail[3] = mail->getDate(); 295 m_mail[3] = mail->getDate();
296 m_mail[4] = mail->Msgid(); 296 m_mail[4] = mail->Msgid();
297 297
298 m_mail2[0] = mail->To(); 298 m_mail2[0] = mail->To();
299 m_mail2[1] = mail->CC(); 299 m_mail2[1] = mail->CC();
300 m_mail2[2] = mail->Bcc(); 300 m_mail2[2] = mail->Bcc();
301 301
302 setText(); 302 setText();
303} 303}
304 304
305 305
306 306
307ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl) 307ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
308 : ViewMailBase(parent, name, fl), _inLoop(false) 308 : ViewMailBase(parent, name, fl), _inLoop(false)
309{ 309{
310 m_gotBody = false; 310 m_gotBody = false;
311 deleted = false; 311 deleted = false;
312 312
313 connect( reply, SIGNAL(activated()), SLOT(slotReply())); 313 connect( reply, SIGNAL(activated()), SLOT(slotReply()));
314 connect( forward, SIGNAL(activated()), SLOT(slotForward())); 314 connect( forward, SIGNAL(activated()), SLOT(slotForward()));
315 connect( deleteMail, SIGNAL( activated() ), SLOT( slotDeleteMail() ) ); 315 connect( deleteMail, SIGNAL( activated() ), SLOT( slotDeleteMail() ) );
316 connect( showHtml, SIGNAL( toggled(bool) ), SLOT( slotShowHtml(bool) ) ); 316 connect( showHtml, SIGNAL( toggled(bool) ), SLOT( slotShowHtml(bool) ) );
317 connect( closeMail, SIGNAL( activated() ), SLOT( close() ) );
317 318
318 attachments->setEnabled(m_gotBody); 319 attachments->setEnabled(m_gotBody);
319 connect( attachments, SIGNAL( clicked(QListViewItem*,const QPoint&, int) ), SLOT( slotItemClicked(QListViewItem*,const QPoint&, int) ) ); 320 connect( attachments, SIGNAL( clicked(QListViewItem*,const QPoint&, int) ), SLOT( slotItemClicked(QListViewItem*,const QPoint&, int) ) );
320 321
321 readConfig(); 322 readConfig();
322 attachments->setSorting(-1); 323 attachments->setSorting(-1);
323} 324}
324 325
325void ViewMail::readConfig() 326void ViewMail::readConfig()
326{ 327{
327 Config cfg( "mail" ); 328 Config cfg( "mail" );
328 cfg.setGroup( "Settings" ); 329 cfg.setGroup( "Settings" );
329 m_showHtml = cfg.readBoolEntry( "showHtml", false ); 330 m_showHtml = cfg.readBoolEntry( "showHtml", false );
330 showHtml->setOn( m_showHtml ); 331 showHtml->setOn( m_showHtml );
331} 332}
332 333
333void ViewMail::setText() 334void ViewMail::setText()
334{ 335{
335 336
336 QString toString; 337 QString toString;
337 QString ccString; 338 QString ccString;
338 QString bccString; 339 QString bccString;
339 340
340 for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it ) 341 for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it )
341 { 342 {
342 toString += (*it); 343 toString += (*it);
343 } 344 }
344 for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it ) 345 for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it )
345 { 346 {
346 ccString += (*it); 347 ccString += (*it);
347 } 348 }
348 for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) 349 for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it )
349 { 350 {
350 bccString += (*it); 351 bccString += (*it);
351 } 352 }
352 353
353 setCaption( tr("E-Mail by %1").arg( m_mail[0] ) ); 354 setCaption( tr("E-Mail by %1").arg( m_mail[0] ) );
354 355
355 m_mailHtml = "<html><body>" 356 m_mailHtml = "<html><body>"
356 "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>" 357 "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>"
357 "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>" 358 "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>"
358 "</td></tr><tr bgcolor=\"#EEEEE6\"><td>" 359 "</td></tr><tr bgcolor=\"#EEEEE6\"><td>"
359 "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>" 360 "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>"
360 "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + 361 "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" +
361 tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" 362 tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>"
362 "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] + 363 "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] +
363 "</td></tr></table><font face=fixed>"; 364 "</td></tr></table><font face=fixed>";
364 365
365 if ( !m_showHtml ) 366 if ( !m_showHtml )
366 { 367 {
367 browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" ); 368 browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" );
368 } 369 }
369 else 370 else
370 { 371 {
371 browser->setText( QString( m_mailHtml) + m_mail[2] + "</font></html>" ); 372 browser->setText( QString( m_mailHtml) + m_mail[2] + "</font></html>" );
372 } 373 }
373 // remove later in favor of a real handling 374 // remove later in favor of a real handling
374 m_gotBody = true; 375 m_gotBody = true;
375} 376}
376 377
377 378
378ViewMail::~ViewMail() 379ViewMail::~ViewMail()
379{ 380{
380 m_recMail->Wrapper()->cleanMimeCache(); 381 m_recMail->Wrapper()->cleanMimeCache();
381 hide(); 382 hide();
382} 383}
383 384
384void ViewMail::hide() 385void ViewMail::hide()
385{ 386{
386 QWidget::hide(); 387 QWidget::hide();
387 388
388 if (_inLoop) 389 if (_inLoop)
389 { 390 {
390 _inLoop = false; 391 _inLoop = false;
391 qApp->exit_loop(); 392 qApp->exit_loop();
392 393
393 } 394 }
394 395
395} 396}
396 397
397void ViewMail::exec() 398void ViewMail::exec()
398{ 399{
399 show(); 400 show();
400 401
401 if (!_inLoop) 402 if (!_inLoop)
402 { 403 {
403 _inLoop = true; 404 _inLoop = true;
404 qApp->enter_loop(); 405 qApp->enter_loop();
405 } 406 }
406 407
407} 408}
408 409
409QString ViewMail::deHtml(const QString &string) 410QString ViewMail::deHtml(const QString &string)
410{ 411{
411 QString string_ = string; 412 QString string_ = string;
412 string_.replace(QRegExp("&"), "&amp;"); 413 string_.replace(QRegExp("&"), "&amp;");
413 string_.replace(QRegExp("<"), "&lt;"); 414 string_.replace(QRegExp("<"), "&lt;");
414 string_.replace(QRegExp(">"), "&gt;"); 415 string_.replace(QRegExp(">"), "&gt;");
415 string_.replace(QRegExp("\\n"), "<br>"); 416 string_.replace(QRegExp("\\n"), "<br>");
416 return string_; 417 return string_;
417} 418}
418 419
419void ViewMail::slotReply() 420void ViewMail::slotReply()
420{ 421{
421 if (!m_gotBody) 422 if (!m_gotBody)
422 { 423 {
423 QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok")); 424 QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok"));
424 return; 425 return;
425 } 426 }
426 427
427 QString rtext; 428 QString rtext;
428 rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose 429 rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose
429 .arg( m_mail[0] ) 430 .arg( m_mail[0] )
430 .arg( m_mail[3] ); 431 .arg( m_mail[3] );
431 432
432 QString text = m_mail[2]; 433 QString text = m_mail[2];
433 QStringList lines = QStringList::split(QRegExp("\\n"), text); 434 QStringList lines = QStringList::split(QRegExp("\\n"), text);
434 QStringList::Iterator it; 435 QStringList::Iterator it;
435 for (it = lines.begin(); it != lines.end(); it++) 436 for (it = lines.begin(); it != lines.end(); it++)
436 { 437 {
437 rtext += "> " + *it + "\n"; 438 rtext += "> " + *it + "\n";
438 } 439 }
439 rtext += "\n"; 440 rtext += "\n";
440 441
441 QString prefix; 442 QString prefix;
442 if ( m_mail[1].find(QRegExp("^Re: .*$")) != -1) prefix = ""; 443 if ( m_mail[1].find(QRegExp("^Re: .*$")) != -1) prefix = "";
443 else prefix = "Re: "; // no i18n on purpose 444 else prefix = "Re: "; // no i18n on purpose
444 445
445 Settings *settings = new Settings(); 446 Settings *settings = new Settings();
446 ComposeMail composer( settings ,this, 0, true); 447 ComposeMail composer( settings ,this, 0, true);
447 if (m_recMail->Replyto().isEmpty()) { 448 if (m_recMail->Replyto().isEmpty()) {
448 composer.setTo( m_recMail->getFrom()); 449 composer.setTo( m_recMail->getFrom());
449 } else { 450 } else {
450 composer.setTo( m_recMail->Replyto()); 451 composer.setTo( m_recMail->Replyto());
451 } 452 }
452 composer.setSubject( prefix + m_mail[1] ); 453 composer.setSubject( prefix + m_mail[1] );
453 composer.setMessage( rtext ); 454 composer.setMessage( rtext );
454 composer.setInReplyTo(m_recMail->Msgid()); 455 composer.setInReplyTo(m_recMail->Msgid());
455 456
456 if ( QDialog::Accepted == KApplication::execDialog( &composer ) ) 457 if ( QDialog::Accepted == KApplication::execDialog( &composer ) )
457 { 458 {
458 m_recMail->Wrapper()->answeredMail(m_recMail); 459 m_recMail->Wrapper()->answeredMail(m_recMail);
459 } 460 }
460} 461}
461 462
462void ViewMail::slotForward() 463void ViewMail::slotForward()
463{ 464{
464 if (!m_gotBody) 465 if (!m_gotBody)
465 { 466 {
466 QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot forward yet."), tr("Ok")); 467 QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot forward yet."), tr("Ok"));
467 return; 468 return;
468 } 469 }
469 470
470 QString ftext; 471 QString ftext;
471 ftext += QString("\n----- Forwarded message from %1 -----\n\n") 472 ftext += QString("\n----- Forwarded message from %1 -----\n\n")
472 .arg( m_mail[0] ); 473 .arg( m_mail[0] );
473 if (!m_mail[3].isNull()) 474 if (!m_mail[3].isNull())
474 ftext += QString("Date: %1\n") 475 ftext += QString("Date: %1\n")
475 .arg( m_mail[3] ); 476 .arg( m_mail[3] );
476 if (!m_mail[0].isNull()) 477 if (!m_mail[0].isNull())
477 ftext += QString("From: %1\n") 478 ftext += QString("From: %1\n")
478 .arg( m_mail[0] ); 479 .arg( m_mail[0] );
479 if (!m_mail[1].isNull()) 480 if (!m_mail[1].isNull())
480 ftext += QString("Subject: %1\n") 481 ftext += QString("Subject: %1\n")
481 .arg( m_mail[1] ); 482 .arg( m_mail[1] );
482 483
483 ftext += QString("\n%1\n") 484 ftext += QString("\n%1\n")
484 .arg( m_mail[2]); 485 .arg( m_mail[2]);
485 486
486 ftext += QString("----- End forwarded message -----\n"); 487 ftext += QString("----- End forwarded message -----\n");
487 488
488 Settings *settings = new Settings(); 489 Settings *settings = new Settings();
489 ComposeMail composer( settings ,this, 0, true); 490 ComposeMail composer( settings ,this, 0, true);
490 composer.setSubject( "Fwd: " + m_mail[1] ); 491 composer.setSubject( "Fwd: " + m_mail[1] );
491 composer.setMessage( ftext ); 492 composer.setMessage( ftext );
492 if ( QDialog::Accepted == KApplication::execDialog( &composer )) 493 if ( QDialog::Accepted == KApplication::execDialog( &composer ))
493 { 494 {
494 } 495 }
495} 496}
496 497
497void ViewMail::slotDeleteMail( ) 498void ViewMail::slotDeleteMail( )
498{ 499{
499 if ( QMessageBox::warning(this, tr("Delete Mail"), QString( tr("<p>Do you really want to delete this mail? <br><br>" ) + m_mail[0] + " - " + m_mail[1] ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) 500 if ( QMessageBox::warning(this, tr("Delete Mail"), QString( tr("<p>Do you really want to delete this mail? <br><br>" ) + m_mail[0] + " - " + m_mail[1] ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes )
500 { 501 {
501 m_recMail->Wrapper()->deleteMail( m_recMail ); 502 m_recMail->Wrapper()->deleteMail( m_recMail );
502 hide(); 503 hide();
503 deleted = true; 504 deleted = true;
504 } 505 }
505} 506}
506 507
507MailImageDlg::MailImageDlg(const QString&fname,QWidget *parent, const char *name, bool modal, WFlags f) 508MailImageDlg::MailImageDlg(const QString&fname,QWidget *parent, const char *name, bool modal, WFlags f)
508 : KDialog(parent,name,modal) 509 : KDialog(parent,name,modal)
509{ 510{
510 QVBoxLayout*dlglayout = new QVBoxLayout(this); 511 QVBoxLayout*dlglayout = new QVBoxLayout(this);
511 dlglayout->setSpacing(2); 512 dlglayout->setSpacing(2);
512 dlglayout->setMargin(1); 513 dlglayout->setMargin(1);
513 //m_imageview = new Opie::MM::OImageScrollView(this); 514 //m_imageview = new Opie::MM::OImageScrollView(this);
514 //dlglayout->addWidget(m_imageview); 515 //dlglayout->addWidget(m_imageview);
515} 516}
516 517
517MailImageDlg::~MailImageDlg() 518MailImageDlg::~MailImageDlg()
518{ 519{
519} 520}
520 521
521void MailImageDlg::setName(const QString&fname) 522void MailImageDlg::setName(const QString&fname)
522{ 523{
523 qDebug("viewmail.cpp: MailImageDlg::setName Pending"); 524 qDebug("viewmail.cpp: MailImageDlg::setName Pending");
524 // m_imageview->setImage(fname); 525 // m_imageview->setImage(fname);
525} 526}