]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/icon_view.cpp
qt4: respect qtconfig fontsize on icon_view
[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 "components/playlist/sorting.h"
27 #include "input_manager.hpp"
28
29 #include <QApplication>
30 #include <QPainter>
31 #include <QRect>
32 #include <QStyleOptionViewItem>
33 #include <QFontMetrics>
34 #include <QPixmapCache>
35 #include <QDrag>
36 #include <QDragMoveEvent>
37
38 #include "assert.h"
39
40 #define ART_SIZE_W          110
41 #define ART_SIZE_H          80
42 #define ART_RADIUS          5
43 #define SPACER              5
44
45 QString AbstractPlViewItemDelegate::getMeta( const QModelIndex & index, int meta ) const
46 {
47     return index.model()->index( index.row(),
48                                   PLModel::columnFromMeta( meta ),
49                                   index.parent() )
50                                 .data().toString();
51 }
52
53 void AbstractPlViewItemDelegate::paintBackground(
54     QPainter *painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
55 {
56     /* FIXME: This does not indicate item selection in all QStyles, so for the time being we
57        have to draw it ourselves, to ensure visible effect of selection on all platforms */
58     /* QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option,
59                                             painter ); */
60
61     painter->save();
62     QRect r = option.rect.adjusted( 0, 0, -1, -1 );
63     if( option.state & QStyle::State_Selected )
64     {
65         painter->setBrush( option.palette.color( QPalette::Highlight ) );
66         painter->setPen( option.palette.color( QPalette::Highlight ).darker( 150 ) );
67         painter->drawRect( r );
68     }
69     else if( index.data( PLModel::IsCurrentRole ).toBool() )
70     {
71         painter->setBrush( QBrush( Qt::lightGray ) );
72         painter->setPen( QColor( Qt::darkGray ) );
73         painter->drawRect( r );
74     }
75     if( option.state & QStyle::State_MouseOver )
76     {
77         painter->setOpacity( 0.5 );
78         painter->setPen( Qt::NoPen );
79         painter->setBrush( option.palette.color( QPalette::Highlight ).lighter( 150 ) );
80         painter->drawRect( option.rect );
81     }
82     painter->restore();
83 }
84
85 QPixmap AbstractPlViewItemDelegate::getArtPixmap( const QModelIndex & index, const QSize & size ) const
86 {
87     PLItem *item = static_cast<PLItem*>( index.internalPointer() );
88     assert( item );
89
90     QString artUrl = InputManager::decodeArtURL( item->inputItem() );
91
92     if( artUrl.isEmpty() )
93     {
94         for( int i = 0; i < item->childCount(); i++ )
95         {
96             artUrl = InputManager::decodeArtURL( item->child( i )->inputItem() );
97             if( !artUrl.isEmpty() )
98                 break;
99         }
100     }
101
102     QPixmap artPix;
103
104     QString key = artUrl + QString("%1%2").arg(size.width()).arg(size.height());
105
106     if( !QPixmapCache::find( key, artPix ))
107     {
108         if( artUrl.isEmpty() || !artPix.load( artUrl ) )
109         {
110             key = QString("noart%1%2").arg(size.width()).arg(size.height());
111             if( !QPixmapCache::find( key, artPix ) )
112             {
113                 artPix = QPixmap( ":/noart" ).scaled( size,
114                                                       Qt::KeepAspectRatio,
115                                                       Qt::SmoothTransformation );
116                 QPixmapCache::insert( key, artPix );
117             }
118         }
119         else
120         {
121             artPix = artPix.scaled( size, Qt::KeepAspectRatio, Qt::SmoothTransformation );
122             QPixmapCache::insert( key, artPix );
123         }
124     }
125
126     return artPix;
127 }
128
129 void PlIconViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
130 {
131     QString title = getMeta( index, COLUMN_TITLE );
132     QString artist = getMeta( index, COLUMN_ARTIST );
133
134     QPixmap artPix = getArtPixmap( index, QSize( ART_SIZE_W, ART_SIZE_H ) );
135
136     paintBackground( painter, option, index );
137
138     painter->save();
139
140     QRect artRect( option.rect.x() + 5 + ( ART_SIZE_W - artPix.width() ) / 2,
141                    option.rect.y() + 5 + ( ART_SIZE_H - artPix.height() ) / 2,
142                    artPix.width(), artPix.height() );
143
144     // Draw the drop shadow
145     painter->save();
146     painter->setOpacity( 0.7 );
147     painter->setBrush( QBrush( Qt::darkGray ) );
148     painter->setPen( Qt::NoPen );
149     painter->drawRoundedRect( artRect.adjusted( 0, 0, 2, 2 ), ART_RADIUS, ART_RADIUS );
150     painter->restore();
151
152     // Draw the art pixmap
153     QPainterPath artRectPath;
154     artRectPath.addRoundedRect( artRect, ART_RADIUS, ART_RADIUS );
155     painter->setClipPath( artRectPath );
156     painter->drawPixmap( artRect, artPix );
157     painter->setClipping( false );
158
159     if( option.state & QStyle::State_Selected )
160         painter->setPen( option.palette.color( QPalette::HighlightedText ) );
161
162     QFont font( index.data( Qt::FontRole ).value<QFont>() );
163
164     //Draw children indicator
165     if( !index.data( PLModel::IsLeafNodeRole ).toBool() )
166     {
167         painter->setOpacity( 0.75 );
168         QRect r( option.rect );
169         r.setSize( QSize( 25, 25 ) );
170         r.translate( 5, 5 );
171         painter->fillRect( r, option.palette.color( QPalette::Mid ) );
172         painter->setOpacity( 1.0 );
173         QPixmap dirPix( ":/type/node" );
174         QRect r2( dirPix.rect() );
175         r2.moveCenter( r.center() );
176         painter->drawPixmap( r2, dirPix );
177     }
178
179     // Draw title
180     font.setItalic( true );
181     painter->setFont( font );
182
183     QFontMetrics fm = painter->fontMetrics();
184     QRect textRect = option.rect.adjusted( 1, ART_SIZE_H + 10, 0, -1 );
185     textRect.setHeight( fm.height() );
186
187     painter->drawText( textRect,
188                       fm.elidedText( title, Qt::ElideRight, textRect.width() ),
189                       QTextOption( Qt::AlignCenter ) );
190
191     // Draw artist
192     painter->setPen( painter->pen().color().lighter( 150 ) );
193     font.setItalic( false );
194     painter->setFont( font );
195     fm = painter->fontMetrics();
196
197     textRect.moveTop( textRect.bottom() + 1 );
198
199     painter->drawText(  textRect,
200                         fm.elidedText( artist, Qt::ElideRight, textRect.width() ),
201                         QTextOption( Qt::AlignCenter ) );
202
203     painter->restore();
204 }
205
206 QSize PlIconViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
207 {
208     QFont f( index.data( Qt::FontRole ).value<QFont>() );
209     f.setBold( true );
210     QFontMetrics fm( f );
211     int textHeight = fm.height();
212     QSize sz ( ART_SIZE_W + 2 * SPACER,
213                ART_SIZE_H + 3 * SPACER + 2 * textHeight + 1 );
214     return sz;
215 }
216
217
218 #define LISTVIEW_ART_SIZE 45
219
220 void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
221 {
222     QModelIndex parent = index.parent();
223     QModelIndex i;
224
225     QString title = getMeta( index, COLUMN_TITLE );
226     QString duration = getMeta( index, COLUMN_DURATION );
227     if( !duration.isEmpty() ) title += QString(" [%1]").arg( duration );
228
229     QString artist = getMeta( index, COLUMN_ARTIST );
230     QString album = getMeta( index, COLUMN_ALBUM );
231     QString trackNum = getMeta( index, COLUMN_TRACK_NUMBER );
232     QString artistAlbum = artist;
233     if( !album.isEmpty() )
234     {
235         if( !artist.isEmpty() ) artistAlbum += ": ";
236         artistAlbum += album;
237         if( !trackNum.isEmpty() ) artistAlbum += QString( " [#%1]" ).arg( trackNum );
238     }
239
240     QPixmap artPix = getArtPixmap( index, QSize( LISTVIEW_ART_SIZE, LISTVIEW_ART_SIZE ) );
241
242     //Draw selection rectangle and current playing item indication
243     paintBackground( painter, option, index );
244
245     QRect artRect( artPix.rect() );
246     artRect.moveCenter( QPoint( artRect.center().x() + 3,
247                                 option.rect.center().y() ) );
248     //Draw album art
249     painter->drawPixmap( artRect, artPix );
250
251     //Start drawing text
252     painter->save();
253
254     if( option.state & QStyle::State_Selected )
255         painter->setPen( option.palette.color( QPalette::HighlightedText ) );
256
257     QTextOption textOpt( Qt::AlignVCenter | Qt::AlignLeft );
258     textOpt.setWrapMode( QTextOption::NoWrap );
259
260     QFont f( index.data( Qt::FontRole ).value<QFont>() );
261
262     //Draw title info
263     f.setItalic( true );
264     painter->setFont( f );
265     QFontMetrics fm( painter->fontMetrics() );
266
267     QRect textRect = option.rect.adjusted( LISTVIEW_ART_SIZE + 10, 0, -10, 0 );
268     if( !artistAlbum.isEmpty() )
269     {
270         textRect.setHeight( fm.height() );
271         textRect.moveBottom( option.rect.center().y() - 2 );
272     }
273
274     //Draw children indicator
275     if( !index.data( PLModel::IsLeafNodeRole ).toBool() )
276     {
277         QPixmap dirPix = QPixmap( ":/type/node" );
278         painter->drawPixmap( QPoint( textRect.x(), textRect.center().y() - dirPix.height() / 2 ),
279                              dirPix );
280         textRect.setLeft( textRect.x() + dirPix.width() + 5 );
281     }
282
283     painter->drawText( textRect,
284                        fm.elidedText( title, Qt::ElideRight, textRect.width() ),
285                        textOpt );
286
287     // Draw artist and album info
288     if( !artistAlbum.isEmpty() )
289     {
290         f.setItalic( false );
291         painter->setFont( f );
292         fm = painter->fontMetrics();
293
294         textRect.moveTop( textRect.bottom() + 4 );
295         textRect.setLeft( textRect.x() + 20 );
296
297         painter->drawText( textRect,
298                            fm.elidedText( artistAlbum, Qt::ElideRight, textRect.width() ),
299                            textOpt );
300     }
301
302     painter->restore();
303 }
304
305 QSize PlListViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
306 {
307   QFont f;
308   f.setBold( true );
309   QFontMetrics fm( f );
310   int height = qMax( LISTVIEW_ART_SIZE, 2 * fm.height() + 4 ) + 6;
311   return QSize( 0, height );
312 }
313
314 static void plViewStartDrag( QAbstractItemView *view, const Qt::DropActions & supportedActions )
315 {
316     QDrag *drag = new QDrag( view );
317     drag->setPixmap( QPixmap( ":/noart64" ) );
318     drag->setMimeData( view->model()->mimeData(
319         view->selectionModel()->selectedIndexes() ) );
320     drag->exec( supportedActions );
321 }
322
323 static void plViewDragMoveEvent( QAbstractItemView *view, QDragMoveEvent * event )
324 {
325     if( event->keyboardModifiers() & Qt::ControlModifier &&
326         event->possibleActions() & Qt::CopyAction )
327         event->setDropAction( Qt::CopyAction );
328     else event->acceptProposedAction();
329 }
330
331 PlIconView::PlIconView( PLModel *model, QWidget *parent ) : QListView( parent )
332 {
333     PlIconViewItemDelegate *delegate = new PlIconViewItemDelegate( this );
334
335     setModel( model );
336     setViewMode( QListView::IconMode );
337     setMovement( QListView::Static );
338     setResizeMode( QListView::Adjust );
339     setGridSize( delegate->sizeHint() );
340     setWrapping( true );
341     setUniformItemSizes( true );
342     setSelectionMode( QAbstractItemView::ExtendedSelection );
343     setDragEnabled(true);
344     /* dropping in QListView::IconMode does not seem to work */
345     //setAcceptDrops( true );
346     //setDropIndicatorShown(true);
347
348     setItemDelegate( delegate );
349 }
350
351 void PlIconView::startDrag ( Qt::DropActions supportedActions )
352 {
353     plViewStartDrag( this, supportedActions );
354 }
355
356 void PlIconView::dragMoveEvent ( QDragMoveEvent * event )
357 {
358     plViewDragMoveEvent( this, event );
359     QAbstractItemView::dragMoveEvent( event );
360 }
361
362 PlListView::PlListView( PLModel *model, QWidget *parent ) : QListView( parent )
363 {
364     setModel( model );
365     setViewMode( QListView::ListMode );
366     setUniformItemSizes( true );
367     setSelectionMode( QAbstractItemView::ExtendedSelection );
368     setAlternatingRowColors( true );
369     setDragEnabled(true);
370     setAcceptDrops( true );
371     setDropIndicatorShown(true);
372
373     PlListViewItemDelegate *delegate = new PlListViewItemDelegate( this );
374     setItemDelegate( delegate );
375 }
376
377 void PlListView::startDrag ( Qt::DropActions supportedActions )
378 {
379     plViewStartDrag( this, supportedActions );
380 }
381
382 void PlListView::dragMoveEvent ( QDragMoveEvent * event )
383 {
384     plViewDragMoveEvent( this, event );
385     QAbstractItemView::dragMoveEvent( event );
386 }
387
388 void PlTreeView::startDrag ( Qt::DropActions supportedActions )
389 {
390     plViewStartDrag( this, supportedActions );
391 }
392
393 void PlTreeView::dragMoveEvent ( QDragMoveEvent * event )
394 {
395     plViewDragMoveEvent( this, event );
396     QAbstractItemView::dragMoveEvent( event );
397 }