]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/icon_view.cpp
Qt: add drow shadow effect
[vlc] / modules / gui / qt4 / components / playlist / icon_view.cpp
1 /*****************************************************************************
2  * icon_view.cpp : Icon view for the Playlist
3  ****************************************************************************
4  * Copyright © 2010 the VideoLAN team
5  * $Id$
6  *
7  * Authors:         Jean-Baptiste Kempf <jb@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "components/playlist/icon_view.hpp"
25 #include "components/playlist/playlist_model.hpp"
26 #include "input_manager.hpp"
27
28 #include <QPainter>
29 #include <QRect>
30 #include <QStyleOptionViewItem>
31 #include <QApplication>
32
33 #include "assert.h"
34
35 #define RECT_SIZE           100
36 #define ART_SIZE            64
37 #define OFFSET              (100-64)/2
38 #define ITEMS_SPACING       10
39 #define ART_RADIUS          7
40
41 void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
42 {
43     painter->setRenderHints( QPainter::Antialiasing | QPainter::SmoothPixmapTransform );
44
45     /*if( option.state & QStyle::State_Selected )
46          painter->fillRect(option.rect, option.palette.highlight());*/
47     QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option, painter );
48
49     PLItem *currentItem = static_cast<PLItem*>( index.internalPointer() );
50     assert( currentItem );
51
52     QPixmap pix;
53     QString url = InputManager::decodeArtURL( currentItem->inputItem() );
54
55     if( !url.isEmpty() && pix.load( url ) )
56     {
57         pix = pix.scaled( ART_SIZE, ART_SIZE, Qt::KeepAspectRatioByExpanding );
58     }
59     else
60     {
61         pix = QPixmap( ":/noart64" );
62     }
63
64     QRect artRect = option.rect.adjusted( OFFSET - 1, 0, - OFFSET, - OFFSET *2 );
65     QPainterPath artRectPath;
66     artRectPath.addRoundedRect( artRect, ART_RADIUS, ART_RADIUS );
67
68     // Draw the drop shadow
69     painter->save();
70     painter->setOpacity( 0.7 );
71     painter->setBrush( QBrush( Qt::gray ) );
72     painter->drawRoundedRect( artRect.adjusted( 2, 2, 2, 2 ), ART_RADIUS, ART_RADIUS );
73     painter->restore();
74
75     // Draw the art pixmap
76     painter->drawPixmap( artRect, pix );
77     painter->setClipPath( artRectPath );
78     painter->drawPixmap( artRect, pix );
79     painter->setClipping( false );
80
81     painter->setFont( QFont( "Verdana", 7 ) );
82
83     QRect textRect = option.rect.adjusted( 1, ART_SIZE + 2, -1, -1 );
84     painter->drawText( textRect, qfu( input_item_GetTitle( currentItem->inputItem() ) ),
85                        QTextOption( Qt::AlignCenter ) );
86
87 }
88
89 QSize PlListViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
90 {
91     return QSize( RECT_SIZE, RECT_SIZE);
92 }
93
94
95 PlIconView::PlIconView( PLModel *model, QWidget *parent ) : QListView( parent )
96 {
97     setModel( model );
98     setViewMode( QListView::IconMode );
99     setMovement( QListView::Static );
100     setResizeMode( QListView::Adjust );
101     setGridSize( QSize( 100, 100 ) );
102     setSpacing( ITEMS_SPACING );
103     setWrapping( true );
104
105     PlListViewItemDelegate *pl = new PlListViewItemDelegate();
106     setItemDelegate( pl );
107 }