]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist.cpp
Qt4 - I prefer to have the left pane to not grow when the whole playlist is widenthed...
[vlc] / modules / gui / qt4 / components / playlist / playlist.cpp
1 /*****************************************************************************
2  * interface_widgets.cpp : Custom widgets for the main interface
3  ****************************************************************************
4  * Copyright ( C ) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Rafaël Carré <funman@videolanorg>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * ( at your option ) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include "components/playlist/panels.hpp"
27 #include "components/playlist/selector.hpp"
28 #include "components/playlist/playlist.hpp"
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 ) :
42                                 p_intf ( _p_i )
43 {
44     /* Left Part and design */
45     QWidget *leftW = new QWidget( this );
46     QVBoxLayout *left = new QVBoxLayout( leftW );
47
48     /* Source Selector */
49     selector = new PLSelector( this, p_intf, THEPL );
50     left->addWidget( selector );
51
52     /* Art label */
53     art = new QLabel( "" );
54     art->setMinimumHeight( 128 );
55     art->setMinimumWidth( 128 );
56     art->setMaximumHeight( 128 );
57     art->setMaximumWidth( 128 );
58     art->setScaledContents( true );
59     art->setPixmap( QPixmap( ":/noart.png" ) );
60     left->addWidget( art );
61
62     /* Initialisation of the playlist */
63     playlist_item_t *p_root = playlist_GetPreferredNode( THEPL,
64                                                 THEPL->p_local_category );
65
66     rightPanel = qobject_cast<PLPanel *>( new StandardPLPanel( this,
67                               p_intf, THEPL, p_root ) );
68
69     /* Connects */
70     CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
71
72     CONNECT( qobject_cast<StandardPLPanel *>( rightPanel )->model,
73              artSet( QString ) , this, setArt( QString ) );
74     /* Forward removal requests from the selector to the main panel */
75     CONNECT( qobject_cast<PLSelector *>( selector )->model,
76              shouldRemove( int ),
77              qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
78
79     connect( selector, SIGNAL( activated( int ) ),
80              this, SIGNAL( rootChanged( int ) ) );
81     emit rootChanged( p_root->i_id );
82
83     /* Add the two sides of the QSplitter */
84     addWidget( leftW );
85     addWidget( rightPanel );
86
87     leftW->setMaximumWidth( 250 );
88     setCollapsible( 1, false );
89
90     QList<int> sizeList;
91     sizeList << 180 << 420 ;
92     setSizes( sizeList );
93     setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
94     setStretchFactor( 0, 0 );
95     setStretchFactor( 1, 3 );
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", pos() );
132     settings->setValue( "size", size() );
133     settings->setValue("splitterSizes", saveState() );
134     settings->endGroup();
135 }
136