]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
Qt4 - New kind of volume slider.
[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 );
499     volumeSlider->setMaximumSize( QSize( 200, 40 ) );
500     volumeSlider->setMinimumSize( QSize( 80, 20 ) );
501     controlLayout->addWidget( volumeSlider, 3, 16, 1, 2 );
502     volumeSlider->setMaximum( VOLUME_MAX );
503     volumeSlider->setFocusPolicy( Qt::NoFocus );
504
505     /* Volume control connection */
506     CONNECT( volumeSlider, valueChanged( int ), this, updateVolume( int ) );
507     msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
508 }
509 ControlsWidget::~ControlsWidget()
510 {
511 }
512 void ControlsWidget::stop()
513 {
514     THEMIM->stop();
515 }
516
517 void ControlsWidget::play()
518 {
519     if( THEPL->current.i_size == 0 )
520     {
521         /* The playlist is empty, open a file requester */
522         THEDP->openFileDialog();
523         setStatus( 0 );
524         return;
525     }
526     THEMIM->togglePlayPause();
527 }
528
529 void ControlsWidget::prev()
530 {
531     THEMIM->prev();
532 }
533
534 void ControlsWidget::next()
535 {
536     THEMIM->next();
537 }
538
539 void ControlsWidget::setNavigation( int navigation )
540 {
541 #define HELP_MENU N_( "Menu" )
542 #define HELP_PCH N_( "Previous chapter" )
543 #define HELP_NCH N_( "Next chapter" )
544 #define HELP_PTR N_( "Previous track" )
545 #define HELP_NTR N_( "Next track" )
546
547     // 1 = chapter, 2 = title, 0 = no
548     if( navigation == 0 )
549     {
550         discFrame->hide();
551     } else if( navigation == 1 ) {
552         prevSectionButton->setToolTip( qfu( HELP_PCH ) );
553         nextSectionButton->setToolTip( qfu( HELP_NCH ) );
554         menuButton->show();
555         discFrame->show();
556     } else {
557         prevSectionButton->setToolTip( qfu( HELP_PCH ) );
558         nextSectionButton->setToolTip( qfu( HELP_NCH ) );
559         menuButton->hide();
560         discFrame->show();
561     }
562 }
563
564 static bool b_my_volume;
565 void ControlsWidget::updateVolume( int i_sliderVolume )
566 {
567     if( !b_my_volume )
568     {
569         int i_res = i_sliderVolume  * (AOUT_VOLUME_MAX / 2) / VOLUME_MAX;
570         aout_VolumeSet( p_intf, i_res );
571     }
572     if( i_sliderVolume == 0 )
573         volMuteLabel->setPixmap( QPixmap(":/pixmaps/volume-muted.png" ) );
574     else if( i_sliderVolume < VOLUME_MAX / 2 )
575         volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-low.png" ) );
576     else volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-high.png" ) );
577 }
578
579 void ControlsWidget::updateOnTimer()
580 {
581     /* Audio part */
582     audio_volume_t i_volume;
583     aout_VolumeGet( p_intf, &i_volume );
584     i_volume = ( i_volume *  VOLUME_MAX )/ (AOUT_VOLUME_MAX/2) ;
585     int i_gauge = volumeSlider->value();
586     b_my_volume = false;
587     if( i_volume - i_gauge > 1 || i_gauge - i_volume > 1 )
588     {
589         b_my_volume = true;
590         volumeSlider->setValue( i_volume );
591         b_my_volume = false;
592     }
593
594     /* Activate the interface buttons according to the presence of the input */
595     enableInput( THEMIM->getIM()->hasInput() );
596     //enableVideo( THEMIM->getIM()->hasVideo() );
597     enableVideo( true );
598 }
599
600 void ControlsWidget::setStatus( int status )
601 {
602     if( status == PLAYING_S ) // Playing
603         playButton->setIcon( QIcon( ":/pixmaps/pause.png" ) );
604     else
605         playButton->setIcon( QIcon( ":/pixmaps/play.png" ) );
606 }
607
608 /**
609  * TODO
610  * This functions toggle the fullscreen mode
611  * If there is no video, it should first activate Visualisations...
612  *  This has also to be fixed in enableVideo()
613  */
614 void ControlsWidget::fullscreen()
615 {
616     vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
617     if( p_vout)
618     {
619         var_SetBool( p_vout, "fullscreen", !var_GetBool( p_vout, "fullscreen" ) );
620         vlc_object_release( p_vout );
621     }
622 }
623
624 void ControlsWidget::extSettings()
625 {
626     THEDP->extendedDialog();
627 }
628
629 void ControlsWidget::slower()
630 {
631     THEMIM->getIM()->slower();
632 }
633
634 void ControlsWidget::faster()
635 {
636     THEMIM->getIM()->faster();
637 }
638
639 void ControlsWidget::enableInput( bool enable )
640 {
641     slowerButton->setEnabled( enable );
642     slider->setEnabled( enable );
643     fasterButton->setEnabled( enable );
644
645     /* Advanced Buttons too */
646     advControls->enableInput( enable );
647 }
648
649 void ControlsWidget::enableVideo( bool enable )
650 {
651     // TODO Later make the fullscreenButton toggle Visualisation and so on.
652     fullscreenButton->setEnabled( enable );
653
654     /* Advanced Buttons too */
655     advControls->enableVideo( enable );
656 }
657
658 void ControlsWidget::toggleAdvanced()
659 {
660     if( !VISIBLE( advControls ) )
661     {
662         advControls->show();
663         b_advancedVisible = true;
664     }
665     else
666     {
667         advControls->hide();
668         b_advancedVisible = false;
669     }
670     //FIXME connect this one :D
671     emit advancedControlsToggled( b_advancedVisible );  //  doComponentsUpdate();
672 }
673
674 /**********************************************************************
675  * Playlist Widget. The embedded playlist
676  **********************************************************************/
677 #include "components/playlist/panels.hpp"
678 #include "components/playlist/selector.hpp"
679
680 PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i ) :
681                                 p_intf ( _p_i )
682 {
683     /* Left Part and design */
684     QWidget *leftW = new QWidget( this );
685     QVBoxLayout *left = new QVBoxLayout( leftW );
686
687     /* Source Selector */
688     selector = new PLSelector( this, p_intf, THEPL );
689     left->addWidget( selector );
690
691     /* Art label */
692     art = new QLabel( "" );
693     art->setMinimumHeight( 128 );
694     art->setMinimumWidth( 128 );
695     art->setMaximumHeight( 128 );
696     art->setMaximumWidth( 128 );
697     art->setScaledContents( true );
698     art->setPixmap( QPixmap( ":/noart.png" ) );
699     left->addWidget( art );
700
701     /* Initialisation of the playlist */
702     playlist_item_t *p_root = playlist_GetPreferredNode( THEPL,
703                                                 THEPL->p_local_category );
704
705     rightPanel = qobject_cast<PLPanel *>( new StandardPLPanel( this,
706                               p_intf, THEPL, p_root ) );
707
708     /* Connects */
709     CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
710
711     CONNECT( qobject_cast<StandardPLPanel *>( rightPanel )->model,
712              artSet( QString ) , this, setArt( QString ) );
713     /* Forward removal requests from the selector to the main panel */
714     CONNECT( qobject_cast<PLSelector *>( selector )->model,
715              shouldRemove( int ),
716              qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
717
718     connect( selector, SIGNAL( activated( int ) ),
719              this, SIGNAL( rootChanged( int ) ) );
720     emit rootChanged( p_root->i_id );
721
722     /* Add the two sides of the QSplitter */
723     addWidget( leftW );
724     addWidget( rightPanel );
725
726     leftW->setMaximumWidth( 250 );
727     setCollapsible( 1, false );
728
729     QList<int> sizeList;
730     sizeList << 180 << 520 ;
731     setSizes( sizeList );
732 }
733
734 void PlaylistWidget::setArt( QString url )
735 {
736     if( url.isNull() )
737         art->setPixmap( QPixmap( ":/noart.png" ) );
738     else if( prevArt != url )
739     {
740         art->setPixmap( QPixmap( url ) );
741         prevArt = url;
742         emit artSet( url );
743     }
744 }
745
746 PlaylistWidget::~PlaylistWidget()
747 {
748 }
749
750 /**********************************************************************
751  * Speed control widget
752  **********************************************************************/
753 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i ) :
754                              QFrame( NULL ), p_intf( _p_i )
755 {
756     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
757     sizePolicy.setHorizontalStretch( 0 );
758     sizePolicy.setVerticalStretch( 0 );
759
760     speedSlider = new QSlider;
761     speedSlider->setSizePolicy( sizePolicy );
762     speedSlider->setMaximumSize( QSize( 80, 200 ) );
763     speedSlider->setOrientation( Qt::Vertical );
764     speedSlider->setTickPosition( QSlider::TicksRight );
765
766     speedSlider->setRange( -100, 100 );
767     speedSlider->setSingleStep( 10 );
768     speedSlider->setPageStep( 20 );
769     speedSlider->setTickInterval( 20 );
770
771     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
772
773     normalSpeedButton = new QPushButton( "N" );
774     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
775     normalSpeedButton->setFlat( true );
776     normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
777
778     CONNECT( normalSpeedButton, clicked(), this, resetRate() );
779
780     QVBoxLayout *speedControlLayout = new QVBoxLayout;
781     speedControlLayout->addWidget(speedSlider);
782     speedControlLayout->addWidget(normalSpeedButton);
783     setLayout(speedControlLayout);
784 }
785
786 SpeedControlWidget::~SpeedControlWidget()
787 {
788 }
789
790 #define RATE_SLIDER_MAXIMUM 3.0
791 #define RATE_SLIDER_MINIMUM 0.3
792 #define RATE_SLIDER_LENGTH 100.0
793
794 void SpeedControlWidget::updateControls( int rate )
795 {
796     if( speedSlider->isSliderDown() )
797     {
798         //We don't want to change anything if the user is using the slider
799         return;
800     }
801
802     int sliderValue;
803     double speed = INPUT_RATE_DEFAULT / (double)rate;
804
805     if( rate >= INPUT_RATE_DEFAULT )
806     {
807         if( speed < RATE_SLIDER_MINIMUM )
808         {
809             sliderValue = speedSlider->minimum();
810         }
811         else
812         {
813             sliderValue = (int)( ( speed - 1.0 ) * RATE_SLIDER_LENGTH
814                                         / ( 1.0 - RATE_SLIDER_MAXIMUM ) );
815         }
816     }
817     else
818     {
819         if( speed > RATE_SLIDER_MAXIMUM )
820         {
821             sliderValue = speedSlider->maximum();
822         }
823         else
824         {
825             sliderValue = (int)( ( speed - 1.0 ) * RATE_SLIDER_LENGTH
826                                         / ( RATE_SLIDER_MAXIMUM - 1.0 ) );
827         }
828     }
829
830     //Block signals to avoid feedback loop
831     speedSlider->blockSignals( true );
832     speedSlider->setValue( sliderValue );
833     speedSlider->blockSignals( false );
834 }
835
836 void SpeedControlWidget::updateRate( int sliderValue )
837 {
838     int rate;
839
840     if( sliderValue < 0.0 )
841     {
842         rate = INPUT_RATE_DEFAULT* RATE_SLIDER_LENGTH /
843                 ( sliderValue * ( 1.0 - RATE_SLIDER_MINIMUM ) + RATE_SLIDER_LENGTH ) ;
844     }
845     else
846     {
847         rate = INPUT_RATE_DEFAULT* RATE_SLIDER_LENGTH /
848                 ( sliderValue * ( RATE_SLIDER_MAXIMUM - 1.0 ) + RATE_SLIDER_LENGTH );
849     }
850
851     THEMIM->getIM()->setRate(rate);
852 }
853
854 void SpeedControlWidget::resetRate()
855 {
856     THEMIM->getIM()->setRate(INPUT_RATE_DEFAULT);
857 }
858
859