]> git.sur5r.net Git - minitube/blobdiff - src/downloadview.cpp
Upload 2.5.2-2 to unstable
[minitube] / src / downloadview.cpp
index 42db96b8ec094f5bdca5334d3b0b1f7f8e42cb43..b7b9a947d61ac5675ff608c1386cfe873840f7aa 100644 (file)
@@ -1,3 +1,23 @@
+/* $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"
@@ -8,7 +28,7 @@
 #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);
@@ -20,14 +40,6 @@ DownloadView::DownloadView(QWidget *parent) : QWidget(parent) {
     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);
-    */
     PlaylistItemDelegate *delegate = new PlaylistItemDelegate(this, true);
     listView->setItemDelegate(delegate);
     listView->setSelectionMode(QAbstractItemView::NoSelection);