summaryrefslogtreecommitdiff
path: root/core/pim/osearch/doclnksearch.h
authortille <tille>2003-05-11 19:19:30 (UTC)
committer tille <tille>2003-05-11 19:19:30 (UTC)
commit43c18630840a98aed8deb96b454957c40f0a4344 (patch) (side-by-side diff)
tree60e5b68d1d172c77560d5af7bea83e81be7144a6 /core/pim/osearch/doclnksearch.h
parent38dc2fd6258f11ba0507c7bd8f8dfd5b39bc0df5 (diff)
downloadopie-43c18630840a98aed8deb96b454957c40f0a4344.zip
opie-43c18630840a98aed8deb96b454957c40f0a4344.tar.gz
opie-43c18630840a98aed8deb96b454957c40f0a4344.tar.bz2
improved applnk and doclnk searching
clean up: - mainwindow: handling of searchgroups - searchgroups: introduced load, search and insertItem functions - flexible actions handling - doclnksearch inherits applnksearch
Diffstat (limited to 'core/pim/osearch/doclnksearch.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/doclnksearch.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/core/pim/osearch/doclnksearch.h b/core/pim/osearch/doclnksearch.h
index ec740de..e2ac40b 100644
--- a/core/pim/osearch/doclnksearch.h
+++ b/core/pim/osearch/doclnksearch.h
@@ -13,23 +13,21 @@
#ifndef DOCLNKSEARCH_H
#define DOCLNKSEARCH_H
-#include "searchgroup.h"
-
-class DocLnkSet;
+#include "applnksearch.h"
/**
@author Patrick S. Vogt
*/
-class DocLnkSearch : public SearchGroup
+class DocLnkSearch : public AppLnkSearch
{
public:
DocLnkSearch(QListView* parent, QString name);
-
~DocLnkSearch();
- virtual void expand();
-private:
- DocLnkSet *_docs;
+protected:
+ virtual void load();
+ virtual void insertItem( void* );
+
};
#endif