summaryrefslogtreecommitdiff
path: root/core/pim/osearch/olistview.h
authortille <tille>2003-05-07 12:36:02 (UTC)
committer tille <tille>2003-05-07 12:36:02 (UTC)
commitb8a79edda20f0b764c8d70fb664f21fb80b61299 (patch) (unidiff)
treed5a939395540c7e77fd0f50be0269c2a4537dba6 /core/pim/osearch/olistview.h
parentf9cc1ea78086e7df714a34412bbccdbd5c31f62f (diff)
downloadopie-b8a79edda20f0b764c8d70fb664f21fb80b61299.zip
opie-b8a79edda20f0b764c8d70fb664f21fb80b61299.tar.gz
opie-b8a79edda20f0b764c8d70fb664f21fb80b61299.tar.bz2
initial import
searches contacts, todos and events not much more yet
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