]> git.sur5r.net Git - minitube/blobdiff - src/sidebarwidget.h
New upstream version 3.1
[minitube] / src / sidebarwidget.h
index 26d9bf0c173c457cc87090ced5524bb11bd59886..aa66ee29f2819a8a06f4f433433e2e3f835e5c26 100644 (file)
@@ -1,22 +1,42 @@
+/* $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 {
-
     Q_OBJECT
 
 public:
-    SidebarWidget(QWidget *parent = 0);
+    SidebarWidget(QWidget *parent = nullptr);
+    QListView *getPlaylist() { return playlist; }
     void setPlaylist(QListView *playlist);
     void showPlaylist();
-    RefineSearchWidgetgetRefineSearchWidget() { return refineSearchWidget; }
-    SidebarHeadergetHeader() { return sidebarHeader; }
+    RefineSearchWidget *getRefineSearchWidget() { return refineSearchWidget; }
+    SidebarHeader *getHeader() { return sidebarHeader; }
     void hideSuggestions();
 
 public slots:
@@ -47,6 +67,8 @@ private:
     QTimer *mouseTimer;
     QLabel *messageLabel;
     SidebarHeader *sidebarHeader;
+
+    int playlistWidth;
 };
 
 #endif // SIDEBARWIDGET_H