]> git.sur5r.net Git - minitube/blobdiff - src/homeview.h
Merge tag 'upstream/2.4'
[minitube] / src / homeview.h
index 2f9a8b114ba77b4c29b4a93f8fecb98f014ce6de..7e4ddb7256d84623c5edc1ed1225c7d1c85560c8 100644 (file)
@@ -1,13 +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 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  {
 
@@ -26,10 +49,11 @@ public:
     SearchView* getSearchView() { return searchView; }
     StandardFeedsView* getStandardFeedsView() { return standardFeedsView; }
 
-public slots:
+private slots:
     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;
 
 };