]> git.sur5r.net Git - minitube/blobdiff - src/standardfeedsview.h
Imported Upstream version 2.5.1
[minitube] / src / standardfeedsview.h
index 17d850ff38efa38d45353fdd08687d67c2fb71e8..0f9e051180e280f288dfdee4cb979873ccc6b2e7 100644 (file)
@@ -1,14 +1,37 @@
+/* $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 CATEGORIESVIEW_H
 #define CATEGORIESVIEW_H
 
 #include <QtGui>
+#if QT_VERSION >= 0x050000
+#include <QtWidgets>
+#endif
 #include "view.h"
 
 class VideoSource;
-class YTCategory;
+struct YTCategory;
 class YTStandardFeed;
 
-class StandardFeedsView : public QWidget, public View {
+class StandardFeedsView : public View {
 
     Q_OBJECT
 
@@ -22,6 +45,9 @@ public slots:
     void appear();
     void disappear();
     void load();
+
+protected:
+    void paintEvent(QPaintEvent *event);
     
 private slots:
     void layoutCategories(const QList<YTCategory> &categories);
@@ -31,7 +57,7 @@ private slots:
 private:
     void addVideoSourceWidget(VideoSource *videoSource);
     QList<YTStandardFeed*> getMainFeeds();
-    YTStandardFeed* buildStardardFeed(QString feedId, QString label);
+    YTStandardFeed* buildStardardFeed(const QString &feedId, const QString &label, QString time = QString());
     QGridLayout *layout;
     
 };