- Search plugin parses opensearch.xml files and adds them to combobox
[qtrapids] / src / plugins / searchplugin / SearchPlugin.h
1 /***************************************************************************
2  *   Copyright (C) 2009 by Lassi Väätämöinen   *
3  *   lassi.vaatamoinen@ixonos.com   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #ifndef SEARCHPLUGIN_H
21 #define SEARCHPLUGIN_H
22
23 #include <vector>
24 #include <QObject>
25
26 #include "PluginInterface.h"
27
28 class QWidget;
29 class QComboBox;
30 class QPushButton;
31 class QLineEdit;
32 class QWebView;
33 class DownloadManager;
34 class QDir;
35
36 namespace qtrapids
37 {
38
39 class SearchPlugin : public PluginInterface
40 {
41         Q_OBJECT
42         Q_INTERFACES(qtrapids::PluginInterface)
43
44         public:
45                 SearchPlugin();
46                 
47                 /// @brief Initializes the SearchPlugin
48                 /// @param info info.directory is used to search for searchengine description files. 
49                 virtual void initialize(PluginHostInterface* host, Info info);
50                 virtual QWidget* getGui();
51
52         signals:
53                 void searchResult(QWidget* resultwidget);
54
55         private slots:
56                 void on_searchButton_clicked();
57                 void on_searchResult(QWidget* resultWidget);
58                 void on_loadFinished(bool ok);
59                 void on_linkClicked(const QUrl& url);
60                 void on_downloadFinished(QString filepath);
61                 
62         private:
63                 void ParseSearchEngineDescriptions(const QDir& dir);
64                         
65         private:
66                 QComboBox *comboBox_; // Holds the search engine names. Combobox index maps to engineTemplates_ index
67                 QLineEdit *searchLine_;
68                 QPushButton *searchButton_;
69                 QWebView *result_; // Do not delete, plugin host takes ownership
70                 DownloadManager *dlManager_;
71                 PluginHostInterface* host_;
72                 std::vector<QString> engineTemplates_; // Holds the search URL templates
73 };
74
75 } // namespace qtrapids
76
77 #endif