diff options
Diffstat (limited to 'plugins/search/searchplugin.h')
-rw-r--r-- | plugins/search/searchplugin.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/plugins/search/searchplugin.h b/plugins/search/searchplugin.h new file mode 100644 index 0000000..ce65499 --- /dev/null +++ b/plugins/search/searchplugin.h @@ -0,0 +1,66 @@ +/*************************************************************************** + * Copyright (C) 2005 by Joris Guisson * + * joris.guisson@gmail.com * + * * + * 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 KTSEARCHPLUGIN_H +#define KTSEARCHPLUGIN_H + +#include <qptrlist.h> +#include <interfaces/plugin.h> +#include <interfaces/guiinterface.h> +#include "searchenginelist.h" + +namespace kt +{ + class SearchWidget; + class SearchPrefPage; + class SearchTab; + + /** + @author Joris Guisson + */ + class SearchPlugin : public Plugin, public kt::CloseTabListener + { + Q_OBJECT + public: + SearchPlugin(QObject* parent, const char* name, const QStringList& args); + virtual ~SearchPlugin(); + + virtual void load(); + virtual void unload(); + virtual bool versionCheck(const QString& version) const; + + void preferencesUpdated(); + + const SearchEngineList & getSearchEngineList() const {return engines;} + private slots: + void search(const QString & text,int engine,bool external); + + private: + virtual void tabCloseRequest(kt::GUIInterface* gui,QWidget* tab); + + private: + SearchPrefPage* pref; + SearchTab* tab; + SearchEngineList engines; + QPtrList<SearchWidget> searches; + }; + +} + +#endif |