From e1dc235a829398482dddc66b931d6eec840382ec Mon Sep 17 00:00:00 2001 From: harlekin Date: Sat, 13 Dec 2003 13:45:40 +0000 Subject: beginning of attachment handling ( user side ) --- (limited to 'noncore') 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 @@ -165,8 +165,8 @@ void MainWindow::displayMail(QListViewItem*item) ( (MailListViewItem*)item )->setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgunseen") ); } -MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * after ) - :QListViewItem(parent,after),mail_data() +MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * item ) + :QListViewItem(parent,item),mail_data() { } @@ -191,3 +191,5 @@ const RecMail& MailListViewItem::data()const { return mail_data; } + + 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 @@ -2,8 +2,11 @@ #include #include #include +#include #include +#include + #include "settings.h" #include "composemail.h" #include "viewmail.h" @@ -16,9 +19,9 @@ AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mi 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); @@ -52,7 +55,7 @@ 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 code is it will be destructed after finishing its small job. */ @@ -98,6 +101,48 @@ 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 ) { m_mail[0] = mail.getFrom(); @@ -123,6 +168,8 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl) 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() @@ -172,7 +219,9 @@ void ViewMail::hide() if (_inLoop) { _inLoop = false; qApp->exit_loop(); - } + + } + } void ViewMail::exec() @@ -183,6 +232,7 @@ void ViewMail::exec() _inLoop = true; qApp->enter_loop(); } + } QString ViewMail::deHtml(const QString &string) 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 @@ -38,11 +38,13 @@ protected slots: void slotReply(); void slotForward(); void setText(); + void slotItemClicked( QListViewItem * item , const QPoint & point, int c ); private: bool _inLoop; QString m_mailHtml; bool m_gotBody; + RecBody m_body; // 0 from 1 subject 2 bodytext 3 date QMap m_mail; -- cgit v0.9.0.2