]> git.sur5r.net Git - minitube/blobdiff - src/sidebarwidget.h
Upload 2.9-1 to unstable
[minitube] / src / sidebarwidget.h
index 5edb56f81f5bd4911404c7f39388d11b2b07bde9..f15e4da01b5e5bf7d7b76cf84c4410ee922587ad 100644 (file)
@@ -1,10 +1,31 @@
+/* $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 SIDEBARWIDGET_H
 #define SIDEBARWIDGET_H
 
-#include <QtGui>
+#include <QtWidgets>
 
 class RefineSearchButton;
 class RefineSearchWidget;
+class SidebarHeader;
 
 class SidebarWidget : public QWidget {
 
@@ -12,9 +33,11 @@ class SidebarWidget : public QWidget {
 
 public:
     SidebarWidget(QWidget *parent = 0);
+    QListView *getPlaylist() { return playlist; }
     void setPlaylist(QListView *playlist);
     void showPlaylist();
     RefineSearchWidget* getRefineSearchWidget() { return refineSearchWidget; }
+    SidebarHeader* getHeader() { return sidebarHeader; }
     void hideSuggestions();
 
 public slots:
@@ -44,7 +67,9 @@ private:
     RefineSearchWidget *refineSearchWidget;
     QTimer *mouseTimer;
     QLabel *messageLabel;
-    
+    SidebarHeader *sidebarHeader;
+
+    int playlistWidth;
 };
 
 #endif // SIDEBARWIDGET_H