summaryrefslogtreecommitdiff
path: root/noncore/net/mail/viewmail.cpp
authorharlekin <harlekin>2003-12-13 13:45:40 (UTC)
committer harlekin <harlekin>2003-12-13 13:45:40 (UTC)
commite1dc235a829398482dddc66b931d6eec840382ec (patch) (side-by-side diff)
treeb4a93390a382eb9ce2f9c9a3703e4f03c3e475e0 /noncore/net/mail/viewmail.cpp
parent865b023c57f657c8eff26baa670fc76bbcd548e4 (diff)
downloadopie-e1dc235a829398482dddc66b931d6eec840382ec.zip
opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.gz
opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.bz2
beginning of attachment handling ( user side )
Diffstat (limited to 'noncore/net/mail/viewmail.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/viewmail.cpp56
1 files changed, 53 insertions, 3 deletions
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,27 +1,30 @@
#include <qtextbrowser.h>
#include <qmessagebox.h>
#include <qtextstream.h>
#include <qaction.h>
+#include <qpopupmenu.h>
#include <qapplication.h>
+#include <opie/ofiledialog.h>
+
#include "settings.h"
#include "composemail.h"
#include "viewmail.h"
AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mime,const QString&file,const QString&desc,int num)
: QListViewItem(parent,after),_partNum(num)
{
setText(0, mime);
setText(1, file);
setText(2, desc);
}
-
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;
}
@@ -49,13 +52,13 @@ case 2:
default:
break;
}
{
/* 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
+ 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(&desc);
if (w>0) o.precision(2); else o.precision(0);
o.setf(QTextStream::fixed);
@@ -95,12 +98,54 @@ for (unsigned int i = 0; i < body.Parts().count();++i) {
o.setf(QTextStream::fixed);
o << s << " " << q << "Byte";
curItem=new AttachItem(attachments,curItem,type,filename,desc,i);
}
}
+void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int c ) {
+ if (!item )
+ return;
+
+ QPopupMenu *menu = new QPopupMenu();
+ int ret=0;
+
+ if ( item->text( 0 ).left( 4 ) == "text" ) {
+ menu->insertItem( tr( "Show Text" ), 1 );
+ }
+ menu->insertItem( tr( "Save Attachemt" ), 0 );
+ menu->insertSeparator(1);
+
+ ret = menu->exec( point, 0 );
+
+ switch(ret) {
+ case 0:
+ { MimeTypes types;
+ types.insert( "all", "*" );
+ QString str = OFileDialog::getSaveFileName( 1,
+ "/", item->text( 1 ) , types, 0 );
+
+ if( !str.isEmpty() ) {
+ qDebug( " first we will need a MIME wrapper" );
+ }
+ }
+ break ;
+
+ case 1:
+
+ qDebug( QString( "Test selected" ).arg( ( ( AttachItem* )item )->Partnumber() ) );
+ if ( ( ( AttachItem* )item )->Partnumber() == -1 ) {
+ setText();
+ } else {
+ browser->setText( ( m_body.Parts()[( ( AttachItem* )item )->Partnumber() ] ).Identifier() );
+ }
+ break;
+ }
+ delete menu;
+}
+
+
void ViewMail::setMail( RecMail mail ) {
m_mail[0] = mail.getFrom();
m_mail[1] = mail.getSubject();
m_mail[3] = mail.getDate();
m_mail[4] = mail.Msgid();
@@ -120,12 +165,14 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
m_gotBody = false;
connect(reply, SIGNAL(activated()), SLOT(slotReply()));
connect(forward, SIGNAL(activated()), SLOT(slotForward()));
attachments->setEnabled(m_gotBody);
+ connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) );
+
}
void ViewMail::setText()
{
QString toString;
@@ -169,23 +216,26 @@ void ViewMail::hide()
{
QWidget::hide();
if (_inLoop) {
_inLoop = false;
qApp->exit_loop();
- }
+
+ }
+
}
void ViewMail::exec()
{
show();
if (!_inLoop) {
_inLoop = true;
qApp->enter_loop();
}
+
}
QString ViewMail::deHtml(const QString &string)
{
QString string_ = string;
string_.replace(QRegExp("&"), "&amp;");