]> git.sur5r.net Git - minitube/blobdiff - src/downloadlistview.cpp
Merge tag 'upstream/2.1.5'
[minitube] / src / downloadlistview.cpp
index 4ebb34ccb049ba5e51b683c2782fa9652dccd9b9..7a1fafd4c34ebb59c0ac0da291f83c43e0abaea9 100644 (file)
@@ -1,6 +1,27 @@
+/* $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 "downloadlistview.h"
 #include "downloadmodel.h"
 #include "playlistitemdelegate.h"
+#include "painterutils.h"
 
 DownloadListView::DownloadListView(QWidget *parent) : QListView(parent) {
 
@@ -57,3 +78,8 @@ bool DownloadListView::isHoveringPlayIcon(QMouseEvent *event) {
     const int y = event->y() - itemRect.y() - buttonRect.y();
     return x > 0 && x < buttonRect.width() && y > 0 && y < buttonRect.height();
 }
+
+void DownloadListView::paintEvent(QPaintEvent *event) {
+    QListView::paintEvent(event);
+    PainterUtils::topShadow(viewport());
+}