/** * This file is part of the System Settings package * Copyright (C) 2005 Benjamin C Meyer * * * 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 #include #include "modulesview.h" #include "moduleiconitem.h" KcmSearch::KcmSearch( TQPtrList *moduleViewList, TQWidget *parent, const char *name ) : TDEIconViewSearchLine(parent, (moduleViewList->at(0))?moduleViewList->at(0)->groups[0]:NULL, name){ this->moduleViewList = moduleViewList; } void KcmSearch::updateSearch( const TQString &search ) { TQValueList::iterator it; TQPtrListIterator 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 ){ TQIconViewItem *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 TDECModuleInfo &module, const TQString &search ) const { // Look in keywords TQStringList kw = module.keywords(); for(TQStringList::ConstIterator it = kw.begin(); it != kw.end(); ++it) { TQString name = (*it).lower(); if ( TQRegExp(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 ( TQRegExp(search+"*", false, true).search(module.moduleName()) >= 0) return true; //kdDebug() << "No MATCH:" << module.moduleName().latin1() << endl; return false; } bool KcmSearch::itemMatches( const TQIconViewItem *item, const TQString & search ) const { if( !item ) return false; ModuleIconItem *mItem = (ModuleIconItem*)item; TQValueList::iterator it; for ( it = mItem->modules.begin(); it != mItem->modules.end(); ++it ){ if( itemMatches( (*it), search ) ) return true; } return false; } #include "kcmsearch.moc"