]> git.sur5r.net Git - minitube/blobdiff - src/downloadview.cpp
Merge tag 'upstream/2.1.5'
[minitube] / src / downloadview.cpp
index 9ab12a9ee2182229fe7b3e7ea966906c322f935c..2ad4763fe05870fddd7e4b7547c4dc33f1b8f307 100644 (file)
@@ -1,12 +1,32 @@
+/* $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 */
+
 #include "downloadview.h"
 #include "downloadmodel.h"
 #include "downloadmanager.h"
 #include "downloadlistview.h"
 #include "downloaditem.h"
 #include "downloadsettings.h"
-#include "ListModel.h"
-#include "playlist/PrettyItemDelegate.h"
-#include "thlibrary/thblackbar.h"
+#include "playlistmodel.h"
+#include "playlistitemdelegate.h"
+#include "segmentedcontrol.h"
 
 DownloadView::DownloadView(QWidget *parent) : QWidget(parent) {
 
@@ -14,7 +34,7 @@ DownloadView::DownloadView(QWidget *parent) : QWidget(parent) {
     layout->setMargin(0);
     layout->setSpacing(0);
 
-    bar = new THBlackBar(this);
+    bar = new SegmentedControl(this);
     QAction *action = new QAction(tr("Downloads"), this);
     bar->addAction(action);
     layout->addWidget(bar);
@@ -28,7 +48,7 @@ DownloadView::DownloadView(QWidget *parent) : QWidget(parent) {
     p.setColor(QPalette::Base, palette().color(QPalette::Window));
     listView->setPalette(p);
     */
-    PrettyItemDelegate *delegate = new PrettyItemDelegate(this, true);
+    PlaylistItemDelegate *delegate = new PlaylistItemDelegate(this, true);
     listView->setItemDelegate(delegate);
     listView->setSelectionMode(QAbstractItemView::NoSelection);