You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-systemsettings/systemsettings/kcmsearch.cpp

102 lines
3.1 KiB

/**
* 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 <tqregexp.h>
#include <kdebug.h>
#include "modulesview.h"
#include "moduleiconitem.h"
KcmSearch::KcmSearch( TQPtrList<ModulesView> *moduleViewList, TQWidget *parent, const char *name )
: KIconViewSearchLine(parent, (moduleViewList->at(0))?moduleViewList->at(0)->groups[0]:NULL, name){
this->moduleViewList = moduleViewList;
}
void KcmSearch::updateSearch( const TQString &search ) {
TQValueList<RowIconView*>::iterator it;
TQPtrListIterator<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 ){
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<TDECModuleInfo>::iterator it;
for ( it = mItem->modules.begin(); it != mItem->modules.end(); ++it ){
if( itemMatches( (*it), search ) )
return true;
}
return false;
}
#include "kcmsearch.moc"