summaryrefslogtreecommitdiff
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
parent865b023c57f657c8eff26baa670fc76bbcd548e4 (diff)
downloadopie-e1dc235a829398482dddc66b931d6eec840382ec.zip
opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.gz
opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.bz2
beginning of attachment handling ( user side )
Diffstat (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
@@ -167,4 +167,4 @@ void MainWindow::displayMail(QListViewItem*item)
-MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * after )
- :QListViewItem(parent,after),mail_data()
+MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * item )
+ :QListViewItem(parent,item),mail_data()
{
@@ -193 +193,3 @@ const RecMail& MailListViewItem::data()const
}
+
+
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
@@ -4,4 +4,7 @@
#include <qaction.h>
+#include <qpopupmenu.h>
#include <qapplication.h>
+#include <opie/ofiledialog.h>
+
#include "settings.h"
@@ -18,5 +21,5 @@ AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mi
-
void ViewMail::setBody( RecBody body ) {
+m_body = body;
m_mail[2] = body.Bodytext();
@@ -54,3 +57,3 @@ default:
/* 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
@@ -100,2 +103,44 @@ for (unsigned int i = 0; i < body.Parts().count();++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 ) {
@@ -125,2 +170,4 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl)
attachments->setEnabled(m_gotBody);
+ connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) );
+
}
@@ -174,3 +221,5 @@ void ViewMail::hide()
qApp->exit_loop();
- }
+
+ }
+
}
@@ -185,2 +234,3 @@ void ViewMail::exec()
}
+
}
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
@@ -40,2 +40,3 @@ protected slots:
void setText();
+ void slotItemClicked( QListViewItem * item , const QPoint & point, int c );
@@ -45,2 +46,3 @@ private:
bool m_gotBody;
+ RecBody m_body;