]> git.sur5r.net Git - minitube/blobdiff - src/downloadview.cpp
Merge tag 'upstream/2.5.2'
[minitube] / src / downloadview.cpp
index 9ab12a9ee2182229fe7b3e7ea966906c322f935c..b7b9a947d61ac5675ff608c1386cfe873840f7aa 100644 (file)
@@ -1,34 +1,46 @@
+/* $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) {
+DownloadView::DownloadView(QWidget *parent) : View(parent) {
 
     QBoxLayout *layout = new QVBoxLayout(this);
     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);
 
     listView = new DownloadListView(this);
-#ifdef APP_MAC
-    listView->setAlternatingRowColors(true);
-#endif
-    /*
-    QPalette p = listView->palette();
-    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);