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