author | harlekin <harlekin> | 2003-12-17 00:28:53 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-12-17 00:28:53 (UTC) |
commit | 27151bb106e2cbd7f649dae228189ebcaccd7aac (patch) (unidiff) | |
tree | 8b4bf245e609eaedb8a5a150c2d2fd68ded0a6ca | |
parent | fb054f9c69224e14f446f405098bd5166377f58d (diff) | |
download | opie-27151bb106e2cbd7f649dae228189ebcaccd7aac.zip opie-27151bb106e2cbd7f649dae228189ebcaccd7aac.tar.gz opie-27151bb106e2cbd7f649dae228189ebcaccd7aac.tar.bz2 |
only refresh mailbox view if the mail was deleted, not allways
-rw-r--r-- | noncore/net/mail/viewmail.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/net/mail/viewmail.cpp b/noncore/net/mail/viewmail.cpp index 0947879..d86454c 100644 --- a/noncore/net/mail/viewmail.cpp +++ b/noncore/net/mail/viewmail.cpp | |||
@@ -123,136 +123,138 @@ void ViewMail::slotItemClicked( QListViewItem * item , const QPoint & point, int | |||
123 | if ( item->text( 0 ).left( 5 ) == "text/" ) { | 123 | if ( item->text( 0 ).left( 5 ) == "text/" ) { |
124 | menu->insertItem( tr( "Show Text" ), 1 ); | 124 | menu->insertItem( tr( "Show Text" ), 1 ); |
125 | } | 125 | } |
126 | menu->insertItem( tr( "Save Attachment" ), 0 ); | 126 | menu->insertItem( tr( "Save Attachment" ), 0 ); |
127 | menu->insertSeparator(1); | 127 | menu->insertSeparator(1); |
128 | 128 | ||
129 | ret = menu->exec( point, 0 ); | 129 | ret = menu->exec( point, 0 ); |
130 | 130 | ||
131 | switch(ret) { | 131 | switch(ret) { |
132 | case 0: | 132 | case 0: |
133 | { MimeTypes types; | 133 | { MimeTypes types; |
134 | types.insert( "all", "*" ); | 134 | types.insert( "all", "*" ); |
135 | QString str = OFileDialog::getSaveFileName( 1, | 135 | QString str = OFileDialog::getSaveFileName( 1, |
136 | "/", item->text( 2 ) , types, 0 ); | 136 | "/", item->text( 2 ) , types, 0 ); |
137 | 137 | ||
138 | if( !str.isEmpty() ) { | 138 | if( !str.isEmpty() ) { |
139 | encodedString*content = m_recMail.Wrapper()->fetchDecodedPart( m_recMail, m_body.Parts()[ ( ( AttachItem* )item )->Partnumber() ] ); | 139 | encodedString*content = m_recMail.Wrapper()->fetchDecodedPart( m_recMail, m_body.Parts()[ ( ( AttachItem* )item )->Partnumber() ] ); |
140 | if (content) { | 140 | if (content) { |
141 | QFile output(str); | 141 | QFile output(str); |
142 | output.open(IO_WriteOnly); | 142 | output.open(IO_WriteOnly); |
143 | output.writeBlock(content->Content(),content->Length()); | 143 | output.writeBlock(content->Content(),content->Length()); |
144 | output.close(); | 144 | output.close(); |
145 | delete content; | 145 | delete content; |
146 | } | 146 | } |
147 | } | 147 | } |
148 | } | 148 | } |
149 | break ; | 149 | break ; |
150 | 150 | ||
151 | case 1: | 151 | case 1: |
152 | if ( ( ( AttachItem* )item )->Partnumber() == -1 ) { | 152 | if ( ( ( AttachItem* )item )->Partnumber() == -1 ) { |
153 | setText(); | 153 | setText(); |
154 | } else { | 154 | } else { |
155 | if ( m_recMail.Wrapper() != 0l ) { // make sure that there is a wrapper , even after delete or simular actions | 155 | if ( m_recMail.Wrapper() != 0l ) { // make sure that there is a wrapper , even after delete or simular actions |
156 | browser->setText( m_recMail.Wrapper()->fetchTextPart( m_recMail, m_body.Parts()[ ( ( AttachItem* )item )->Partnumber() ] ) ); | 156 | browser->setText( m_recMail.Wrapper()->fetchTextPart( m_recMail, m_body.Parts()[ ( ( AttachItem* )item )->Partnumber() ] ) ); |
157 | } | 157 | } |
158 | } | 158 | } |
159 | break; | 159 | break; |
160 | } | 160 | } |
161 | delete menu; | 161 | delete menu; |
162 | } | 162 | } |
163 | 163 | ||
164 | 164 | ||
165 | void ViewMail::setMail( RecMail mail ) { | 165 | void ViewMail::setMail( RecMail mail ) { |
166 | 166 | ||
167 | m_recMail = mail; | 167 | m_recMail = mail; |
168 | 168 | ||
169 | m_mail[0] = mail.getFrom(); | 169 | m_mail[0] = mail.getFrom(); |
170 | m_mail[1] = mail.getSubject(); | 170 | m_mail[1] = mail.getSubject(); |
171 | m_mail[3] = mail.getDate(); | 171 | m_mail[3] = mail.getDate(); |
172 | m_mail[4] = mail.Msgid(); | 172 | m_mail[4] = mail.Msgid(); |
173 | 173 | ||
174 | m_mail2[0] = mail.To(); | 174 | m_mail2[0] = mail.To(); |
175 | m_mail2[1] = mail.CC(); | 175 | m_mail2[1] = mail.CC(); |
176 | m_mail2[2] = mail.Bcc(); | 176 | m_mail2[2] = mail.Bcc(); |
177 | 177 | ||
178 | setText(); | 178 | setText(); |
179 | } | 179 | } |
180 | 180 | ||
181 | 181 | ||
182 | 182 | ||
183 | ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl) | 183 | ViewMail::ViewMail( QWidget *parent, const char *name, WFlags fl) |
184 | : ViewMailBase(parent, name, fl), _inLoop(false) | 184 | : ViewMailBase(parent, name, fl), _inLoop(false) |
185 | { | 185 | { |
186 | m_gotBody = false; | 186 | m_gotBody = false; |
187 | deleted = false; | ||
187 | 188 | ||
188 | connect(reply, SIGNAL(activated()), SLOT(slotReply())); | 189 | connect(reply, SIGNAL(activated()), SLOT(slotReply())); |
189 | connect(forward, SIGNAL(activated()), SLOT(slotForward())); | 190 | connect(forward, SIGNAL(activated()), SLOT(slotForward())); |
190 | connect( deleteMail, SIGNAL( activated() ), SLOT( slotDeleteMail( ) ) ); | 191 | connect( deleteMail, SIGNAL( activated() ), SLOT( slotDeleteMail( ) ) ); |
191 | 192 | ||
192 | attachments->setEnabled(m_gotBody); | 193 | attachments->setEnabled(m_gotBody); |
193 | connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) ); | 194 | connect( attachments, SIGNAL( clicked ( QListViewItem *, const QPoint & , int ) ), SLOT( slotItemClicked( QListViewItem *, const QPoint & , int ) ) ); |
194 | 195 | ||
196 | |||
195 | } | 197 | } |
196 | 198 | ||
197 | void ViewMail::setText() | 199 | void ViewMail::setText() |
198 | { | 200 | { |
199 | 201 | ||
200 | QString toString; | 202 | QString toString; |
201 | QString ccString; | 203 | QString ccString; |
202 | QString bccString; | 204 | QString bccString; |
203 | 205 | ||
204 | for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it ) { | 206 | for ( QStringList::Iterator it = ( m_mail2[0] ).begin(); it != ( m_mail2[0] ).end(); ++it ) { |
205 | toString += (*it); | 207 | toString += (*it); |
206 | } | 208 | } |
207 | for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it ) { | 209 | for ( QStringList::Iterator it = ( m_mail2[1] ).begin(); it != ( m_mail2[1] ).end(); ++it ) { |
208 | ccString += (*it); | 210 | ccString += (*it); |
209 | } | 211 | } |
210 | for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) { | 212 | for ( QStringList::Iterator it = ( m_mail2[2] ).begin(); it != ( m_mail2[2] ).end(); ++it ) { |
211 | bccString += (*it); | 213 | bccString += (*it); |
212 | } | 214 | } |
213 | 215 | ||
214 | setCaption( caption().arg( m_mail[0] ) ); | 216 | setCaption( caption().arg( m_mail[0] ) ); |
215 | 217 | ||
216 | m_mailHtml = "<html><body>" | 218 | m_mailHtml = "<html><body>" |
217 | "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>" | 219 | "<table width=\"100%\" border=\"0\"><tr bgcolor=\"#FFDD76\"><td>" |
218 | "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>" | 220 | "<div align=left><b>" + deHtml( m_mail[1] ) + "</b></div>" |
219 | "</td></tr><tr bgcolor=\"#EEEEE6\"><td>" | 221 | "</td></tr><tr bgcolor=\"#EEEEE6\"><td>" |
220 | "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>" | 222 | "<b>" + tr( "From" ) + ": </b><font color=#6C86C0>" + deHtml( m_mail[0] ) + "</font><br>" |
221 | "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + | 223 | "<b>" + tr( "To" ) + ": </b><font color=#6C86C0>" + deHtml( toString ) + "</font><br><b>" + |
222 | tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" | 224 | tr( "Cc" ) + ": </b>" + deHtml( ccString ) + "<br>" |
223 | "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] + | 225 | "<b>" + tr( "Date" ) + ": </b> " + m_mail[3] + |
224 | "</td></tr></table><font face=fixed>"; | 226 | "</td></tr></table><font face=fixed>"; |
225 | 227 | ||
226 | browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" ); | 228 | browser->setText( QString( m_mailHtml) + deHtml( m_mail[2] ) + "</font></html>" ); |
227 | // remove later in favor of a real handling | 229 | // remove later in favor of a real handling |
228 | m_gotBody = true; | 230 | m_gotBody = true; |
229 | } | 231 | } |
230 | 232 | ||
231 | 233 | ||
232 | ViewMail::~ViewMail() | 234 | ViewMail::~ViewMail() |
233 | { | 235 | { |
234 | hide(); | 236 | hide(); |
235 | } | 237 | } |
236 | 238 | ||
237 | void ViewMail::hide() | 239 | void ViewMail::hide() |
238 | { | 240 | { |
239 | QWidget::hide(); | 241 | QWidget::hide(); |
240 | 242 | ||
241 | if (_inLoop) { | 243 | if (_inLoop) { |
242 | _inLoop = false; | 244 | _inLoop = false; |
243 | qApp->exit_loop(); | 245 | qApp->exit_loop(); |
244 | 246 | ||
245 | } | 247 | } |
246 | 248 | ||
247 | } | 249 | } |
248 | 250 | ||
249 | void ViewMail::exec() | 251 | void ViewMail::exec() |
250 | { | 252 | { |
251 | show(); | 253 | show(); |
252 | 254 | ||
253 | if (!_inLoop) { | 255 | if (!_inLoop) { |
254 | _inLoop = true; | 256 | _inLoop = true; |
255 | qApp->enter_loop(); | 257 | qApp->enter_loop(); |
256 | } | 258 | } |
257 | 259 | ||
258 | } | 260 | } |
@@ -272,76 +274,76 @@ void ViewMail::slotReply() | |||
272 | if (!m_gotBody) { | 274 | if (!m_gotBody) { |
273 | QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok")); | 275 | QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot reply yet."), tr("Ok")); |
274 | return; | 276 | return; |
275 | } | 277 | } |
276 | 278 | ||
277 | QString rtext; | 279 | QString rtext; |
278 | rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose | 280 | rtext += QString("* %1 wrote on %2:\n") // no i18n on purpose |
279 | .arg( m_mail[0] ) | 281 | .arg( m_mail[0] ) |
280 | .arg( m_mail[3] ); | 282 | .arg( m_mail[3] ); |
281 | 283 | ||
282 | QString text = m_mail[2]; | 284 | QString text = m_mail[2]; |
283 | QStringList lines = QStringList::split(QRegExp("\\n"), text); | 285 | QStringList lines = QStringList::split(QRegExp("\\n"), text); |
284 | QStringList::Iterator it; | 286 | QStringList::Iterator it; |
285 | for (it = lines.begin(); it != lines.end(); it++) { | 287 | for (it = lines.begin(); it != lines.end(); it++) { |
286 | rtext += "> " + *it + "\n"; | 288 | rtext += "> " + *it + "\n"; |
287 | } | 289 | } |
288 | rtext += "\n"; | 290 | rtext += "\n"; |
289 | 291 | ||
290 | QString prefix; | 292 | QString prefix; |
291 | if ( m_mail[1].find(QRegExp("^Re: *$")) != -1) prefix = ""; | 293 | if ( m_mail[1].find(QRegExp("^Re: *$")) != -1) prefix = ""; |
292 | else prefix = "Re: "; // no i18n on purpose | 294 | else prefix = "Re: "; // no i18n on purpose |
293 | 295 | ||
294 | Settings *settings = new Settings(); | 296 | Settings *settings = new Settings(); |
295 | ComposeMail composer( settings ,this, 0, true); | 297 | ComposeMail composer( settings ,this, 0, true); |
296 | composer.setTo( m_mail[0] ); | 298 | composer.setTo( m_mail[0] ); |
297 | composer.setSubject( "Re: " + m_mail[1] ); | 299 | composer.setSubject( "Re: " + m_mail[1] ); |
298 | composer.setMessage( rtext ); | 300 | composer.setMessage( rtext ); |
299 | composer.showMaximized(); | 301 | composer.showMaximized(); |
300 | if ( QDialog::Accepted==composer.exec()) { | 302 | if ( QDialog::Accepted==composer.exec()) { |
301 | m_recMail.Wrapper()->answeredMail(m_recMail); | 303 | m_recMail.Wrapper()->answeredMail(m_recMail); |
302 | } | 304 | } |
303 | } | 305 | } |
304 | 306 | ||
305 | void ViewMail::slotForward() | 307 | void ViewMail::slotForward() |
306 | { | 308 | { |
307 | if (!m_gotBody) { | 309 | if (!m_gotBody) { |
308 | QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot forward yet."), tr("Ok")); | 310 | QMessageBox::information(this, tr("Error"), tr("<p>The mail body is not yet downloaded, so you cannot forward yet."), tr("Ok")); |
309 | return; | 311 | return; |
310 | } | 312 | } |
311 | 313 | ||
312 | QString ftext; | 314 | QString ftext; |
313 | ftext += QString("\n----- Forwarded message from %1 -----\n\n") | 315 | ftext += QString("\n----- Forwarded message from %1 -----\n\n") |
314 | .arg( m_mail[0] ); | 316 | .arg( m_mail[0] ); |
315 | if (!m_mail[3].isNull()) | 317 | if (!m_mail[3].isNull()) |
316 | ftext += QString("Date: %1\n") | 318 | ftext += QString("Date: %1\n") |
317 | .arg( m_mail[3] ); | 319 | .arg( m_mail[3] ); |
318 | if (!m_mail[0].isNull()) | 320 | if (!m_mail[0].isNull()) |
319 | ftext += QString("From: %1\n") | 321 | ftext += QString("From: %1\n") |
320 | .arg( m_mail[0] ); | 322 | .arg( m_mail[0] ); |
321 | if (!m_mail[1].isNull()) | 323 | if (!m_mail[1].isNull()) |
322 | ftext += QString("Subject: %1\n") | 324 | ftext += QString("Subject: %1\n") |
323 | .arg( m_mail[1] ); | 325 | .arg( m_mail[1] ); |
324 | 326 | ||
325 | ftext += QString("\n%1\n") | 327 | ftext += QString("\n%1\n") |
326 | .arg( m_mail[2]); | 328 | .arg( m_mail[2]); |
327 | 329 | ||
328 | ftext += QString("----- End forwarded message -----\n"); | 330 | ftext += QString("----- End forwarded message -----\n"); |
329 | 331 | ||
330 | Settings *settings = new Settings(); | 332 | Settings *settings = new Settings(); |
331 | ComposeMail composer( settings ,this, 0, true); | 333 | ComposeMail composer( settings ,this, 0, true); |
332 | composer.setSubject( "Fwd: " + m_mail[1] ); | 334 | composer.setSubject( "Fwd: " + m_mail[1] ); |
333 | composer.setMessage( ftext ); | 335 | composer.setMessage( ftext ); |
334 | composer.showMaximized(); | 336 | composer.showMaximized(); |
335 | if ( QDialog::Accepted==composer.exec()) { | 337 | if ( QDialog::Accepted==composer.exec()) { |
336 | 338 | ||
337 | } | 339 | } |
338 | } | 340 | } |
339 | 341 | ||
340 | void ViewMail::slotDeleteMail( ) | 342 | void ViewMail::slotDeleteMail( ) |
341 | { | 343 | { |
342 | 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 ) { | 344 | 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 ) { |
343 | m_recMail.Wrapper()->deleteMail( m_recMail ); | 345 | m_recMail.Wrapper()->deleteMail( m_recMail ); |
344 | hide(); | 346 | hide(); |
345 | deleted = true; | 347 | deleted = true; |
346 | } | 348 | } |
347 | } | 349 | } |