]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/icon_view.cpp
Use ifdef's to guard against setlocale() in vlc-cache-gen
[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 #define ART_RADIUS          5
40
41 void PlListViewItemDelegate::paint( QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const
42 {
43     painter->setRenderHints( QPainter::Antialiasing | QPainter::SmoothPixmapTransform );
44
45     /*if( option.state & QStyle::State_Selected )
46          painter->fillRect(option.rect, option.palette.highlight());*/
47     QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option, painter );
48
49     PLItem *currentItem = static_cast<PLItem*>( index.internalPointer() );
50     assert( currentItem );
51
52     QPixmap pix;
53     QString url = InputManager::decodeArtURL( currentItem->inputItem() );
54
55     if( !url.isEmpty() && pix.load( url ) )
56     {
57         pix = pix.scaled( ART_SIZE, ART_SIZE, Qt::KeepAspectRatioByExpanding );
58     }
59     else
60     {
61         pix = QPixmap( ":/noart64" );
62     }
63
64     QRect artRect = option.rect.adjusted( OFFSET - 1, 0, - OFFSET, - OFFSET *2 );
65     QPainterPath artRectPath;
66     artRectPath.addRoundedRect( artRect, ART_RADIUS, ART_RADIUS );
67
68     // Draw the drop shadow
69     painter->save();
70     painter->setOpacity( 0.7 );
71     painter->setBrush( QBrush( Qt::gray ) );
72     painter->drawRoundedRect( artRect.adjusted( 2, 2, 2, 2 ), ART_RADIUS, ART_RADIUS );
73     painter->restore();
74
75     // Draw the art pixmap
76     painter->setClipPath( artRectPath );
77     painter->drawPixmap( artRect, pix );
78     painter->setClipping( false );
79
80     painter->setFont( QFont( "Verdana", 7 ) );
81
82     QRect textRect = option.rect.adjusted( 1, ART_SIZE + 2, -1, -1 );
83     painter->drawText( textRect, qfu( input_item_GetTitleFbName( currentItem->inputItem() ) ),
84                        QTextOption( Qt::AlignCenter ) );
85
86 }
87
88 QSize PlListViewItemDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
89 {
90     return QSize( RECT_SIZE, RECT_SIZE);
91 }
92
93
94 PlIconView::PlIconView( PLModel *model, QWidget *parent ) : QListView( parent )
95 {
96     setModel( model );
97     setViewMode( QListView::IconMode );
98     setMovement( QListView::Static );
99     setResizeMode( QListView::Adjust );
100     setGridSize( QSize( RECT_SIZE, RECT_SIZE ) );
101     setUniformItemSizes( true );
102     setSpacing( ITEMS_SPACING );
103     setWrapping( true );
104     setSelectionMode( QAbstractItemView::ExtendedSelection );
105     setAcceptDrops( true );
106
107     PlListViewItemDelegate *pl = new PlListViewItemDelegate();
108     setItemDelegate( pl );
109
110     CONNECT( this, activated( const QModelIndex & ), this, activate( const QModelIndex & ) );
111 }
112
113 void PlIconView::activate( const QModelIndex & index )
114 {
115     if( model()->hasChildren( index ) )
116         setRootIndex( index );
117     else
118     {
119         PLModel *plModel = qobject_cast<PLModel*>( model() );
120         if( !plModel ) return;
121         plModel->activateItem( index );
122     }
123 }