summaryrefslogtreecommitdiff
path: root/core/pim/osearch/applnkitem.h
authortille <tille>2003-05-10 16:51:45 (UTC)
committer tille <tille>2003-05-10 16:51:45 (UTC)
commitbb282009a5d37c77c9239d0e78950290f026d7a8 (patch) (unidiff)
treef77f8299f6cb4393d98e005963b116bab6a27989 /core/pim/osearch/applnkitem.h
parent2a37284ab7ea4a29b6e55a84445ad5b2e3d6739b (diff)
downloadopie-bb282009a5d37c77c9239d0e78950290f026d7a8.zip
opie-bb282009a5d37c77c9239d0e78950290f026d7a8.tar.gz
opie-bb282009a5d37c77c9239d0e78950290f026d7a8.tar.bz2
applnk search
Diffstat (limited to 'core/pim/osearch/applnkitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/applnkitem.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/core/pim/osearch/applnkitem.h b/core/pim/osearch/applnkitem.h
new file mode 100644
index 0000000..b28631a
--- a/dev/null
+++ b/core/pim/osearch/applnkitem.h
@@ -0,0 +1,37 @@
1//
2//
3// C++ Interface: $MODULE$
4//
5// Description:
6//
7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9//
10// Copyright: See COPYING file that comes with this distribution
11//
12//
13#ifndef APPLNKITEM_H
14#define APPLNKITEM_H
15
16#include "resultitem.h"
17
18class AppLnk;
19
20/**
21@author Patrick S. Vogt
22*/
23class AppLnkItem : public ResultItem
24{
25public:
26 AppLnkItem(OListViewItem* parent, AppLnk *app);
27 ~AppLnkItem();
28
29 virtual QString toRichText();
30 virtual void editItem();
31 virtual void showItem();
32
33private:
34 AppLnk *_app;
35};
36
37#endif