]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/icon_view.cpp
Qt: iconView delegate: encode PLModel::IsCurrent(QModelIndex) into cache key
[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                   + QString( index.data( PLModel::IsCurrentRole ).toInt() );
87     if(QPixmapCache::find( key, pix ))
88     {
89         // cool, we found it in the cache
90         painter->drawPixmap( option.rect, pix );
91         return;
92     }
93
94     // load album art
95     QPixmap artPix;
96     if( artUrl.isEmpty() || !artPix.load( artUrl ) )
97         artPix = QPixmap( ":/noart64" );
98     else
99         artPix = artPix.scaled( ART_SIZE, ART_SIZE,
100                 Qt::KeepAspectRatioByExpanding );
101
102     pix = QPixmap( RECT_SIZE, RECT_SIZE );
103     pix.fill( Qt::transparent );
104
105     QPainter *pixpainter = new QPainter( &pix );
106
107     pixpainter->setRenderHints(
108             QPainter::Antialiasing | QPainter::SmoothPixmapTransform );
109
110     // Draw the drop shadow
111     pixpainter->save();
112     pixpainter->setOpacity( 0.7 );
113     pixpainter->setBrush( QBrush( Qt::gray ) );
114     pixpainter->drawRoundedRect( artRect.adjusted( 2, 2, 2, 2 ), ART_RADIUS, ART_RADIUS );
115     pixpainter->restore();
116
117     // Draw the art pix
118     QPainterPath artRectPath;
119     artRectPath.addRoundedRect( artRect, ART_RADIUS, ART_RADIUS );
120     pixpainter->setClipPath( artRectPath );
121     pixpainter->drawPixmap( artRect, artPix );
122     pixpainter->setClipping( false );
123
124     QColor text = qApp->palette().text().color();
125
126     // Draw title
127     pixpainter->setPen( text );
128     QFont font;
129     font.setPointSize( 7 );
130     font.setItalic(true);
131     font.setBold( index.data( Qt::FontRole ).value<QFont>().bold() );
132     pixpainter->setFont( font );
133     QFontMetrics fm = pixpainter->fontMetrics();
134     QRect textRect = drawRect.adjusted( 1, ART_SIZE + 4, 0, -1 );
135     textRect.setHeight( fm.height() + 2 );
136
137     pixpainter->drawText( textRect,
138                       fm.elidedText( title, Qt::ElideRight, textRect.width() ),
139                       QTextOption( Qt::AlignCenter ) );
140
141     // Draw artist
142     pixpainter->setPen( text.lighter( 240 ) );
143     font.setItalic( false );
144     pixpainter->setFont( font );
145     fm = pixpainter->fontMetrics();
146
147
148     textRect = textRect.adjusted( 0, textRect.height(),
149                                     0, textRect.height() );
150     pixpainter->drawText(  textRect,
151                     fm.elidedText( artist, Qt::ElideRight, textRect.width() ),
152                     QTextOption( Qt::AlignCenter ) );
153
154     delete pixpainter; // Ensure all paint operations have finished
155
156     // Here real drawing happens
157     painter->drawPixmap( option.rect, pix );
158
159     // Cache the rendering
160     QPixmapCache::insert( key, pix );
161 }
162
163 QSize PlListViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
164 {
165     return QSize( RECT_SIZE, RECT_SIZE);
166 }
167
168
169 PlIconView::PlIconView( PLModel *model, QWidget *parent ) : QListView( parent )
170 {
171     setModel( model );
172     setViewMode( QListView::IconMode );
173     setMovement( QListView::Static );
174     setResizeMode( QListView::Adjust );
175     setGridSize( QSize( RECT_SIZE, RECT_SIZE ) );
176     setUniformItemSizes( true );
177     setSpacing( ITEMS_SPACING );
178     setWrapping( true );
179     setSelectionMode( QAbstractItemView::ExtendedSelection );
180     setAcceptDrops( true );
181
182     PlListViewItemDelegate *pl = new PlListViewItemDelegate();
183     setItemDelegate( pl );
184 }