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.
69 lines
2.1 KiB
69 lines
2.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.
|
|
*/
|
|
|
|
#ifndef KCMSEARCH_H
|
|
#define KCMSEARCH_H
|
|
|
|
#include <kiconviewsearchline.h>
|
|
#include "kcmodulemenu.h"
|
|
|
|
class ModulesView;
|
|
|
|
/**
|
|
* Searches all the ModuleIconItem's in MainWindow and "disables" the ones
|
|
* whos keywords don't match the current search.
|
|
*/
|
|
class KcmSearch : public KIconViewSearchLine
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
KcmSearch( TQPtrList<ModulesView> *moduleViewList, TQWidget *parent = 0, const char *name = 0 );
|
|
|
|
public slots:
|
|
/**
|
|
* Go through all of the iconView groups in mainView and update
|
|
*/
|
|
virtual void updateSearch( const TQString &search = TQString() );
|
|
/**
|
|
* Check module associated with item or if a group check all modules of that group.
|
|
* @return true if search is in the module(s) keywords
|
|
*/
|
|
virtual bool itemMatches ( const TQIconViewItem *item, const TQString &search ) const;
|
|
|
|
signals:
|
|
void searchHits(const TQString &query, int *hitList, int length);
|
|
|
|
private:
|
|
/**
|
|
* Determine if module matches the search
|
|
* @return true if search is in module's keywords
|
|
*/
|
|
bool itemMatches ( const KCModuleInfo &module, const TQString &search ) const;
|
|
|
|
// Friend class whos groups parsed,
|
|
TQPtrList<ModulesView> *moduleViewList;
|
|
};
|
|
|
|
#endif // KCMSEARCH_H
|
|
|