]> git.sur5r.net Git - minitube/blobdiff - src/standardfeedsview.h
Install AppStream files to /usr/share/metainfo
[minitube] / src / standardfeedsview.h
index 17d850ff38efa38d45353fdd08687d67c2fb71e8..aa07c0c1585eb1321dc2ca55ff52aa38a3f443e2 100644 (file)
@@ -1,15 +1,36 @@
+/* $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>
+#include <QtWidgets>
+
 #include "view.h"
 
 class VideoSource;
-class YTCategory;
+struct YTCategory;
 class YTStandardFeed;
+class VideoSourceWidget;
 
-class StandardFeedsView : public QWidget, public View {
-
+class StandardFeedsView : public View {
     Q_OBJECT
 
 public:
@@ -22,18 +43,22 @@ public slots:
     void appear();
     void disappear();
     void load();
-    
+
+protected:
+    void paintEvent(QPaintEvent *event);
+
 private slots:
-    void layoutCategories(const QList<YTCategory> &categories);
+    void layoutCategories(const QVector<YTCategory> &categories);
     void selectWorldwideRegion();
     void selectLocalRegion();
+    void removeVideoSourceWidget(VideoSourceWidget *videoSourceWidget);
 
 private:
+    void resetLayout();
     void addVideoSourceWidget(VideoSource *videoSource);
-    QList<YTStandardFeed*> getMainFeeds();
-    YTStandardFeed* buildStardardFeed(QString feedId, QString label);
+    YTStandardFeed *
+    buildStandardFeed(const QString &feedId, const QString &label, QString time = QString());
     QGridLayout *layout;
-    
 };
 
 #endif // CATEGORIESVIEW_H