summaryrefslogtreecommitdiff
path: root/core/pim/osearch/olistview.h
Unidiff
Diffstat (limited to 'core/pim/osearch/olistview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/olistview.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/core/pim/osearch/olistview.h b/core/pim/osearch/olistview.h
new file mode 100644
index 0000000..af3a50b
--- a/dev/null
+++ b/core/pim/osearch/olistview.h
@@ -0,0 +1,30 @@
1/***************************************************************************
2 * *
3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or *
6 * (at your option) any later version. *
7 * *
8 ***************************************************************************/
9
10 // (c) 2002 Patrick S. Vogtp <tille@handhelds.org>
11
12#ifndef LISTVIEWCONFDIR_H
13#define LISTVIEWCONFDIR_H
14
15#include <qwidget.h>
16#include <qlistview.h>
17#include <qdir.h>
18
19class QDir;
20
21class OListView : public QListView {
22 Q_OBJECT
23public:
24 OListView(QWidget *parent=0, const char *name=0);
25 ~OListView();
26protected slots:
27 void expand(QListViewItem*);
28};
29
30#endif