]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/icon_view.cpp
856cbd65d318665d2a4e4c8b1d61f4c24a8ccb59
[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 <QApplication>
29 #include <QPainter>
30 #include <QRect>
31 #include <QStyleOptionViewItem>
32 #include <QFontMetrics>
33 #include <QPixmapCache>
34
35 #include "assert.h"
36
37 #define RECT_SIZE           100
38 #define ART_SIZE            64
39 #define OFFSET              (RECT_SIZE-64)/2
40 #define ITEMS_SPACING       10
41 #define ART_RADIUS          5
42
43
44 static const QRect drawRect = QRect( 0, 0, RECT_SIZE, RECT_SIZE );
45 static const QRect artRect = drawRect.adjusted( OFFSET - 1, 0, - OFFSET, - OFFSET *2 );
46
47 void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
48 {
49     PLItem *currentItem = static_cast<PLItem*>( index.internalPointer() );
50     assert( currentItem );
51
52     char *meta;
53
54     meta = input_item_GetTitleFbName( currentItem->inputItem() );
55     QString title = qfu( meta );
56     free( meta );
57
58     meta = input_item_GetArtist( currentItem->inputItem() );
59     QString artist = qfu( meta );
60     free( meta );
61
62     QString artUrl = InputManager::decodeArtURL( currentItem->inputItem() );
63
64     // look up through all children and use the first picture found
65     if( artUrl.isEmpty() )
66     {
67         int children = currentItem->childCount();
68         for( int i = 0; i < children; i++ )
69         {
70             PLItem *child = currentItem->child( i );
71             artUrl = InputManager::decodeArtURL( child->inputItem() );
72             if( !artUrl.isEmpty() )
73                 break;
74         }
75     }
76
77     /*if( option.state & QStyle::State_Selected )
78          painter->fillRect(option.rect, option.palette.highlight());*/
79     QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option,
80                                           painter );
81
82     // picture where all the rendering happens and which will be cached
83     QPixmap pix;
84
85     QString key = title + artist + artUrl;
86     if(QPixmapCache::find( key, pix ))
87     {
88         // cool, we found it in the cache
89         painter->drawPixmap( option.rect, pix );
90         return;
91     }
92
93     // load album art
94     QPixmap artPix;
95     if( artUrl.isEmpty() || !artPix.load( artUrl ) )
96         artPix = QPixmap( ":/noart64" );
97     else
98         artPix = artPix.scaled( ART_SIZE, ART_SIZE,
99                 Qt::KeepAspectRatioByExpanding );
100
101     pix = QPixmap( RECT_SIZE, RECT_SIZE );
102     pix.fill( Qt::transparent );
103
104     QPainter *pixpainter = new QPainter( &pix );
105
106     pixpainter->setRenderHints(
107             QPainter::Antialiasing | QPainter::SmoothPixmapTransform );
108
109     // Draw the drop shadow
110     pixpainter->save();
111     pixpainter->setOpacity( 0.7 );
112     pixpainter->setBrush( QBrush( Qt::gray ) );
113     pixpainter->drawRoundedRect( artRect.adjusted( 2, 2, 2, 2 ), ART_RADIUS, ART_RADIUS );
114     pixpainter->restore();
115
116     // Draw the art pix
117     QPainterPath artRectPath;
118     artRectPath.addRoundedRect( artRect, ART_RADIUS, ART_RADIUS );
119     pixpainter->setClipPath( artRectPath );
120     pixpainter->drawPixmap( artRect, artPix );
121     pixpainter->setClipping( false );
122
123     QColor text = qApp->palette().text().color();
124
125     // Draw title
126     pixpainter->setPen( text );
127     QFont font;
128     font.setPointSize( 7 );
129     font.setItalic(true);
130     font.setBold( index.data( Qt::FontRole ).value<QFont>().bold() );
131     pixpainter->setFont( font );
132     QFontMetrics fm = pixpainter->fontMetrics();
133     QRect textRect = drawRect.adjusted( 1, ART_SIZE + 4, 0, -1 );
134     textRect.setHeight( fm.height() + 2 );
135
136     pixpainter->drawText( textRect,
137                       fm.elidedText( title, Qt::ElideRight, textRect.width() ),
138                       QTextOption( Qt::AlignCenter ) );
139
140     // Draw artist
141     pixpainter->setPen( text.lighter( 240 ) );
142     font.setItalic( false );
143     pixpainter->setFont( font );
144     fm = pixpainter->fontMetrics();
145
146
147     textRect = textRect.adjusted( 0, textRect.height(),
148                                     0, textRect.height() );
149     pixpainter->drawText(  textRect,
150                     fm.elidedText( artist, Qt::ElideRight, textRect.width() ),
151                     QTextOption( Qt::AlignCenter ) );
152
153     delete pixpainter; // Ensure all paint operations have finished
154
155     // Here real drawing happens
156     painter->drawPixmap( option.rect, pix );
157
158     // Cache the rendering
159     QPixmapCache::insert( key, pix );
160 }
161
162 QSize PlListViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
163 {
164     return QSize( RECT_SIZE, RECT_SIZE);
165 }
166
167
168 PlIconView::PlIconView( PLModel *model, QWidget *parent ) : QListView( parent )
169 {
170     setModel( model );
171     setViewMode( QListView::IconMode );
172     setMovement( QListView::Static );
173     setResizeMode( QListView::Adjust );
174     setGridSize( QSize( RECT_SIZE, RECT_SIZE ) );
175     setUniformItemSizes( true );
176     setSpacing( ITEMS_SPACING );
177     setWrapping( true );
178     setSelectionMode( QAbstractItemView::ExtendedSelection );
179     setAcceptDrops( true );
180
181     PlListViewItemDelegate *pl = new PlListViewItemDelegate();
182     setItemDelegate( pl );
183 }