]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist.cpp
Qt4 - remove an unnecessary cast
[vlc] / modules / gui / qt4 / components / playlist / playlist.cpp
1 /*****************************************************************************
2  * playlist.cpp : Custom widgets for the playlist
3  ****************************************************************************
4  * Copyright © 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * ( at your option ) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include "components/playlist/panels.hpp"
26 #include "components/playlist/selector.hpp"
27 #include "components/playlist/playlist.hpp"
28 #include "input_manager.hpp" /* art */
29
30 #include <QSettings>
31 #include <QLabel>
32 #include <QSpacerItem>
33 #include <QCursor>
34 #include <QPushButton>
35 #include <QVBoxLayout>
36
37 /**********************************************************************
38  * Playlist Widget. The embedded playlist
39  **********************************************************************/
40
41 PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QSettings *settings, QWidget *_parent ) :
42                                 p_intf ( _p_i ), parent( _parent )
43 {
44     /* Left Part and design */
45     QSplitter *leftW = new QSplitter( Qt::Vertical, this );
46
47     /* Source Selector */
48     selector = new PLSelector( this, p_intf, THEPL );
49     leftW->addWidget( selector );
50
51     /* Art label */
52     art = new QLabel( "" );
53     art->setMinimumHeight( 128 );
54     art->setMinimumWidth( 128 );
55     art->setMaximumHeight( 128 );
56     art->setMaximumWidth( 128 );
57     art->setScaledContents( true );
58     art->setPixmap( QPixmap( ":/noart.png" ) );
59     leftW->addWidget( art );
60
61     /* Initialisation of the playlist */
62     playlist_item_t *p_root =
63                   playlist_GetPreferredNode( THEPL, THEPL->p_local_category );
64
65     rightPanel = new StandardPLPanel( this, p_intf, THEPL, p_root );
66
67     /* Connect the activation of the selector to a redefining of the PL */
68     CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
69
70     /* Connect the activated() to the rootChanged() signal
71        This will be used by StandardPLPanel to setCurrentRootId, that will 
72        change the label of the addButton  */
73     connect( selector, SIGNAL( activated( int ) ),
74              this, SIGNAL( rootChanged( int ) ) );
75
76     CONNECT( THEMIM->getIM(), artChanged( QString ) , this, setArt( QString ) );
77     /* Forward removal requests from the selector to the main panel */
78     CONNECT( qobject_cast<PLSelector *>( selector )->model,
79              shouldRemove( int ),
80              qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
81
82     emit rootChanged( p_root->i_id );
83
84     /* Add the two sides of the QSplitter */
85     addWidget( leftW );
86     addWidget( rightPanel );
87
88     QList<int> sizeList;
89     sizeList << 180 << 420 ;
90     setSizes( sizeList );
91     setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
92     setStretchFactor( 0, 0 );
93     setStretchFactor( 1, 3 );
94     leftW->setMaximumWidth( 250 );
95     setCollapsible( 1, false );
96
97     /* In case we want to keep the splitter informations */
98     settings->beginGroup( "playlist" );
99     restoreState( settings->value("splitterSizes").toByteArray());
100     resize( settings->value("size", QSize(600, 300)).toSize());
101     move( settings->value("pos", QPoint( 0, 400)).toPoint());
102     settings->endGroup();
103 }
104
105 void PlaylistWidget::setArt( QString url )
106 {
107     if( url.isNull() )
108     {
109         art->setPixmap( QPixmap( ":/noart.png" ) );
110         emit artSet( url );
111     }
112     else if( prevArt != url )
113     {
114         art->setPixmap( QPixmap( url ) );
115         prevArt = url;
116         emit artSet( url );
117     }
118 }
119
120 QSize PlaylistWidget::sizeHint() const
121 {
122    return QSize( 600 , 300 );
123 }
124
125 PlaylistWidget::~PlaylistWidget()
126 {}
127
128 void PlaylistWidget::savingSettings( QSettings *settings )
129 {
130     settings->beginGroup( "playlist" );
131     settings->setValue( "pos", parent->pos() );
132     settings->setValue( "size", parent->size() );
133     settings->setValue( "splitterSizes", saveState() );
134     settings->endGroup();
135 }
136