summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/libkate/microkde/klistview.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/tinykate/libkate/microkde/klistview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/tinykate/libkate/microkde/klistview.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/noncore/apps/tinykate/libkate/microkde/klistview.h b/noncore/apps/tinykate/libkate/microkde/klistview.h
new file mode 100644
index 0000000..008acbc
--- a/dev/null
+++ b/noncore/apps/tinykate/libkate/microkde/klistview.h
@@ -0,0 +1,24 @@
+#ifndef MICROKDE_KLISTVIEW_H
+#define MICROKDE_KLISTVIEW_H
+
+#include <qlistview.h>
+#include <qpoint.h>
+#include <qstring.h>
+
+class KConfig;
+
+class KListView : public QListView
+{
+ Q_OBJECT
+ public:
+ KListView( QWidget *parent=0, const char *name=0 )
+ : QListView( parent, name ) {}
+
+ void saveLayout( KConfig *, const QString & ) {}
+ void restoreLayout( KConfig *, const QString & ) {}
+
+ signals:
+ void doubleClicked( QListViewItem *, QPoint, int );
+};
+
+#endif