/* Copyright (c) 2000 Matthias Elter Copyright (c) 2004 Daniel Molkentin 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 program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef __searchwidget_h__ #define __searchwidget_h__ #include #include #include #include #include "modules.h" class KListBox; class KLineEdit; class QListBoxItem; class KeywordListEntry { public: KeywordListEntry(const QString& name, ConfigModule* module); void addModule(ConfigModule* module); QString moduleName() { return _name; } QPtrList modules() { return _modules; } private: QString _name; QPtrList _modules; }; class SearchWidget : public QWidget { Q_OBJECT public: SearchWidget(QWidget *parent, const char *name=0); void populateKeywordList(ConfigModuleList *list); void searchTextChanged(const QString &); signals: void moduleSelected(ConfigModule *); protected: void populateKeyListBox(const QString& regexp); void populateResultListBox(const QString& keyword); protected slots: void slotKeywordSelected(const QString &); void slotModuleSelected(QListBoxItem *item); void slotModuleClicked(QListBoxItem *item); private: KListBox *_keyList, *_resultList; QPtrList _keywords; }; #endif