]> git.sur5r.net Git - minitube/blobdiff - src/ytsearch.h
Upload 3.9.3-2 to unstable
[minitube] / src / ytsearch.h
index 983a27b39e500d07bca55a42c11faa44add645a7..f59610ca7744f838e3304d63d4979379e394d637 100644 (file)
@@ -1,37 +1,55 @@
+/* $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 YTSEARCH_H
 #define YTSEARCH_H
 
+#include "paginatedvideosource.h"
 #include <QtNetwork>
-#include "videosource.h"
 
 class SearchParams;
 class Video;
 
-class YTSearch : public VideoSource {
-
+class YTSearch : public PaginatedVideoSource {
     Q_OBJECT
 
 public:
     YTSearch(SearchParams *params, QObject *parent = 0);
-    void loadVideos(int max, int skip);
-    virtual void abort();
-    virtual const QStringList & getSuggestions();
-    static QString videoIdFromUrl(QString url);
+    void loadVideos(int max, int startIndex);
+    void abort();
     QString getName();
-    SearchParams* getSearchParams() const { return searchParams; }
+    const QList<QAction *> &getActions();
+    int maxResults() { return 50; }
+    SearchParams *getSearchParams() const { return searchParams; }
+    static QString videoIdFromUrl(const QString &url);
+    static QTime videoTimestampFromUrl(const QString &url);
 
-    bool operator==(const YTSearch &other) const {
-        return searchParams == other.getSearchParams();
-    }
+    bool operator==(const YTSearch &other) const { return searchParams == other.getSearchParams(); }
 
 private slots:
-    void parseResults(QByteArray data);
-    void requestError(QNetworkReply *reply);
+    void parseResults(const QByteArray &data);
+    void requestError(const QString &message);
 
 private:
     SearchParams *searchParams;
     bool aborted;
-    QStringList suggestions;
     QString name;
 };