summaryrefslogtreecommitdiffabout
path: root/kmicromail/opiemail.cpp
authorzautrix <zautrix>2005-06-19 08:07:46 (UTC)
committer zautrix <zautrix>2005-06-19 08:07:46 (UTC)
commit98f69fd81c23d99d9fe80326d4bc4d3af23e18ec (patch) (unidiff)
tree06472b263700b7d07030876c33f2535bf3ae51cb /kmicromail/opiemail.cpp
parenta2e963324e6db541f322002c307b40f24747e036 (diff)
downloadkdepimpi-98f69fd81c23d99d9fe80326d4bc4d3af23e18ec.zip
kdepimpi-98f69fd81c23d99d9fe80326d4bc4d3af23e18ec.tar.gz
kdepimpi-98f69fd81c23d99d9fe80326d4bc4d3af23e18ec.tar.bz2
ompi select all
Diffstat (limited to 'kmicromail/opiemail.cpp') (more/less context) (show whitespace changes)
-rw-r--r--kmicromail/opiemail.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp
index 8ac3451..e296d9c 100644
--- a/kmicromail/opiemail.cpp
+++ b/kmicromail/opiemail.cpp
@@ -481,24 +481,32 @@ void OpieMail::slotDeleteAllMail()
481 return; 481 return;
482 RecMailP mail = t.first(); 482 RecMailP mail = t.first();
483 mail->Wrapper()->deleteMailList(t); 483 mail->Wrapper()->deleteMailList(t);
484 folderView->refreshCurrent(); 484 folderView->refreshCurrent();
485 485
486 486
487} 487}
488void OpieMail::clearSelection() 488void OpieMail::clearSelection()
489{ 489{
490 mailView->clearSelection(); 490 mailView->clearSelection();
491 491
492} 492}
493void OpieMail::selectAll()
494{
495 QListViewItem* item = mailView->firstChild ();
496 while ( item ) {
497 mailView->setSelected ( item, true );
498 item = item->nextSibling();
499 }
500}
493 501
494void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int ) 502void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int )
495{ 503{
496 if (!mailView->currentItem()) return; 504 if (!mailView->currentItem()) return;
497 MAILLIB::ATYPE mailtype = ((MailListViewItem*)mailView->currentItem() )->wrapperType(); 505 MAILLIB::ATYPE mailtype = ((MailListViewItem*)mailView->currentItem() )->wrapperType();
498 /* just the RIGHT button - or hold on pda */ 506 /* just the RIGHT button - or hold on pda */
499 if (button!=2) {return;} 507 if (button!=2) {return;}
500 if (!item) return; 508 if (!item) return;
501 QPopupMenu *m = new QPopupMenu(0); 509 QPopupMenu *m = new QPopupMenu(0);
502 if (m) 510 if (m)
503 { 511 {
504 if (mailtype==MAILLIB::A_NNTP) { 512 if (mailtype==MAILLIB::A_NNTP) {
@@ -511,24 +519,25 @@ void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int )
511 if (folderView->currentisDraft()) { 519 if (folderView->currentisDraft()) {
512 m->insertItem(i18n("Edit this mail"),this,SLOT(reEditMail())); 520 m->insertItem(i18n("Edit this mail"),this,SLOT(reEditMail()));
513 } 521 }
514 m->insertItem(i18n("Reply to this mail"),this,SLOT(replyMail())); 522 m->insertItem(i18n("Reply to this mail"),this,SLOT(replyMail()));
515 m->insertItem(i18n("Read this mail"),this,SLOT(displayMail())); 523 m->insertItem(i18n("Read this mail"),this,SLOT(displayMail()));
516 m->insertSeparator(); 524 m->insertSeparator();
517 m->insertItem(i18n("Move/Copy this mail"),this,SLOT(slotMoveCopyMail())); 525 m->insertItem(i18n("Move/Copy this mail"),this,SLOT(slotMoveCopyMail()));
518 m->insertItem(i18n("Delete this mail"),this,SLOT(slotDeleteMail())); 526 m->insertItem(i18n("Delete this mail"),this,SLOT(slotDeleteMail()));
519 m->insertSeparator(); 527 m->insertSeparator();
520 m->insertItem(i18n("Move/Copy all selected mail"),this,SLOT(slotMoveCopyAllMail())); 528 m->insertItem(i18n("Move/Copy all selected mail"),this,SLOT(slotMoveCopyAllMail()));
521 m->insertItem(i18n("Delete all selected mails"),this,SLOT(slotDeleteAllMail())); 529 m->insertItem(i18n("Delete all selected mails"),this,SLOT(slotDeleteAllMail()));
522 m->insertSeparator(); 530 m->insertSeparator();
531 m->insertItem(i18n("Select all"),this,SLOT(selectAll()));
523 m->insertItem(i18n("Clear selection"),this,SLOT(clearSelection())); 532 m->insertItem(i18n("Clear selection"),this,SLOT(clearSelection()));
524 } 533 }
525 m->setFocus(); 534 m->setFocus();
526 m->exec( QPoint( QCursor::pos().x(), QCursor::pos().y()) ); 535 m->exec( QPoint( QCursor::pos().x(), QCursor::pos().y()) );
527 delete m; 536 delete m;
528 } 537 }
529} 538}
530 539
531void OpieMail::slotShowFolders( bool show ) 540void OpieMail::slotShowFolders( bool show )
532{ 541{
533 if ( show && folderView->isHidden() ) 542 if ( show && folderView->isHidden() )
534 { 543 {