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