]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
Qt4 - Main Interface: Advanced buttons are correctly integrated, cosmetic,
[vlc] / modules / gui / qt4 / components / interface_widgets.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  *
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 "dialogs_provider.hpp"
26 #include "qt4.hpp"
27 #include "components/interface_widgets.hpp"
28 #include "main_interface.hpp"
29 #include "input_manager.hpp"
30
31 #include "util/input_slider.hpp"
32 #include <vlc_vout.h>
33
34 #include <QLabel>
35 #include <QSpacerItem>
36 #include <QCursor>
37 #include <QPushButton>
38 #include <QHBoxLayout>
39 #include <QMenu>
40 #include <QPalette>
41 #include <QResizeEvent>
42
43 #define ICON_SIZE 300
44
45 /**********************************************************************
46  * Video Widget. A simple frame on which video is drawn
47  * This class handles resize issues
48  **********************************************************************/
49 static void *DoRequest( intf_thread_t *, vout_thread_t *, int*,int*,
50                         unsigned int *, unsigned int * );
51 static void DoRelease( intf_thread_t *, void * );
52 static int DoControl( intf_thread_t *, void *, int, va_list );
53
54 VideoWidget::VideoWidget( intf_thread_t *_p_i ) : QFrame( NULL ), p_intf( _p_i )
55 {
56     vlc_mutex_init( p_intf, &lock );
57     p_vout = NULL;
58     CONNECT( this, askResize(), this, SetMinSize() );
59     setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Preferred );
60 }
61
62 VideoWidget::~VideoWidget()
63 {
64     vlc_mutex_lock( &lock );
65     if( p_vout )
66     {
67         if( !p_intf->psz_switch_intf )
68         {
69             if( vout_Control( p_vout, VOUT_CLOSE ) != VLC_SUCCESS )
70                 vout_Control( p_vout, VOUT_REPARENT );
71         }
72         else
73         {
74             if( vout_Control( p_vout, VOUT_REPARENT ) != VLC_SUCCESS )
75                 vout_Control( p_vout, VOUT_CLOSE );
76         }
77     }
78     vlc_mutex_unlock( &lock );
79     vlc_mutex_destroy( &lock );
80 }
81
82 QSize VideoWidget::sizeHint() const
83 {
84     return widgetSize;
85 }
86
87 void *VideoWidget::request( vout_thread_t *p_nvout, int *pi_x, int *pi_y,
88                            unsigned int *pi_width, unsigned int *pi_height )
89 {
90     if( p_vout )
91     {
92         msg_Dbg( p_intf, "embedded video already in use" );
93         return NULL;
94     }
95     p_vout = p_nvout;
96     emit askResize();
97     return ( void* )winId();
98 }
99
100 void VideoWidget::SetMinSize()
101 {
102     setMinimumSize( 16, 16 );
103 }
104
105 void VideoWidget::release( void *p_win )
106 {
107     p_vout = NULL;
108 }
109 /**********************************************************************
110  * Background Widget. Show a simple image background. Currently,
111  * it's a static cone.
112  **********************************************************************/
113 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i ) :
114                                         QFrame( NULL ), p_intf( _p_i )
115 {
116
117     setAutoFillBackground( true );
118     plt =  palette();
119     plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
120     plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
121     setPalette( plt );
122
123     label = new QLabel( "" );
124     label->setMaximumHeight( ICON_SIZE );
125     label->setMaximumWidth( ICON_SIZE );
126     label->setScaledContents( true );
127     label->setPixmap( QPixmap( ":/vlc128.png" ) );
128     backgroundLayout = new QHBoxLayout;
129     backgroundLayout->addWidget( label );
130     setLayout( backgroundLayout );
131 }
132
133 BackgroundWidget::~BackgroundWidget()
134 {
135     backgroundLayout->takeAt( 0 );
136     delete backgroundLayout;
137 }
138
139 void BackgroundWidget::setArt( QString url )
140 {
141     if( url.isNull() )
142         label->setPixmap( QPixmap( ":/vlc128.png" ) );
143     else
144         label->setPixmap( QPixmap( url ) );
145 }
146
147 QSize BackgroundWidget::sizeHint() const
148 {
149     return widgetSize;
150 }
151
152 void BackgroundWidget::resizeEvent( QResizeEvent *e )
153 {
154     if( e->size().height() < ICON_SIZE -1 )
155         label->setMaximumWidth( e->size().height() );
156     else
157         label->setMaximumWidth( ICON_SIZE );
158 }
159
160 /**********************************************************************
161  * Visualization selector panel
162  **********************************************************************/
163 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
164                                                 QFrame( NULL ), p_intf( _p_i )
165 {
166     QHBoxLayout *layout = new QHBoxLayout( this );
167     layout->setMargin( 0 );
168     QPushButton *prevButton = new QPushButton( "Prev" );
169     QPushButton *nextButton = new QPushButton( "Next" );
170     layout->addWidget( prevButton );
171     layout->addWidget( nextButton );
172
173     layout->addItem( new QSpacerItem( 40,20,
174                               QSizePolicy::Expanding, QSizePolicy::Minimum ) );
175     layout->addWidget( new QLabel( qtr( "Current visualization:" ) ) );
176
177     current = new QLabel( qtr( "None" ) );
178     layout->addWidget( current );
179
180     BUTTONACT( prevButton, prev() );
181     BUTTONACT( nextButton, next() );
182
183     setLayout( layout );
184     setMaximumHeight( 35 );
185 }
186
187 VisualSelector::~VisualSelector()
188 {
189 }
190
191 void VisualSelector::prev()
192 {
193     char *psz_new = aout_VisualPrev( p_intf );
194     if( psz_new )
195     {
196         current->setText( qfu( psz_new ) );
197         free( psz_new );
198     }
199 }
200
201 void VisualSelector::next()
202 {
203     char *psz_new = aout_VisualNext( p_intf );
204     if( psz_new )
205     {
206         current->setText( qfu( psz_new ) );
207         free( psz_new );
208     }
209 }
210
211 /**********************************************************************
212  * TEH controls
213  **********************************************************************/
214
215 #define setupSmallButton( aButton ){  \
216     aButton->setMaximumSize( QSize( 26, 26 ) ); \
217     aButton->setMinimumSize( QSize( 26, 26 ) ); \
218     aButton->setIconSize( QSize( 20, 20 ) ); }
219
220 AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) :
221                                            QFrame( NULL ), p_intf( _p_i )
222 {
223     QHBoxLayout *advLayout = new QHBoxLayout( this );
224     advLayout->setMargin( 0 );
225     advLayout->setSpacing( 0 );
226
227 /* FIXME A to B function */
228     ABButton = new QPushButton( "AB" );
229     ABButton->setMaximumSize( QSize( 26, 26 ) );
230     ABButton->setIconSize( QSize( 20, 20 ) );
231     advLayout->addWidget( ABButton );
232     BUTTON_SET_ACT( ABButton, "AB", qtr( "A to B" ), normal() );
233
234     snapshotButton = new QPushButton( "S" );
235     snapshotButton->setMaximumSize( QSize( 26, 26 ) );
236     snapshotButton->setIconSize( QSize( 20, 20 ) );
237     advLayout->addWidget( snapshotButton );
238     BUTTON_SET_ACT( snapshotButton, "S", qtr( "Take a snapshot" ), snapshot() );
239
240 //FIXME Frame by frame function
241     frameButton = new QPushButton( "Fr" );
242     frameButton->setMaximumSize( QSize( 26, 26 ) );
243     frameButton->setIconSize( QSize( 20, 20 ) );
244     advLayout->addWidget( frameButton );
245     BUTTON_SET_ACT( frameButton, "Fr", qtr( "Frame by Frame" ), frame() );
246
247 /* FIXME Record function */
248     recordButton = new QPushButton( "R" );
249     recordButton->setMaximumSize( QSize( 26, 26 ) );
250     recordButton->setIconSize( QSize( 20, 20 ) );
251     advLayout->addWidget( recordButton );
252     BUTTON_SET_ACT( recordButton, "R", qtr( "Record" ), record() );
253
254     normalButton = new QPushButton( "N" );
255     normalButton->setMaximumSize( QSize( 26, 26 ) );
256     normalButton->setIconSize( QSize( 20, 20 ) );
257     advLayout->addWidget( normalButton );
258     BUTTON_SET_ACT( normalButton, "N", qtr( "Normal rate" ), normal() );
259
260 }
261
262 AdvControlsWidget::~AdvControlsWidget()
263 {
264 }
265
266 void AdvControlsWidget::enableInput( bool enable )
267 {
268 //    slowerButton->setEnabled( enable );
269     ABButton->setEnabled( enable );
270     recordButton->setEnabled( enable );
271     normalButton->setEnabled( enable );
272 //    fasterButton->setEnabled( enable );
273 }
274 void AdvControlsWidget::enableVideo( bool enable )
275 {
276     snapshotButton->setEnabled( enable );
277     frameButton->setEnabled( enable );
278     //fullscreenButton->setEnabled( enable );
279 }
280
281 void AdvControlsWidget::normal()
282 {
283     THEMIM->getIM()->normalRate();
284 }
285
286 void AdvControlsWidget::snapshot()
287 {
288 }
289
290 void AdvControlsWidget::fullscreen()
291 {
292 }
293
294 void AdvControlsWidget::frame(){}
295 void AdvControlsWidget::record(){}
296
297 /*****************************
298  * DA Control Widget !
299  *****************************/
300
301 ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
302                              QFrame( NULL ), p_intf( _p_i )
303 {
304     //QSize size( 500, 200 );
305     //resize( size );
306     controlLayout = new QGridLayout( this );
307 #if 1 || DEBUG_COLOR
308     QPalette palette2;
309     palette2.setColor(this->backgroundRole(), Qt::magenta);
310     setPalette(palette2);
311 #endif
312
313     /** The main Slider **/
314     slider = new InputSlider( Qt::Horizontal, NULL );
315     controlLayout->addWidget( slider, 0, 1, 1, 15 );
316     /* Update the position when the IM has changed */
317     CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
318              slider, setPosition( float,int, int ) );
319     /* And update the IM, when the position has changed */
320     CONNECT( slider, sliderDragged( float ),
321              THEMIM->getIM(), sliderUpdate( float ) );
322
323     /** Slower and faster Buttons **/
324     slowerButton = new QPushButton( "S" );
325     BUTTON_SET_ACT( slowerButton, "S", qtr( "Slower" ), slower() );
326     controlLayout->addWidget( slowerButton, 0, 0 );
327     slowerButton->setMaximumSize( QSize( 26, 20 ) );
328
329     fasterButton = new QPushButton( "F" );
330     BUTTON_SET_ACT( fasterButton, "F", qtr( "Faster" ), faster() );
331     controlLayout->addWidget( fasterButton, 0, 16 );
332     fasterButton->setMaximumSize( QSize( 26, 20 ) );
333
334     /** TODO: Insert here the AdvControls Widget 
335      * Then fix all the size issues in main_interface.cpp
336      **/
337     /* advanced Controls handling */
338     b_advancedVisible = b_advControls;
339
340     advControls = new AdvControlsWidget( p_intf );
341     controlLayout->addWidget( advControls, 1, 3, 2, 5, Qt::AlignBottom );
342     if( !b_advancedVisible ) advControls->hide();
343 //THIS should be removed.    need_components_update = true;
344
345     /** Disc and Menus handling */
346     discFrame = new QFrame( this );
347
348     QHBoxLayout *discLayout = new QHBoxLayout( discFrame );
349     discLayout->setSpacing( 0 );
350     discLayout->setMargin( 0 );
351
352     QPushButton *prevSectionButton = new QPushButton( discFrame );
353     setupSmallButton( prevSectionButton );
354     discLayout->addWidget( prevSectionButton );
355
356     QPushButton *menuButton = new QPushButton( discFrame );
357     setupSmallButton( menuButton );
358     discLayout->addWidget( menuButton );
359
360     QPushButton *nextSectionButton = new QPushButton( discFrame );
361     setupSmallButton( nextSectionButton );
362     discLayout->addWidget( nextSectionButton );
363
364     controlLayout->addWidget( discFrame, 1, 10, 2, 4, Qt::AlignBottom );
365
366     BUTTON_SET_IMG( prevSectionButton, "", previous.png, "" );
367     BUTTON_SET_IMG( nextSectionButton, "", next.png, "" );
368     BUTTON_SET_IMG( menuButton, "", previous.png, "" );
369
370     //discFrame->hide();
371
372     /* Change the navigation button display when the IM navigation changes */
373     CONNECT( THEMIM->getIM(), navigationChanged( int ),
374              this, setNavigation( int ) );
375     /* Changes the IM navigation when triggered on the nav buttons */
376     CONNECT( prevSectionButton, clicked(), THEMIM->getIM(),
377              sectionPrev() );
378     CONNECT( nextSectionButton, clicked(), THEMIM->getIM(),
379              sectionNext() );
380     CONNECT( menuButton, clicked(), THEMIM->getIM(),
381              sectionMenu() );
382
383     /** TODO
384      * Telextext QFrame
385      **/
386
387     /** Play Buttons **/
388     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
389     sizePolicy.setHorizontalStretch( 0 );
390     sizePolicy.setVerticalStretch( 0 );
391 //  sizePolicy.setHeightForWidth( playButton->sizePolicy().hasHeightForWidth() );
392
393     /* Play */
394     QPushButton *playButton = new QPushButton;
395     playButton->setSizePolicy( sizePolicy );
396     playButton->setMaximumSize( QSize( 45, 45 ) );
397     playButton->setIconSize( QSize( 30, 30 ) );
398
399     controlLayout->addWidget( playButton, 2, 0, 2, 2, Qt::AlignBottom );
400
401     /** Prev + Stop + Next Block **/
402     QHBoxLayout *controlButLayout = new QHBoxLayout;
403     controlButLayout->setSpacing( 0 ); /* Don't remove that, will be useful */
404
405     /* Prev */
406     QPushButton *prevButton = new QPushButton;
407     prevButton->setSizePolicy( sizePolicy );
408     setupSmallButton( prevButton );
409
410     controlButLayout->addWidget( prevButton );
411
412     /* Stop */
413     QPushButton *stopButton = new QPushButton;
414     stopButton->setSizePolicy( sizePolicy );
415     setupSmallButton( stopButton );
416
417     controlButLayout->addWidget( stopButton );
418
419     /* next */
420     QPushButton *nextButton = new QPushButton;
421     nextButton->setSizePolicy( sizePolicy );
422     setupSmallButton( nextButton );
423
424     controlButLayout->addWidget( nextButton );
425
426     /* Add this block to the main layout */
427     controlLayout->addLayout( controlButLayout, 3, 3, 1, 3 );
428
429     BUTTON_SET_ACT_I( playButton, "", play.png, qtr( "Play" ), play() );
430     BUTTON_SET_ACT_I( prevButton, "" , previous.png,
431                       qtr( "Previous" ), prev() );
432     BUTTON_SET_ACT_I( nextButton, "", next.png, qtr( "Next" ), next() );
433     BUTTON_SET_ACT_I( stopButton, "", stop.png, qtr( "Stop" ), stop() );
434
435     /*
436      * Other first Line buttons
437      * Might need to be inside a frame to avoid a few resizing pb
438      * FIXME
439      */
440     /** Fullscreen/Visualisation **/
441     fullscreenButton = new QPushButton( "F" );
442     BUTTON_SET_ACT( fullscreenButton, "F", qtr( "Fullscreen" ), fullscreen() );
443     setupSmallButton( fullscreenButton );
444     controlLayout->addWidget( fullscreenButton, 3, 10 );
445
446     /** Playlist Button **/
447     playlistButton = new QPushButton;
448     setupSmallButton( playlistButton );
449
450     controlLayout->addWidget( playlistButton, 3, 11 );
451
452     /** extended Settings **/
453     QPushButton *extSettingsButton = new QPushButton( "F" );
454     BUTTON_SET_ACT( extSettingsButton, "Ex", qtr( "Extended Settings" ),
455             extSettings() );
456     setupSmallButton( extSettingsButton );
457     controlLayout->addWidget( extSettingsButton, 3, 12 );
458
459     /** Preferences **/
460     QPushButton *prefsButton = new QPushButton( "P" );
461     BUTTON_SET_ACT( prefsButton, "P", qtr( "Preferences / Settings" ),
462             prefs() );
463     setupSmallButton( prefsButton );
464     controlLayout->addWidget( prefsButton, 3, 13 );
465
466     /* Volume */
467     VolumeClickHandler *h = new VolumeClickHandler( p_intf, this );
468
469     QLabel *volMuteLabel = new QLabel;
470     volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-low.png" ) );
471     volMuteLabel->setToolTip( qtr( "Mute" ) );
472     volMuteLabel->installEventFilter( h );
473
474     /** TODO: 
475      * Change this slider to use a nice Amarok-like one 
476      * Add a Context menu to change to the most useful %
477      * **/
478     /** FIXME
479      *  THis percerntage thing has to be handled correctly
480      *  This has to match to the OSD
481      **/
482     volumeSlider = new QSlider;
483     volumeSlider->setSizePolicy( sizePolicy );
484     volumeSlider->setMaximumSize( QSize( 80, 200 ) );
485     volumeSlider->setOrientation( Qt::Horizontal );
486
487     volumeSlider->setMaximum( 100 );
488     volumeSlider->setFocusPolicy( Qt::NoFocus );
489     controlLayout->addWidget( volMuteLabel, 3, 14 );
490     controlLayout->addWidget( volumeSlider, 3, 15, 1, 2 );
491
492     /* Volume control connection */
493     CONNECT( volumeSlider, valueChanged( int ), this, updateVolume( int ) );
494
495 }
496 ControlsWidget::~ControlsWidget()
497 {
498 }
499 void ControlsWidget::stop()
500 {
501     THEMIM->stop();
502 }
503
504 void ControlsWidget::play()
505 {
506     if( playlist_IsEmpty( THEPL ) )
507     {
508         /* The playlist is empty, open a file requester */
509         msg_Dbg( p_intf, "Nothing to play yet, open a file" );
510         THEDP->openFileDialog();
511         setStatus( 0 );
512         return;
513     }
514     THEMIM->togglePlayPause();
515 }
516
517 void ControlsWidget::prev()
518 {
519     THEMIM->prev();
520 }
521
522 void ControlsWidget::next()
523 {
524     THEMIM->next();
525 }
526
527 void ControlsWidget::setNavigation( int navigation )
528 {
529 #define HELP_MENU N_( "Menu" )
530 #define HELP_PCH N_( "Previous chapter" )
531 #define HELP_NCH N_( "Next chapter" )
532 #define HELP_PTR N_( "Previous track" )
533 #define HELP_NTR N_( "Next track" )
534
535     // 1 = chapter, 2 = title, 0 = no
536     if( navigation == 0 )
537     {
538         discFrame->hide();
539     } else if( navigation == 1 ) {
540         prevSectionButton->show();
541         prevSectionButton->setToolTip( qfu( HELP_PCH ) );
542         nextSectionButton->show();
543         nextSectionButton->setToolTip( qfu( HELP_NCH ) );
544         menuButton->show();
545         discFrame->show();
546     } else {
547         prevSectionButton->show();
548         prevSectionButton->setToolTip( qfu( HELP_PCH ) );
549         nextSectionButton->show();
550         nextSectionButton->setToolTip( qfu( HELP_NCH ) );
551         menuButton->hide();
552         discFrame->show();
553     }
554 }
555
556 static bool b_my_volume;
557 void ControlsWidget::updateVolume( int sliderVolume )
558 {
559     if( !b_my_volume )
560     {
561         int i_res = sliderVolume * AOUT_VOLUME_MAX /
562                             ( 2*volumeSlider->maximum() );
563         aout_VolumeSet( p_intf, i_res );
564     }
565 }
566
567 void ControlsWidget::updateOnTimer()
568 {
569     audio_volume_t i_volume;
570     aout_VolumeGet( p_intf, &i_volume );
571     i_volume = ( i_volume *  200 )/ AOUT_VOLUME_MAX ;
572     int i_gauge = volumeSlider->value();
573     b_my_volume = false;
574     if( i_volume - i_gauge > 1 || i_gauge - i_volume > 1 )
575     {
576         b_my_volume = true;
577         volumeSlider->setValue( i_volume );
578         b_my_volume = false;
579     }
580
581     enableInput( THEMIM->getIM()->hasInput() );
582     enableVideo( THEMIM->getIM()->hasVideo() );
583 }
584
585 /* FIXME */
586 void ControlsWidget::setStatus( int status )
587 {
588     if( status == 1 ) // Playing
589     {
590         msg_Dbg( p_intf, "I was here %i", status );
591         // playButton->setIcon( QIcon( ":/pixmaps/pause.png" ) );
592     }
593     else
594     {
595         msg_Dbg( p_intf, "I was here %i", status );
596         // playButton->setIcon( QIcon( ":/pixmaps/play.png" ) );
597     }
598 }
599
600 /**
601  * TODO
602  * This functions toggle the fullscreen mode
603  * If there is no video, it should first activate Visualisations... 
604  *  This has also to be fixed in enableVideo()
605  */
606 void ControlsWidget::fullscreen()
607 {
608     msg_Dbg( p_intf, "Not implemented yet" );
609 }
610
611 void ControlsWidget::extSettings()
612 {
613     THEDP->extendedDialog();
614 }
615 void ControlsWidget::prefs()
616 {
617     THEDP->prefsDialog();
618 }
619
620 void ControlsWidget::slower()
621 {
622     THEMIM->getIM()->slower();
623 }
624
625 void ControlsWidget::faster()
626 {
627     THEMIM->getIM()->faster();
628 }
629
630 void ControlsWidget::enableInput( bool enable )
631 {
632     slowerButton->setEnabled( enable );
633     slider->setEnabled( enable );
634     fasterButton->setEnabled( enable );
635
636     /* Advanced Buttons too */
637     advControls->enableInput( enable );
638 }
639
640 void ControlsWidget::enableVideo( bool enable )
641 {
642     // TODO Later make the fullscreenButton toggle Visualisation and so on.
643     fullscreenButton->setEnabled( enable );
644
645     /* Advanced Buttons too */
646     advControls->enableVideo( enable );
647 }
648
649 void ControlsWidget::toggleAdvanced()
650 {
651     if( !VISIBLE( advControls ) )
652     {
653         advControls->show();
654         b_advancedVisible = true;
655     }
656     else
657     {
658         advControls->hide();
659         b_advancedVisible = false;
660     }
661     //FIXME connect this one :D
662     emit advancedControlsShowed( b_advancedVisible );  //  doComponentsUpdate();
663 }
664
665 /**********************************************************************
666  * Playlist Widget. The embedded playlist
667  **********************************************************************/
668 #include "components/playlist/panels.hpp"
669 #include "components/playlist/selector.hpp"
670
671 PlaylistWidget::PlaylistWidget( intf_thread_t *_p_intf ) :
672                                 p_intf ( _p_intf )
673 {
674     /* Left Part and design */
675     QWidget *leftW = new QWidget( this );
676     QVBoxLayout *left = new QVBoxLayout( leftW );
677
678     /* Source Selector */
679     selector = new PLSelector( this, p_intf, THEPL );
680     left->addWidget( selector );
681
682     /* Art label */
683     art = new QLabel( "" );
684     art->setMinimumHeight( 128 );
685     art->setMinimumWidth( 128 );
686     art->setMaximumHeight( 128 );
687     art->setMaximumWidth( 128 );
688     art->setScaledContents( true );
689     art->setPixmap( QPixmap( ":/noart.png" ) );
690     left->addWidget( art );
691
692     /* Initialisation of the playlist */
693     playlist_item_t *p_root = playlist_GetPreferredNode( THEPL,
694                                                 THEPL->p_local_category );
695
696     rightPanel = qobject_cast<PLPanel *>( new StandardPLPanel( this,
697                               p_intf, THEPL, p_root ) );
698
699     /* Connects */
700     CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
701
702     CONNECT( qobject_cast<StandardPLPanel *>( rightPanel )->model,
703              artSet( QString ) , this, setArt( QString ) );
704     /* Forward removal requests from the selector to the main panel */
705     CONNECT( qobject_cast<PLSelector *>( selector )->model,
706              shouldRemove( int ),
707              qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
708
709     connect( selector, SIGNAL( activated( int ) ),
710              this, SIGNAL( rootChanged( int ) ) );
711     emit rootChanged( p_root->i_id );
712
713     /* Add the two sides of the QSplitter */
714     addWidget( leftW );
715     addWidget( rightPanel );
716
717     leftW->setMaximumWidth( 250 );
718     setCollapsible( 1, false );
719
720     QList<int> sizeList;
721     sizeList << 180 << 520 ;
722     setSizes( sizeList );
723 }
724
725 void PlaylistWidget::setArt( QString url )
726 {
727     if( url.isNull() )
728         art->setPixmap( QPixmap( ":/noart.png" ) );
729     else if( prevArt != url )
730         art->setPixmap( QPixmap( url ) );
731     prevArt = url;
732     emit artSet( url );
733 }
734
735 PlaylistWidget::~PlaylistWidget()
736 {
737 }
738
739 QSize PlaylistWidget::sizeHint() const
740 {
741     return widgetSize;
742 }
743