]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/icon_view.cpp
Qt: add some spacing between items
[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
40 void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
41 {
42     painter->setRenderHints( QPainter::Antialiasing | QPainter::SmoothPixmapTransform );
43
44     /*if( option.state & QStyle::State_Selected )
45          painter->fillRect(option.rect, option.palette.highlight());*/
46     QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option, painter );
47
48     PLItem *currentItem = static_cast<PLItem*>( index.internalPointer() );
49     assert( currentItem );
50
51     QPixmap pix;
52     QString url = InputManager::decodeArtURL( currentItem->inputItem() );
53
54     if( !url.isEmpty() && pix.load( url ) )
55     {
56         pix = pix.scaled( ART_SIZE, ART_SIZE, Qt::KeepAspectRatioByExpanding );
57     }
58     else
59     {
60         pix = QPixmap( ":/noart64" );
61     }
62
63     QRect artRect = option.rect.adjusted( OFFSET - 1, 0, - OFFSET, - OFFSET *2 );
64     QPainterPath artRectPath;
65     artRectPath.addRoundedRect( artRect, 7, 7 );
66
67     painter->drawPixmap( artRect, pix );
68     painter->setClipPath( artRectPath );
69     painter->drawPixmap( artRect, pix );
70     painter->setClipping( false );
71
72     painter->setFont( QFont( "Verdana", 7 ) );
73
74     QRect textRect = option.rect.adjusted( 1, ART_SIZE + 2, -1, -1 );
75     painter->drawText( textRect, qfu( input_item_GetTitle( currentItem->inputItem() ) ),
76                        QTextOption( Qt::AlignCenter ) );
77
78 }
79
80 QSize PlListViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
81 {
82     return QSize( RECT_SIZE, RECT_SIZE);
83 }
84
85
86 PlIconView::PlIconView( PLModel *model, QWidget *parent ) : QListView( parent )
87 {
88     setModel( model );
89     setViewMode( QListView::IconMode );
90     setMovement( QListView::Static );
91     setResizeMode( QListView::Adjust );
92     setGridSize( QSize( 100, 100 ) );
93     setSpacing( ITEMS_SPACING );
94     setWrapping( true );
95
96     PlListViewItemDelegate *pl = new PlListViewItemDelegate();
97     setItemDelegate( pl );
98 }