16 #ifndef _KMAIL_ATTACHMENTLISTVIEW_H_
17 #define _KMAIL_ATTACHMENTLISTVIEW_H_
19 #include <tdelistview.h>
21 class TQDragEnterEvent;
22 class TQDragMoveEvent;
30 class AttachmentListView : public TDEListView
35 AttachmentListView( KMail::Composer * composer = 0, TQWidget* parent = 0,
36 const char* name = 0 );
37 virtual ~AttachmentListView();
40 void contentsDragEnterEvent( TQDragEnterEvent* );
41 void contentsDragMoveEvent( TQDragMoveEvent* );
42 void contentsDropEvent( TQDropEvent* );
45 virtual void keyPressEvent( TQKeyEvent * e );
46 virtual void startDrag();
49 KMail::Composer * mComposer;
52 void attachmentDeleted();
|