]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/icon_view.cpp
Qt: use styled item highlighting in playlist 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 "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
39 void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
40 {
41     painter->setRenderHint( QPainter::Antialiasing );
42
43     /*if( option.state & QStyle::State_Selected )
44          painter->fillRect(option.rect, option.palette.highlight());*/
45     QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option, painter );
46
47     PLItem *currentItem = static_cast<PLItem*>( index.internalPointer() );
48     assert( currentItem );
49
50     QPixmap pix;
51     QString url = InputManager::decodeArtURL( currentItem->inputItem() );
52
53     if( !url.isEmpty() && pix.load( url ) )
54     {
55         pix = pix.scaled( ART_SIZE, ART_SIZE, Qt::KeepAspectRatioByExpanding );
56     }
57     else
58     {
59         pix = QPixmap( ":/noart64" );
60     }
61
62     QRect art_rect = option.rect.adjusted( OFFSET - 1, 0, - OFFSET, - OFFSET *2 );
63
64     painter->drawPixmap( art_rect, pix );
65
66     painter->setFont( QFont( "Verdana", 7 ) );
67
68     QRect textRect = option.rect.adjusted( 1, ART_SIZE + 2, -1, -1 );
69     painter->drawText( textRect, qfu( input_item_GetTitle( currentItem->inputItem() ) ),
70                        QTextOption( Qt::AlignCenter ) );
71
72 }
73
74 QSize PlListViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
75 {
76     return QSize( RECT_SIZE, RECT_SIZE);
77 }
78
79
80 PlIconView::PlIconView( PLModel *model, QWidget *parent ) : QListView( parent )
81 {
82     setModel( model );
83     setViewMode( QListView::IconMode );
84     setMovement( QListView::Snap );
85
86     PlListViewItemDelegate *pl = new PlListViewItemDelegate();
87     setItemDelegate( pl );
88 }