]> git.sur5r.net Git - minitube/blobdiff - src/homeview.h
Imported Upstream version 2.5.1
[minitube] / src / homeview.h
index 2f9a8b114ba77b4c29b4a93f8fecb98f014ce6de..fb412f4993456eb4e2b54e9571834c4565aa9eb3 100644 (file)
@@ -1,21 +1,43 @@
+/* $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 HOMEVIEW_H
 #define HOMEVIEW_H
 
 #include <QtGui>
+#if QT_VERSION >= 0x050000
+#include <QtWidgets>
+#endif
 #include "view.h"
 
 class SegmentedControl;
 class SearchView;
 class StandardFeedsView;
-class UserView;
+class ChannelView;
 
-class HomeView : public QWidget, public View  {
+class HomeView : public View  {
 
     Q_OBJECT
 
 public:
     HomeView(QWidget *parent = 0);
-    void appear();
     void disappear();
     QHash<QString, QVariant> metadata() {
         QHash<QString, QVariant> metadata;
@@ -26,10 +48,12 @@ public:
     SearchView* getSearchView() { return searchView; }
     StandardFeedsView* getStandardFeedsView() { return standardFeedsView; }
 
-public slots:
+private slots:
+    void appear();
     void showSearch();
     void showStandardFeeds();
-    void showUser();
+    void showChannels();
+    void unwatchedCountChanged(int count);
 
 private:
     void setupBar();
@@ -38,7 +62,9 @@ private:
 
     SearchView *searchView;
     StandardFeedsView *standardFeedsView;
-    UserView* userView;
+    ChannelView* channelsView;
+
+    QAction *subscriptionsAction;
 
 };