X-Git-Url: http://git.maemo.org/git/?p=qtrapids;a=blobdiff_plain;f=src%2Fplugins%2Fsearchplugin%2FSearchPlugin.h;fp=src%2Fplugins%2Fsearchplugin%2FSearchPlugin.h;h=0b6a158fc95d5b2bfa92b6bd4c0241fd6d8dd82d;hp=ff709b2de4fbdf9dc633acf2f73af1d40fd3c109;hb=5032546701da06d7307fc543d74be93e5319c350;hpb=d843508b9e84901695a6f72152d5366ebd957ad6 diff --git a/src/plugins/searchplugin/SearchPlugin.h b/src/plugins/searchplugin/SearchPlugin.h index ff709b2..0b6a158 100644 --- a/src/plugins/searchplugin/SearchPlugin.h +++ b/src/plugins/searchplugin/SearchPlugin.h @@ -29,6 +29,8 @@ class QWidget; class QComboBox; class QPushButton; class QLineEdit; +class QWebView; +class DownloadManager; namespace qtrapids { @@ -49,11 +51,15 @@ signals: private slots: void on_searchButton_clicked(); void on_searchResult(QWidget* resultWidget); - + void on_loadFinished(bool ok); + void on_linkClicked(const QUrl& url); + void on_downloadFinished(QString filepath); private: QComboBox *comboBox_; QLineEdit *searchLine_; QPushButton *searchButton_; + QWebView *result_; // Do not delete, plugin host takes ownership + DownloadManager *dlManager_; PluginHostInterface* host_; };