certmanager

certlistview.h
1 #ifndef CERTLISTVIEW_H
2 #define CERTLISTVIEW_H
3 
4 #include <ui/keylistview.h>
5 #include <kurl.h>
6 
8 class CertKeyListView : public Kleo::KeyListView {
9  TQ_OBJECT
10 
11 
12 public:
13  CertKeyListView( const ColumnStrategy * strategy,
14  const DisplayStrategy * display=0,
15  TQWidget * parent=0, const char * name=0, WFlags f=0 );
16 
17 signals:
18  void dropped( const KURL::List& urls );
19 
20 protected:
21  virtual void contentsDragEnterEvent ( TQDragEnterEvent * );
22  virtual void contentsDragMoveEvent( TQDragMoveEvent * );
23  virtual void contentsDragLeaveEvent( TQDragLeaveEvent * );
24  virtual void contentsDropEvent ( TQDropEvent * );
25 
26 };
27 
28 
29 #endif /* CERTLISTVIEW_H */
We need to derive from Kleo::KeyListView simply to add support for drop events.
Definition: certlistview.h:8