00001 #ifndef MICROKDE_KLISTVIEW_H
00002 #define MICROKDE_KLISTVIEW_H
00003
00004 #include <qlistview.h>
00005 #include <qpoint.h>
00006 #include <qstring.h>
00007
00008 class KConfig;
00009
00010 class KListView : public QListView
00011 {
00012 Q_OBJECT
00013 public:
00014 KListView( QWidget *parent=0, const char *name=0 )
00015 : QListView( parent, name ) {}
00016
00017 void saveLayout( KConfig *, const QString & ) {}
00018 void restoreLayout( KConfig *, const QString & ) {}
00019
00020 signals:
00021 void doubleClicked( QListViewItem *, QPoint, int );
00022 };
00023
00024 #endif