author | harlekin <harlekin> | 2003-12-13 13:45:40 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-12-13 13:45:40 (UTC) |
commit | e1dc235a829398482dddc66b931d6eec840382ec (patch) (unidiff) | |
tree | b4a93390a382eb9ce2f9c9a3703e4f03c3e475e0 | |
parent | 865b023c57f657c8eff26baa670fc76bbcd548e4 (diff) | |
download | opie-e1dc235a829398482dddc66b931d6eec840382ec.zip opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.gz opie-e1dc235a829398482dddc66b931d6eec840382ec.tar.bz2 |
beginning of attachment handling ( user side )
-rw-r--r-- | noncore/net/mail/mainwindow.cpp | 6 | ||||
-rw-r--r-- | noncore/net/mail/viewmail.cpp | 56 | ||||
-rw-r--r-- | noncore/net/mail/viewmail.h | 2 |
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 | |||
@@ -166,6 +166,6 @@ void MainWindow::displayMail(QListViewItem*item) | |||
166 | } | 166 | } |
167 | 167 | ||
168 | MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * after ) | 168 | MailListViewItem::MailListViewItem(QListView * parent, MailListViewItem * item ) |
169 | :QListViewItem(parent,after),mail_data() | 169 | :QListViewItem(parent,item),mail_data() |
170 | { | 170 | { |
171 | } | 171 | } |
@@ -192,2 +192,4 @@ const RecMail& MailListViewItem::data()const | |||
192 | return mail_data; | 192 | return mail_data; |
193 | } | 193 | } |
194 | |||
195 | |||
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 | |||
@@ -3,6 +3,9 @@ | |||
3 | #include <qtextstream.h> | 3 | #include <qtextstream.h> |
4 | #include <qaction.h> | 4 | #include <qaction.h> |
5 | #include <qpopupmenu.h> | ||
5 | #include <qapplication.h> | 6 | #include <qapplication.h> |
6 | 7 | ||
8 | #include <opie/ofiledialog.h> | ||
9 | |||
7 | #include "settings.h" | 10 | #include "settings.h" |
8 | #include "composemail.h" | 11 | #include "composemail.h" |
@@ -17,7 +20,7 @@ AttachItem::AttachItem(QListView * parent,QListViewItem *after, const QString&mi | |||
17 | } | 20 | } |
18 | 21 | ||
19 | |||
20 | void ViewMail::setBody( RecBody body ) { | 22 | void ViewMail::setBody( RecBody body ) { |
21 | 23 | ||
24 | m_body = body; | ||
22 | m_mail[2] = body.Bodytext(); | 25 | m_mail[2] = body.Bodytext(); |
23 | attachbutton->setEnabled(body.Parts().count()>0); | 26 | attachbutton->setEnabled(body.Parts().count()>0); |
@@ -53,5 +56,5 @@ default: | |||
53 | { | 56 | { |
54 | /* I did not found a method to make a CONTENT reset on a QTextStream | 57 | /* I did not found a method to make a CONTENT reset on a QTextStream |
55 | so I use this construct that the stream will re-constructed in each | 58 | so I use this construct that the stream will re-constructed in each |
56 | loop. To let it work, the textstream is packed into a own area of | 59 | loop. To let it work, the textstream is packed into a own area of |
57 | code is it will be destructed after finishing its small job. | 60 | code is it will be destructed after finishing its small job. |
@@ -99,4 +102,46 @@ for (unsigned int i = 0; i < body.Parts().count();++i) { | |||
99 | } | 102 | } |
100 | 103 | ||
104 | void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int c ) { | ||
105 | if (!item ) | ||
106 | return; | ||
107 | |||
108 | QPopupMenu *menu = new QPopupMenu(); | ||
109 | int ret=0; | ||
110 | |||
111 | if ( item->text( 0 ).left( 4 ) == "text" ) { | ||
112 | menu->insertItem( tr( "Show Text" ), 1 ); | ||
113 | } | ||
114 | menu->insertItem( tr( "Save Attachemt" ), 0 ); | ||
115 | menu->insertSeparator(1); | ||
116 | |||
117 | ret = menu->exec( point, 0 ); | ||
118 | |||
119 | switch(ret) { | ||
120 | case 0: | ||
121 | { MimeTypes types; | ||
122 | types.insert( "all", "*" ); | ||
123 | QString str = OFileDialog::getSaveFileName( 1, | ||
124 | "/", item->text( 1 ) , types, 0 ); | ||
125 | |||
126 | if( !str.isEmpty() ) { | ||
127 | qDebug( " first we will need a MIME wrapper" ); | ||
128 | } | ||
129 | } | ||
130 | break ; | ||
131 | |||
132 | case 1: | ||
133 | |||
134 | qDebug( QString( "Test selected" ).arg( ( ( AttachItem* )item )->Partnumber() ) ); | ||
135 | if ( ( ( AttachItem* )item )->Partnumber() == -1 ) { | ||
136 | setText(); | ||
137 | } else { | ||
138 | browser->setText( ( m_body.Parts()[( ( AttachItem* )item )->Partnumber() ] ).Identifier() ); | ||
139 | } | ||
140 | break; | ||
141 | } | ||
142 | delete menu; | ||
143 | } | ||
144 | |||
145 | |||
101 | void ViewMail::setMail( RecMail mail ) { | 146 | void ViewMail::setMail( RecMail mail ) { |
102 | 147 | ||
@@ -124,4 +169,6 @@ ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl) | |||
124 | 169 | ||
125 | attachments->setEnabled(m_gotBody); | 170 | attachments->setEnabled(m_gotBody); |
171 | connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) ); | ||
172 | |||
126 | } | 173 | } |
127 | 174 | ||
@@ -173,5 +220,7 @@ void ViewMail::hide() | |||
173 | _inLoop = false; | 220 | _inLoop = false; |
174 | qApp->exit_loop(); | 221 | qApp->exit_loop(); |
175 | } | 222 | |
223 | } | ||
224 | |||
176 | } | 225 | } |
177 | 226 | ||
@@ -184,4 +233,5 @@ void ViewMail::exec() | |||
184 | qApp->enter_loop(); | 233 | qApp->enter_loop(); |
185 | } | 234 | } |
235 | |||
186 | } | 236 | } |
187 | 237 | ||
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 | |||
@@ -39,4 +39,5 @@ protected slots: | |||
39 | void slotForward(); | 39 | void slotForward(); |
40 | void setText(); | 40 | void setText(); |
41 | void slotItemClicked( QListViewItem * item , const QPoint & point, int c ); | ||
41 | 42 | ||
42 | private: | 43 | private: |
@@ -44,4 +45,5 @@ private: | |||
44 | QString m_mailHtml; | 45 | QString m_mailHtml; |
45 | bool m_gotBody; | 46 | bool m_gotBody; |
47 | RecBody m_body; | ||
46 | 48 | ||
47 | // 0 from 1 subject 2 bodytext 3 date | 49 | // 0 from 1 subject 2 bodytext 3 date |