1 /*****************************************************************************
2 * playlist.cpp : Custom widgets for the playlist
3 ****************************************************************************
4 * Copyright © 2007-2008 the VideoLAN team
7 * Authors: Clément Stenac <zorglub@videolan.org>
8 * Jean-Baptiste Kempf <jb@videolan.org>
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.
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.
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 *****************************************************************************/
29 #include "components/playlist/panels.hpp"
30 #include "components/playlist/selector.hpp"
31 #include "components/playlist/playlist.hpp"
32 #include "input_manager.hpp" /* art signal */
36 #include <QSpacerItem>
38 #include <QPushButton>
39 #include <QVBoxLayout>
41 /**********************************************************************
42 * Playlist Widget. The embedded playlist
43 **********************************************************************/
45 PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i,
47 : p_intf ( _p_i ), parent( _parent )
49 setContentsMargins( 3, 3, 3, 3 );
51 /* Left Part and design */
52 QSplitter *leftW = new QSplitter( Qt::Vertical, this );
55 selector = new PLSelector( this, p_intf, THEPL );
56 leftW->addWidget( selector );
58 /* Create a Container for the Art Label
59 in order to have a beautiful resizing for the selector above it */
60 QWidget *artContainer = new QWidget;
61 QHBoxLayout *artContLay = new QHBoxLayout( artContainer );
62 artContLay->setMargin( 0 );
63 artContLay->setSpacing( 0 );
64 artContainer->setMaximumHeight( 128 );
67 art = new ArtLabel( artContainer, p_intf );
68 art->setToolTip( qtr( "Double click to get media information" ) );
70 artContLay->addWidget( art, 1 );
72 leftW->addWidget( artContainer );
74 /* Initialisation of the playlist */
75 playlist_t * p_playlist = THEPL;
77 playlist_item_t *p_root =
78 playlist_GetPreferredNode( THEPL, THEPL->p_local_category );
81 rightPanel = new StandardPLPanel( this, p_intf, THEPL, p_root );
83 /* Connect the activation of the selector to a redefining of the PL */
84 CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
86 /* Connect the activated() to the rootChanged() signal
87 This will be used by StandardPLPanel to setCurrentRootId, that will
88 change the label of the addButton */
89 connect( selector, SIGNAL( activated( int ) ),
90 this, SIGNAL( rootChanged( int ) ) );
92 /* Forward removal requests from the selector to the main panel */
93 CONNECT( qobject_cast<PLSelector *>( selector )->model,
95 qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
97 emit rootChanged( p_root->i_id );
100 CONNECT( THEMIM->getIM(), artChanged( input_item_t* ) ,
101 art, update( input_item_t* ) );
103 /* Add the two sides of the QSplitter */
105 addWidget( rightPanel );
108 sizeList << 180 << 420 ;
109 setSizes( sizeList );
110 //setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
111 setStretchFactor( 0, 0 );
112 setStretchFactor( 1, 3 );
113 leftW->setMaximumWidth( 250 );
114 setCollapsible( 1, false );
116 /* In case we want to keep the splitter informations */
117 // components shall never write there setting to a fixed location, may infer
118 // with other uses of the same component...
119 // getSettings()->beginGroup( "playlist" );
120 restoreState( getSettings()->value("splitterSizes").toByteArray());
122 setAcceptDrops( true );
123 setWindowTitle( qtr( "Playlist" ) );
124 setWindowIcon( QApplication::windowIcon() );
127 PlaylistWidget::~PlaylistWidget()
129 getSettings()->beginGroup("playlistdialog");
130 getSettings()->setValue( "splitterSizes", saveState() );
131 getSettings()->endGroup();
134 #include "main_interface.hpp"
135 void PlaylistWidget::dropEvent(QDropEvent *event)
137 if( p_intf->p_sys->p_mi )
138 p_intf->p_sys->p_mi->dropEvent( event );
140 void PlaylistWidget::dragEnterEvent(QDragEnterEvent *event)
142 event->acceptProposedAction();
145 void PlaylistWidget::closeEvent( QCloseEvent *event )
147 if( THEDP->isDying() )
153 if( p_intf->p_sys->p_mi )
154 p_intf->p_sys->p_mi->togglePlaylist();