From 43c18630840a98aed8deb96b454957c40f0a4344 Mon Sep 17 00:00:00 2001 From: tille Date: Sun, 11 May 2003 19:19:30 +0000 Subject: improved applnk and doclnk searching clean up: - mainwindow: handling of searchgroups - searchgroups: introduced load, search and insertItem functions - flexible actions handling - doclnksearch inherits applnksearch --- (limited to 'core/pim/osearch/applnksearch.cpp') diff --git a/core/pim/osearch/applnksearch.cpp b/core/pim/osearch/applnksearch.cpp index 7872ae3..d5b2930 100644 --- a/core/pim/osearch/applnksearch.cpp +++ b/core/pim/osearch/applnksearch.cpp @@ -2,7 +2,7 @@ // // C++ Implementation: $MODULE$ // -// Description: +// Description: // // // Author: Patrick S. Vogt , (C) 2003 @@ -29,18 +29,27 @@ AppLnkSearch::~AppLnkSearch() } -void AppLnkSearch::expand() +void AppLnkSearch::load() { - SearchGroup::expand(); - if (_search.isEmpty()) return; - if (!_apps) _apps = new AppLnkSet(QPEApplication::qpeDir()); + _apps = new AppLnkSet(QPEApplication::qpeDir()); +} + +int AppLnkSearch::search() +{ + int count = 0; QList appList = _apps->children(); for ( AppLnk *app = appList.first(); app != 0; app = appList.next() ){ -// if (app->name().contains(_search) || app->comment().contains(_search)) if ( (_search.match( app->name() ) != -1) || (_search.match(app->comment()) != -1) - || (_search.match(app->exec()) != -1) ) - new AppLnkItem( this, app ); + || (_search.match(app->exec()) != -1) ) { + count++; + insertItem( app ); + } } + return count; } +void AppLnkSearch::insertItem( void *rec ) +{ + new AppLnkItem( this, (AppLnk*)rec ); +} -- cgit v0.9.0.2