]> git.sur5r.net Git - minitube/blobdiff - src/searchview.h
Font tweaks, definition action
[minitube] / src / searchview.h
index a62390d269b12e4350110b2b2445b735b5e4ee0e..3e818791aa696680f0d1051ea3c3b2e1a8d78b4b 100644 (file)
@@ -1,33 +1,53 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube 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 3 of the License, or
+(at your option) any later version.
+
+Minitube 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 Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #ifndef __SEARCHVIEW_H__
 #define __SEARCHVIEW_H__
 
 #include <QtGui>
+#if QT_VERSION >= 0x050000
+#include <QtWidgets>
+#endif
 #include "view.h"
 
 class SearchLineEdit;
 class SearchParams;
-class YouTubeSuggest;
+class YTSuggester;
 class ChannelSuggest;
+class Suggestion;
 
 class SearchView : public QWidget, public View {
 
     Q_OBJECT
 
 public:
-    SearchView(QWidget *parent);
+    SearchView(QWidget *parent = 0);
     void updateRecentKeywords();
     void updateRecentChannels();
-    QHash<QString, QVariant> metadata() {
-        QHash<QString, QVariant> metadata;
-        metadata.insert("description", tr("Make yourself comfortable"));
-        return metadata;
-    }
 
 public slots:
     void appear();
-    void watch(QString query);
-    void watchChannel(QString channel);
-    void watchKeywords(QString query);
+    void disappear();
+    void watch(const QString &query);
+    void watchChannel(const QString &channelId);
+    void watchKeywords(const QString &query);
 
 signals:
     void search(SearchParams*);
@@ -39,9 +59,10 @@ private slots:
     void watch();
     void textChanged(const QString &text);
     void searchTypeChanged(int index);
+    void suggestionAccepted(Suggestion *suggestion);
 
 private:
-    YouTubeSuggest *youtubeSuggest;
+    YTSuggester *youtubeSuggest;
     ChannelSuggest *channelSuggest;
 
     QComboBox *typeCombo;