0b6a158fc95d5b2bfa92b6bd4c0241fd6d8dd82d
[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
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
35 namespace qtrapids
36 {
37
38 class SearchPlugin : public PluginInterface
39 {
40         Q_OBJECT
41         Q_INTERFACES(qtrapids::PluginInterface)
42
43 public:
44         SearchPlugin();
45         virtual void initialize(PluginHostInterface* host);
46         virtual QWidget* getGui();
47
48 signals:
49         void searchResult(QWidget* resultwidget);
50
51 private slots:
52         void on_searchButton_clicked();
53         void on_searchResult(QWidget* resultWidget);
54         void on_loadFinished(bool ok);
55         void on_linkClicked(const QUrl& url);
56         void on_downloadFinished(QString filepath);
57 private:
58         QComboBox *comboBox_;
59         QLineEdit *searchLine_;
60         QPushButton *searchButton_;
61         QWebView *result_; // Do not delete, plugin host takes ownership
62         DownloadManager *dlManager_;
63         PluginHostInterface* host_;
64
65 };
66
67 } // namespace qtrapids
68
69 #endif