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