summaryrefslogtreecommitdiff
path: root/noncore/net/mail/viewmail.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/viewmail.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/viewmail.cpp513
1 files changed, 278 insertions, 235 deletions
diff --git a/noncore/net/mail/viewmail.cpp b/noncore/net/mail/viewmail.cpp
index 99965d4..f015228 100644
--- a/noncore/net/mail/viewmail.cpp
+++ b/noncore/net/mail/viewmail.cpp
@@ -1 +1,15 @@
+#include "composemail.h"
+#include "viewmail.h"
+#include "accountview.h"
+
+/* OPIE */
+#include <libmailwrapper/settings.h>
+#include <libmailwrapper/abstractmail.h>
+#include <libmailwrapper/mailtypes.h>
+
+#include <opie2/ofiledialog.h>
+#include <qpe/config.h>
+#include <qpe/qpeapplication.h>
+
+/* QT */
#include <qtextbrowser.h>
@@ -9,21 +23,10 @@
-#include <qpe/config.h>
-
-#include <opie2/ofiledialog.h>
-
-#include <libmailwrapper/settings.h>
-#include "composemail.h"
-#include "viewmail.h"
-#include <libmailwrapper/abstractmail.h>
-#include "accountview.h"
-#include <libmailwrapper/mailtypes.h>
-
AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mime,const QString&desc,const QString&file,
- const QString&fsize,int num,const QValueList<int>&path)
- : QListViewItem(parent,after),_partNum(num)
+ const QString&fsize,int num,const QValueList<int>&path)
+ : QListViewItem(parent,after),_partNum(num)
{
_path=path;
- setText(0, mime);
- setText(1, desc);
- setText(2, file);
+ setText(0, mime);
+ setText(1, desc);
+ setText(2, file);
setText(3, fsize);
@@ -32,9 +35,9 @@ AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mi
AttachItem::AttachItem(QListViewItem * parent,QListViewItem *after, const QString&mime,const QString&desc,const QString&file,
- const QString&fsize,int num,const QValueList<int>&path)
- : QListViewItem(parent,after),_partNum(num)
+ const QString&fsize,int num,const QValueList<int>&path)
+ : QListViewItem(parent,after),_partNum(num)
{
_path=path;
- setText(0, mime);
- setText(1, desc);
- setText(2, file);
+ setText(0, mime);
+ setText(1, desc);
+ setText(2, file);
setText(3, fsize);
@@ -48,3 +51,4 @@ bool AttachItem::isParentof(const QValueList<int>&path)
if (path.count()!=_path.count()+1) return false;
- for (unsigned int i=0; i < _path.count();++i) {
+ for (unsigned int i=0; i < _path.count();++i)
+ {
if (_path[i]!=path[i]) return false;
@@ -57,3 +61,4 @@ AttachItem* ViewMail::searchParent(const QValueList<int>&path)
QListViewItemIterator it( attachments );
- for ( ; it.current(); ++it ) {
+ for ( ; it.current(); ++it )
+ {
AttachItem*ati = (AttachItem*)it.current();
@@ -70,3 +75,4 @@ AttachItem* ViewMail::lastChild(AttachItem*parent)
AttachItem*temp=0;
- while( (temp=(AttachItem*)item->nextSibling())) {
+ while( (temp=(AttachItem*)item->nextSibling()))
+ {
item = temp;
@@ -76,64 +82,23 @@ AttachItem* ViewMail::lastChild(AttachItem*parent)
-void ViewMail::setBody( RecBody body ) {
-
-m_body = body;
-m_mail[2] = body.Bodytext();
-attachbutton->setEnabled(body.Parts().count()>0);
-attachments->setEnabled(body.Parts().count()>0);
-if (body.Parts().count()==0) {
- return;
-}
-AttachItem * curItem=0;
-AttachItem * parentItem = 0;
-QString type=body.Description().Type()+"/"+body.Description().Subtype();
-QString desc,fsize;
-double s = body.Description().Size();
-int w;
-w=0;
-
-while (s>1024) {
- s/=1024;
- ++w;
- if (w>=2) break;
-}
-
-QString q="";
-switch(w) {
-case 1:
- q="k";
- break;
-case 2:
- q="M";
- break;
-default:
- break;
-}
-
+void ViewMail::setBody( RecBody body )
{
- /* I did not found a method to make a CONTENT reset on a QTextStream
- so I use this construct that the stream will re-constructed in each
- loop. To let it work, the textstream is packed into a own area of
- code is it will be destructed after finishing its small job.
- */
- QTextOStream o(&fsize);
- if (w>0) o.precision(2); else o.precision(0);
- o.setf(QTextStream::fixed);
- o << s << " " << q << "Byte";
-}
-
-curItem=new AttachItem(attachments,curItem,type,"Mailbody","",fsize,-1,body.Description().Positionlist());
-QString filename = "";
-for (unsigned int i = 0; i < body.Parts().count();++i) {
- type = body.Parts()[i].Type()+"/"+body.Parts()[i].Subtype();
- part_plist_t::ConstIterator it = body.Parts()[i].Parameters().begin();
- for (;it!=body.Parts()[i].Parameters().end();++it) {
- qDebug(it.key());
- if (it.key().lower()=="name") {
- filename=it.data();
- }
+ m_body = body;
+ m_mail[2] = body.Bodytext();
+ attachbutton->setEnabled(body.Parts().count()>0);
+ attachments->setEnabled(body.Parts().count()>0);
+ if (body.Parts().count()==0)
+ {
+ return;
}
- s = body.Parts()[i].Size();
- w = 0;
- while (s>1024) {
+ AttachItem * curItem=0;
+ AttachItem * parentItem = 0;
+ QString type=body.Description().Type()+"/"+body.Description().Subtype();
+ QString desc,fsize;
+ double s = body.Description().Size();
+ int w;
+ w=0;
+
+ while (s>1024)
+ {
s/=1024;
@@ -142,3 +107,6 @@ for (unsigned int i = 0; i < body.Parts().count();++i) {
}
- switch(w) {
+
+ QString q="";
+ switch(w)
+ {
case 1:
@@ -150,21 +118,71 @@ for (unsigned int i = 0; i < body.Parts().count();++i) {
default:
- q="";
break;
}
- QTextOStream o(&fsize);
- if (w>0) o.precision(2); else o.precision(0);
- o.setf(QTextStream::fixed);
- o << s << " " << q << "Byte";
- desc = body.Parts()[i].Description();
- parentItem = searchParent(body.Parts()[i].Positionlist());
- if (parentItem) {
- AttachItem*temp = lastChild(parentItem);
- if (temp) curItem = temp;
- curItem=new AttachItem(parentItem,curItem,type,desc,filename,fsize,i,body.Parts()[i].Positionlist());
- attachments->setRootIsDecorated(true);
- curItem = parentItem;
- } else {
- curItem=new AttachItem(attachments,curItem,type,desc,filename,fsize,i,body.Parts()[i].Positionlist());
+
+ {
+ /* I did not found a method to make a CONTENT reset on a QTextStream
+ so I use this construct that the stream will re-constructed in each
+ loop. To let it work, the textstream is packed into a own area of
+ code is it will be destructed after finishing its small job.
+ */
+ QTextOStream o(&fsize);
+ if (w>0) o.precision(2); else o.precision(0);
+ o.setf(QTextStream::fixed);
+ o << s << " " << q << "Byte";
+ }
+
+ curItem=new AttachItem(attachments,curItem,type,"Mailbody","",fsize,-1,body.Description().Positionlist());
+ QString filename = "";
+
+ for (unsigned int i = 0; i < body.Parts().count();++i)
+ {
+ type = body.Parts()[i].Type()+"/"+body.Parts()[i].Subtype();
+ part_plist_t::ConstIterator it = body.Parts()[i].Parameters().begin();
+ for (;it!=body.Parts()[i].Parameters().end();++it)
+ {
+ qDebug(it.key());
+ if (it.key().lower()=="name")
+ {
+ filename=it.data();
+ }
+ }
+ s = body.Parts()[i].Size();
+ w = 0;
+ while (s>1024)
+ {
+ s/=1024;
+ ++w;
+ if (w>=2) break;
+ }
+ switch(w)
+ {
+ case 1:
+ q="k";
+ break;
+ case 2:
+ q="M";
+ break;
+ default:
+ q="";
+ break;
+ }
+ QTextOStream o(&fsize);
+ if (w>0) o.precision(2); else o.precision(0);
+ o.setf(QTextStream::fixed);
+ o << s << " " << q << "Byte";
+ desc = body.Parts()[i].Description();
+ parentItem = searchParent(body.Parts()[i].Positionlist());
+ if (parentItem)
+ {
+ AttachItem*temp = lastChild(parentItem);
+ if (temp) curItem = temp;
+ curItem=new AttachItem(parentItem,curItem,type,desc,filename,fsize,i,body.Parts()[i].Positionlist());
+ attachments->setRootIsDecorated(true);
+ curItem = parentItem;
+ }
+ else
+ {
+ curItem=new AttachItem(attachments,curItem,type,desc,filename,fsize,i,body.Parts()[i].Positionlist());
+ }
}
-}
}
@@ -172,3 +190,4 @@ for (unsigned int i = 0; i < body.Parts().count();++i) {
-void ViewMail::slotShowHtml( bool state ) {
+void ViewMail::slotShowHtml( bool state )
+{
m_showHtml = state;
@@ -177,3 +196,4 @@ void ViewMail::slotShowHtml( bool state ) {
-void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int ) {
+void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int )
+{
if (!item )
@@ -181,3 +201,4 @@ void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int
- if ( ( ( AttachItem* )item )->Partnumber() == -1 ) {
+ if ( ( ( AttachItem* )item )->Partnumber() == -1 )
+ {
setText();
@@ -186,43 +207,52 @@ void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int
QPopupMenu *menu = new QPopupMenu();
- int ret=0;
-
- if ( item->text( 0 ).left( 5 ) == "text/" || item->text(0)=="message/rfc822" ) {
- menu->insertItem( tr( "Show Text" ), 1 );
- }
- menu->insertItem( tr( "Save Attachment" ), 0 );
- menu->insertSeparator(1);
-
- ret = menu->exec( point, 0 );
-
- switch(ret) {
- case 0:
- { MimeTypes types;
- types.insert( "all", "*" );
- QString str = Opie::OFileDialog::getSaveFileName( 1,
- "/", item->text( 2 ) , types, 0 );
-
- if( !str.isEmpty() ) {
- encodedString*content = m_recMail.Wrapper()->fetchDecodedPart( m_recMail, m_body.Parts()[ ( ( AttachItem* )item )->Partnumber() ] );
- if (content) {
- QFile output(str);
- output.open(IO_WriteOnly);
- output.writeBlock(content->Content(),content->Length());
- output.close();
- delete content;
- }
- }
- }
+ int ret=0;
+
+ if ( item->text( 0 ).left( 5 ) == "text/" || item->text(0)=="message/rfc822" )
+ {
+ menu->insertItem( tr( "Show Text" ), 1 );
+ }
+ menu->insertItem( tr( "Save Attachment" ), 0 );
+ menu->insertSeparator(1);
+
+ ret = menu->exec( point, 0 );
+
+ switch(ret)
+ {
+ case 0:
+ {
+ MimeTypes types;
+ types.insert( "all", "*" );
+ QString str = Opie::OFileDialog::getSaveFileName( 1,
+ "/", item->text( 2 ) , types, 0 );
+
+ if( !str.isEmpty() )
+ {
+ encodedString*content = m_recMail.Wrapper()->fetchDecodedPart( m_recMail, m_body.Parts()[ ( ( AttachItem* )item )->Partnumber() ] );
+ if (content)
+ {
+ QFile output(str);
+ output.open(IO_WriteOnly);
+ output.writeBlock(content->Content(),content->Length());
+ output.close();
+ delete content;
+ }
+ }
+ }
break ;
- case 1:
- if ( ( ( AttachItem* )item )->Partnumber() == -1 ) {
- setText();
- } else {
- if ( m_recMail.Wrapper() != 0l ) { // make sure that there is a wrapper , even after delete or simular actions
+ case 1:
+ if ( ( ( AttachItem* )item )->Partnumber() == -1 )
+ {
+ setText();
+ }
+ else
+ {
+ if ( m_recMail.Wrapper() != 0l )
+ { // make sure that there is a wrapper , even after delete or simular actions
browser->setText( m_recMail.Wrapper()->fetchTextPart( m_recMail, m_body.Parts()[ ( ( AttachItem* )item )->Partnumber() ] ) );
- }
- }
+ }
+ }
break;
- }
- delete menu;
+ }
+ delete menu;
}
@@ -230,3 +260,4 @@ void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int
-void ViewMail::setMail( RecMail mail ) {
+void ViewMail::setMail( RecMail mail )
+{
@@ -249,16 +280,16 @@ void ViewMail::setMail( RecMail mail ) {
ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
- : ViewMailBase(parent, name, fl), _inLoop(false)
+ : ViewMailBase(parent, name, fl), _inLoop(false)
{
- m_gotBody = false;
- deleted = false;
+ m_gotBody = false;
+ deleted = false;
- connect( reply, SIGNAL(activated()), SLOT(slotReply()));
- connect( forward, SIGNAL(activated()), SLOT(slotForward()));
- connect( deleteMail, SIGNAL( activated() ), SLOT( slotDeleteMail( ) ) );
- connect( showHtml, SIGNAL( toggled( bool ) ), SLOT( slotShowHtml( bool ) ) );
+ connect( reply, SIGNAL(activated()), SLOT(slotReply()));
+ connect( forward, SIGNAL(activated()), SLOT(slotForward()));
+ connect( deleteMail, SIGNAL( activated() ), SLOT( slotDeleteMail( ) ) );
+ connect( showHtml, SIGNAL( toggled( bool ) ), SLOT( slotShowHtml( bool ) ) );
- attachments->setEnabled(m_gotBody);
- connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) );
+ attachments->setEnabled(m_gotBody);
+ connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) );
- readConfig();
+ readConfig();
attachments->setSorting(-1);
@@ -266,3 +297,4 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
-void ViewMail::readConfig() {
+void ViewMail::readConfig()
+{
Config cfg( "mail" );
@@ -280,9 +312,12 @@ void ViewMail::setText()
- for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it ) {
+ for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it )
+ {
toString += (*it);
}
- for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it ) {
+ for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it )
+ {
ccString += (*it);
}
- for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) {
+ for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it )
+ {
bccString += (*it);
@@ -302,6 +337,9 @@ void ViewMail::setText()
- if ( !m_showHtml ) {
- browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" );
- } else {
- browser->setText( QString( m_mailHtml) + m_mail[2] + "</font></html>" );
+ if ( !m_showHtml )
+ {
+ browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" );
+ }
+ else
+ {
+ browser->setText( QString( m_mailHtml) + m_mail[2] + "</font></html>" );
}
@@ -315,3 +353,3 @@ ViewMail::~ViewMail()
m_recMail.Wrapper()->cleanMimeCache();
- hide();
+ hide();
}
@@ -320,9 +358,10 @@ void ViewMail::hide()
{
- QWidget::hide();
+ QWidget::hide();
- if (_inLoop) {
- _inLoop = false;
- qApp->exit_loop();
+ if (_inLoop)
+ {
+ _inLoop = false;
+ qApp->exit_loop();
- }
+ }
@@ -332,8 +371,9 @@ void ViewMail::exec()
{
- show();
+ show();
- if (!_inLoop) {
- _inLoop = true;
- qApp->enter_loop();
- }
+ if (!_inLoop)
+ {
+ _inLoop = true;
+ qApp->enter_loop();
+ }
@@ -343,8 +383,8 @@ QString ViewMail::deHtml(const QString &string)
{
- QString string_ = string;
- string_.replace(QRegExp("&"), "&amp;");
- string_.replace(QRegExp("<"), "&lt;");
- string_.replace(QRegExp(">"), "&gt;");
- string_.replace(QRegExp("\\n"), "<br>");
- return string_;
+ QString string_ = string;
+ string_.replace(QRegExp("&"), "&amp;");
+ string_.replace(QRegExp("<"), "&lt;");
+ string_.replace(QRegExp(">"), "&gt;");
+ string_.replace(QRegExp("\\n"), "<br>");
+ return string_;
}
@@ -353,31 +393,33 @@ void ViewMail::slotReply()
{
- if (!m_gotBody) {
- QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok"));
- return;
- }
-
- QString rtext;
- rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose
- .arg( m_mail[0] )
- .arg( m_mail[3] );
-
- QString text = m_mail[2];
- QStringList lines = QStringList::split(QRegExp("\\n"), text);
- QStringList::Iterator it;
- for (it = lines.begin(); it != lines.end(); it++) {
- rtext += "> " + *it + "\n";
- }
- rtext += "\n";
-
- QString prefix;
- if ( m_mail[1].find(QRegExp("^Re: *$")) != -1) prefix = "";
- else prefix = "Re: "; // no i18n on purpose
-
- Settings *settings = new Settings();
- ComposeMail composer( settings ,this, 0, true);
- composer.setTo( m_mail[0] );
- composer.setSubject( "Re: " + m_mail[1] );
- composer.setMessage( rtext );
- composer.showMaximized();
- if ( QDialog::Accepted==composer.exec()) {
+ if (!m_gotBody)
+ {
+ QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok"));
+ return;
+ }
+
+ QString rtext;
+ rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose
+ .arg( m_mail[0] )
+ .arg( m_mail[3] );
+
+ QString text = m_mail[2];
+ QStringList lines = QStringList::split(QRegExp("\\n"), text);
+ QStringList::Iterator it;
+ for (it = lines.begin(); it != lines.end(); it++)
+ {
+ rtext += "> " + *it + "\n";
+ }
+ rtext += "\n";
+
+ QString prefix;
+ if ( m_mail[1].find(QRegExp("^Re: *$")) != -1) prefix = "";
+ else prefix = "Re: "; // no i18n on purpose
+
+ Settings *settings = new Settings();
+ ComposeMail composer( settings ,this, 0, true);
+ composer.setTo( m_mail[0] );
+ composer.setSubject( "Re: " + m_mail[1] );
+ composer.setMessage( rtext );
+ if ( QDialog::Accepted == QPEApplication::execDialog( &composer ) )
+ {
m_recMail.Wrapper()->answeredMail(m_recMail);
@@ -388,32 +430,32 @@ void ViewMail::slotForward()
{
- if (!m_gotBody) {
- QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot forward yet."), tr("Ok"));
- return;
- }
-
- QString ftext;
- ftext += QString("\n----- Forwarded message from %1 -----\n\n")
- .arg( m_mail[0] );
- if (!m_mail[3].isNull())
- ftext += QString("Date: %1\n")
- .arg( m_mail[3] );
- if (!m_mail[0].isNull())
- ftext += QString("From: %1\n")
- .arg( m_mail[0] );
- if (!m_mail[1].isNull())
- ftext += QString("Subject: %1\n")
- .arg( m_mail[1] );
-
- ftext += QString("\n%1\n")
- .arg( m_mail[2]);
-
- ftext += QString("----- End forwarded message -----\n");
-
- Settings *settings = new Settings();
- ComposeMail composer( settings ,this, 0, true);
- composer.setSubject( "Fwd: " + m_mail[1] );
- composer.setMessage( ftext );
- composer.showMaximized();
- if ( QDialog::Accepted==composer.exec()) {
+ if (!m_gotBody)
+ {
+ QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot forward yet."), tr("Ok"));
+ return;
+ }
+ QString ftext;
+ ftext += QString("\n----- Forwarded message from %1 -----\n\n")
+ .arg( m_mail[0] );
+ if (!m_mail[3].isNull())
+ ftext += QString("Date: %1\n")
+ .arg( m_mail[3] );
+ if (!m_mail[0].isNull())
+ ftext += QString("From: %1\n")
+ .arg( m_mail[0] );
+ if (!m_mail[1].isNull())
+ ftext += QString("Subject: %1\n")
+ .arg( m_mail[1] );
+
+ ftext += QString("\n%1\n")
+ .arg( m_mail[2]);
+
+ ftext += QString("----- End forwarded message -----\n");
+
+ Settings *settings = new Settings();
+ ComposeMail composer( settings ,this, 0, true);
+ composer.setSubject( "Fwd: " + m_mail[1] );
+ composer.setMessage( ftext );
+ if ( QDialog::Accepted == QPEApplication::execDialog( &composer ))
+ {
}
@@ -423,3 +465,4 @@ void ViewMail::slotDeleteMail( )
{
- 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 ) {
+ 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 )
+ {
m_recMail.Wrapper()->deleteMail( m_recMail );