diff options
Diffstat (limited to 'systemsettings/kcmsearch.h')
-rw-r--r-- | systemsettings/kcmsearch.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/systemsettings/kcmsearch.h b/systemsettings/kcmsearch.h new file mode 100644 index 0000000..b20aec7 --- /dev/null +++ b/systemsettings/kcmsearch.h @@ -0,0 +1,67 @@ +/** + * 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 + +public: + KcmSearch( QPtrList<ModulesView> *moduleViewList, QWidget *parent = 0, const char *name = 0 ); + +public slots: + /** + * Go through all of the iconView groups in mainView and update + */ + virtual void updateSearch( const QString &search = QString::null ); + /** + * 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 QIconViewItem *item, const QString &search ) const; + +signals: + void searchHits(const QString &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 QString &search ) const; + + // Friend class whos groups parsed, + QPtrList<ModulesView> *moduleViewList; +}; + +#endif // KCMSEARCH_H + |