KPIM Namespace Reference
KDEPIM classes for drag and drop of mails. More...
Typedefs | |
typedef QValueList< MailSummary > | MailList |
Detailed Description
KDEPIM classes for drag and drop of mails.// Code example for drag and drop enabled widget
void SomeWidget::contentsDropEvent(QDropEvent *e) { if (e->provides(MailListDrag::format())) { MailList mailList; MailListDrag::decode( e, mailList ); ...