diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-12 18:38:11 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-12 18:38:11 +0000 |
commit | 686c40f4da78216e8f31dcc6cb08a763c2b207c0 (patch) | |
tree | 75e75535eb77b5fb3ba0105bae9e3307e0efcc3e /systemsettings/kcmsearch.cpp | |
download | tde-systemsettings-686c40f4da78216e8f31dcc6cb08a763c2b207c0.tar.gz tde-systemsettings-686c40f4da78216e8f31dcc6cb08a763c2b207c0.zip |
Added KDE3 version of kde-systemsettings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-systemsettings@1089234 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'systemsettings/kcmsearch.cpp')
-rw-r--r-- | systemsettings/kcmsearch.cpp | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/systemsettings/kcmsearch.cpp b/systemsettings/kcmsearch.cpp new file mode 100644 index 0000000..3dd41ce --- /dev/null +++ b/systemsettings/kcmsearch.cpp @@ -0,0 +1,101 @@ +/** + * This file is part of the System Settings package + * Copyright (C) 2005 Benjamin C Meyer + * <ben+systempreferences at meyerhome dot net> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + +#include "kcmsearch.h" + +#include <qregexp.h> +#include <kdebug.h> + +#include "modulesview.h" +#include "moduleiconitem.h" + +KcmSearch::KcmSearch( QPtrList<ModulesView> *moduleViewList, QWidget *parent, const char *name ) + : KIconViewSearchLine(parent, moduleViewList->at(0)->groups[0], name){ + this->moduleViewList = moduleViewList; +} + +void KcmSearch::updateSearch( const QString &search ) { + QValueList<RowIconView*>::iterator it; + QPtrListIterator<ModulesView> moduleViewListIt(*moduleViewList); + + ModulesView *mainView; + int page = 0; + int *hitArray = new int[moduleViewList->count()]; + + for ( ; moduleViewListIt.current(); ++moduleViewListIt) { + mainView = moduleViewListIt.current(); + + int count = 0; + for ( it = mainView->groups.begin(); it != mainView->groups.end(); ++it ){ + QIconViewItem *item = (*it)->firstItem(); + while( item ) { + bool hit = itemMatches(item, search); + ((ModuleIconItem*)item)->loadIcon(hit); + count += hit ? 1 : 0; + item = item->nextItem(); + } + + } + hitArray[page] = count; + page++; + } + + emit searchHits(search, hitArray, moduleViewList->count()); + delete[] hitArray; +} + +bool KcmSearch::itemMatches( const KCModuleInfo &module, const QString &search ) const +{ + // Look in keywords + QStringList kw = module.keywords(); + for(QStringList::ConstIterator it = kw.begin(); it != kw.end(); ++it) { + QString name = (*it).lower(); + if ( QRegExp(search+"*", false, true).search(name) >= 0){ + //kdDebug() << "MATCH:" << module.moduleName().latin1() + // << "keyword:" << name.latin1() << endl; + return true; + } + } + + // Don't forget to check the name :) + if ( QRegExp(search+"*", false, true).search(module.moduleName()) >= 0) + return true; + + //kdDebug() << "No MATCH:" << module.moduleName().latin1() << endl; + return false; +} + +bool KcmSearch::itemMatches( const QIconViewItem *item, const QString & search ) const +{ + if( !item ) + return false; + + ModuleIconItem *mItem = (ModuleIconItem*)item; + QValueList<KCModuleInfo>::iterator it; + for ( it = mItem->modules.begin(); it != mItem->modules.end(); ++it ){ + if( itemMatches( (*it), search ) ) + return true; + } + return false; +} + + +#include "kcmsearch.moc" |