]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
Simplified/fixed qt4 fullscreen implementation.
[vlc] / modules / gui / qt4 / components / interface_widgets.cpp
1 /*****************************************************************************
2  * interface_widgets.cpp : Custom widgets for the main interface
3  ****************************************************************************
4  * Copyright (C) 2006-2010 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  *          Ilkka Ollakka <ileoo@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * ( at your option ) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include "components/interface_widgets.hpp"
32 #include "dialogs_provider.hpp"
33 #include "util/customwidgets.hpp"               // qtEventToVLCKey, QVLCStackedWidget
34
35 #include "menus.hpp"             /* Popup menu on bgWidget */
36
37 #include <vlc_vout.h>
38
39 #include <QLabel>
40 #include <QToolButton>
41 #include <QPalette>
42 #include <QEvent>
43 #include <QResizeEvent>
44 #include <QDate>
45 #include <QMenu>
46 #include <QWidgetAction>
47 #include <QDesktopWidget>
48 #include <QPainter>
49 #include <QTimer>
50 #include <QSlider>
51 #include <QBitmap>
52
53 #ifdef Q_WS_X11
54 #   include <X11/Xlib.h>
55 #   include <qx11info_x11.h>
56 #endif
57
58 #include <math.h>
59 #include <assert.h>
60
61 /**********************************************************************
62  * Video Widget. A simple frame on which video is drawn
63  * This class handles resize issues
64  **********************************************************************/
65
66 VideoWidget::VideoWidget( intf_thread_t *_p_i )
67     : QFrame( NULL )
68       , p_intf( _p_i )
69 {
70     /* Set the policy to expand in both directions */
71     // setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
72
73     layout = new QHBoxLayout( this );
74     layout->setContentsMargins( 0, 0, 0, 0 );
75     setLayout( layout );
76     stable = NULL;
77 }
78
79 VideoWidget::~VideoWidget()
80 {
81     /* Ensure we are not leaking the video output. This would crash. */
82     assert( !stable );
83 }
84
85 void VideoWidget::sync( void )
86 {
87 #ifdef Q_WS_X11
88     /* Make sure the X server has processed all requests.
89      * This protects other threads using distinct connections from getting
90      * the video widget window in an inconsistent states. */
91     XSync( QX11Info::display(), False );
92 #endif
93 }
94
95 /**
96  * Request the video to avoid the conflicts
97  **/
98 WId VideoWidget::request( int *pi_x, int *pi_y,
99                           unsigned int *pi_width, unsigned int *pi_height,
100                           bool b_keep_size )
101 {
102     msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
103
104     if( stable )
105     {
106         msg_Dbg( p_intf, "embedded video already in use" );
107         return NULL;
108     }
109     if( b_keep_size )
110     {
111         *pi_width  = size().width();
112         *pi_height = size().height();
113     }
114
115     /* The owner of the video window needs a stable handle (WinId). Reparenting
116      * in Qt4-X11 changes the WinId of the widget, so we need to create another
117      * dummy widget that stays within the reparentable widget. */
118     stable = new QWidget();
119     QPalette plt = palette();
120     plt.setColor( QPalette::Window, Qt::black );
121     stable->setPalette( plt );
122     stable->setAutoFillBackground(true);
123     /* Indicates that the widget wants to draw directly onto the screen.
124        Widgets with this attribute set do not participate in composition
125        management */
126     /* This is currently disabled on X11 as it does not seem to improve
127      * performance, but causes the video widget to be transparent... */
128 #ifndef Q_WS_X11
129     stable->setAttribute( Qt::WA_PaintOnScreen, true );
130 #endif
131
132     layout->addWidget( stable );
133
134 #ifdef Q_WS_X11
135     /* HACK: Only one X11 client can subscribe to mouse button press events.
136      * VLC currently handles those in the video display.
137      * Force Qt4 to unsubscribe from mouse press and release events. */
138     Display *dpy = QX11Info::display();
139     Window w = stable->winId();
140     XWindowAttributes attr;
141
142     XGetWindowAttributes( dpy, w, &attr );
143     attr.your_event_mask &= ~(ButtonPressMask|ButtonReleaseMask);
144     XSelectInput( dpy, w, attr.your_event_mask );
145 #endif
146     sync();
147 #ifndef NDEBUG
148     msg_Dbg( p_intf, "embedded video ready (handle %p)",
149              (void *)stable->winId() );
150 #endif
151     return stable->winId();
152 }
153
154 /* Set the Widget to the correct Size */
155 /* Function has to be called by the parent
156    Parent has to care about resizing itself */
157 void VideoWidget::SetSizing( unsigned int w, unsigned int h )
158 {
159     if( !isVisible() ) show();
160     resize( w, h );
161     emit sizeChanged( w, h );
162     /* Work-around a bug?misconception? that would happen when vout core resize
163        twice to the same size and would make the vout not centered.
164        This cause a small flicker.
165        See #3621
166      */
167     if( size().width() == w && size().height() == h )
168         updateGeometry();
169     sync();
170 }
171
172 void VideoWidget::release( void )
173 {
174     msg_Dbg( p_intf, "Video is not needed anymore" );
175
176     assert( stable );
177     layout->removeWidget( stable );
178     stable->deleteLater();
179     stable = NULL;
180
181     updateGeometry();
182     hide();
183 }
184
185 /**********************************************************************
186  * Background Widget. Show a simple image background. Currently,
187  * it's album art if present or cone.
188  **********************************************************************/
189
190 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
191                  :QWidget( NULL ), p_intf( _p_i ), b_expandPixmap( false )
192 {
193     /* A dark background */
194     setAutoFillBackground( true );
195     QPalette plt = palette();
196     plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
197     plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
198     setPalette( plt );
199
200     /* Init the cone art */
201     updateArt( "" );
202
203     CONNECT( THEMIM->getIM(), artChanged( QString ),
204              this, updateArt( const QString& ) );
205 }
206
207 void BackgroundWidget::updateArt( const QString& url )
208 {
209     if ( !url.isEmpty() )
210     {
211         pixmapUrl = url;
212     }
213     else
214     {   /* Xmas joke */
215         if( QDate::currentDate().dayOfYear() >= 354 )
216             pixmapUrl = QString( ":/logo/vlc128-christmas.png" );
217         else
218             pixmapUrl = QString( ":/logo/vlc128.png" );
219     }
220     update();
221 }
222
223 void BackgroundWidget::paintEvent( QPaintEvent *e )
224 {
225     int i_maxwidth, i_maxheight;
226     QPixmap pixmap = QPixmap( pixmapUrl );
227     QPainter painter(this);
228     QBitmap pMask;
229     float f_alpha = 1.0;
230
231     i_maxwidth = std::min( maximumWidth(), width() ) - MARGIN * 2;
232     i_maxheight = std::min( maximumHeight(), height() ) - MARGIN * 2;
233
234     if ( height() > MARGIN * 2 )
235     {
236         /* Scale down the pixmap if the widget is too small */
237         if( pixmap.width() > i_maxwidth || pixmap.height() > i_maxheight )
238         {
239             pixmap = pixmap.scaled( i_maxwidth, i_maxheight,
240                             Qt::KeepAspectRatio, Qt::SmoothTransformation );
241         }
242         else
243         if ( b_expandPixmap &&
244              pixmap.width() < width() && pixmap.height() < height() )
245         {
246             /* Scale up the pixmap to fill widget's size */
247             f_alpha = ( (float) pixmap.height() / (float) height() );
248             pixmap = pixmap.scaled(
249                     width() - MARGIN * 2,
250                     height() - MARGIN * 2,
251                     Qt::KeepAspectRatio,
252                     ( f_alpha < .2 )? /* Don't waste cpu when not visible */
253                         Qt::SmoothTransformation:
254                         Qt::FastTransformation
255                     );
256             /* Non agressive alpha compositing when sizing up */
257             pMask = QBitmap( pixmap.width(), pixmap.height() );
258             pMask.fill( QColor::fromRgbF( 1.0, 1.0, 1.0, f_alpha ) );
259             pixmap.setMask( pMask );
260         }
261
262         painter.drawPixmap(
263                 MARGIN + ( i_maxwidth - pixmap.width() ) /2,
264                 MARGIN + ( i_maxheight - pixmap.height() ) /2,
265                 pixmap);
266     }
267     QWidget::paintEvent( e );
268 }
269
270 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
271 {
272     QVLCMenu::PopupMenu( p_intf, true );
273     event->accept();
274 }
275
276 #if 0
277 #include <QPushButton>
278 #include <QHBoxLayout>
279
280 /**********************************************************************
281  * Visualization selector panel
282  **********************************************************************/
283 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
284                                 QFrame( NULL ), p_intf( _p_i )
285 {
286     QHBoxLayout *layout = new QHBoxLayout( this );
287     layout->setMargin( 0 );
288     QPushButton *prevButton = new QPushButton( "Prev" );
289     QPushButton *nextButton = new QPushButton( "Next" );
290     layout->addWidget( prevButton );
291     layout->addWidget( nextButton );
292
293     layout->addStretch( 10 );
294     layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
295
296     current = new QLabel( qtr( "None" ) );
297     layout->addWidget( current );
298
299     BUTTONACT( prevButton, prev() );
300     BUTTONACT( nextButton, next() );
301
302     setLayout( layout );
303     setMaximumHeight( 35 );
304 }
305
306 VisualSelector::~VisualSelector()
307 {}
308
309 void VisualSelector::prev()
310 {
311     char *psz_new = aout_VisualPrev( p_intf );
312     if( psz_new )
313     {
314         current->setText( qfu( psz_new ) );
315         free( psz_new );
316     }
317 }
318
319 void VisualSelector::next()
320 {
321     char *psz_new = aout_VisualNext( p_intf );
322     if( psz_new )
323     {
324         current->setText( qfu( psz_new ) );
325         free( psz_new );
326     }
327 }
328 #endif
329
330 SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, QWidget *parent )
331            : QLabel( parent ), p_intf( _p_intf )
332 {
333     tooltipStringPattern = qtr( "Current playback speed: %1\nClick to adjust" );
334
335     /* Create the Speed Control Widget */
336     speedControl = new SpeedControlWidget( p_intf, this );
337     speedControlMenu = new QMenu( this );
338
339     QWidgetAction *widgetAction = new QWidgetAction( speedControl );
340     widgetAction->setDefaultWidget( speedControl );
341     speedControlMenu->addAction( widgetAction );
342
343     /* Change the SpeedRate in the Status Bar */
344     CONNECT( THEMIM->getIM(), rateChanged( float ), this, setRate( float ) );
345
346     DCONNECT( THEMIM, inputChanged( input_thread_t * ),
347               speedControl, activateOnState() );
348     setRate( var_InheritFloat( p_intf, "rate" ) );
349 }
350
351 SpeedLabel::~SpeedLabel()
352 {
353     delete speedControl;
354     delete speedControlMenu;
355 }
356
357 /****************************************************************************
358  * Small right-click menu for rate control
359  ****************************************************************************/
360
361 void SpeedLabel::showSpeedMenu( QPoint pos )
362 {
363     speedControlMenu->exec( QCursor::pos() - pos
364                           + QPoint( 0, height() ) );
365 }
366
367 void SpeedLabel::setRate( float rate )
368 {
369     QString str;
370     str.setNum( rate, 'f', 2 );
371     str.append( "x" );
372     setText( str );
373     setToolTip( tooltipStringPattern.arg( str ) );
374     speedControl->updateControls( rate );
375 }
376
377 /**********************************************************************
378  * Speed control widget
379  **********************************************************************/
380 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
381                     : QFrame( _parent ), p_intf( _p_i )
382 {
383     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
384     sizePolicy.setHorizontalStretch( 0 );
385     sizePolicy.setVerticalStretch( 0 );
386
387     speedSlider = new QSlider( this );
388     speedSlider->setSizePolicy( sizePolicy );
389     speedSlider->setMaximumSize( QSize( 80, 200 ) );
390     speedSlider->setOrientation( Qt::Vertical );
391     speedSlider->setTickPosition( QSlider::TicksRight );
392
393     speedSlider->setRange( -34, 34 );
394     speedSlider->setSingleStep( 1 );
395     speedSlider->setPageStep( 1 );
396     speedSlider->setTickInterval( 17 );
397
398     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
399
400     QToolButton *normalSpeedButton = new QToolButton( this );
401     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
402     normalSpeedButton->setAutoRaise( true );
403     normalSpeedButton->setText( "1x" );
404     normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
405
406     CONNECT( normalSpeedButton, clicked(), this, resetRate() );
407
408     QVBoxLayout *speedControlLayout = new QVBoxLayout( this );
409     speedControlLayout->setContentsMargins( 4, 4, 4, 4 );
410     speedControlLayout->setSpacing( 4 );
411     speedControlLayout->addWidget( speedSlider );
412     speedControlLayout->addWidget( normalSpeedButton );
413
414     lastValue = 0;
415
416     activateOnState();
417 }
418
419 void SpeedControlWidget::activateOnState()
420 {
421     speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
422 }
423
424 void SpeedControlWidget::updateControls( float rate )
425 {
426     if( speedSlider->isSliderDown() )
427     {
428         //We don't want to change anything if the user is using the slider
429         return;
430     }
431
432     double value = 17 * log( rate ) / log( 2 );
433     int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
434
435     if( sliderValue < speedSlider->minimum() )
436     {
437         sliderValue = speedSlider->minimum();
438     }
439     else if( sliderValue > speedSlider->maximum() )
440     {
441         sliderValue = speedSlider->maximum();
442     }
443     lastValue = sliderValue;
444
445     speedSlider->setValue( sliderValue );
446 }
447
448 void SpeedControlWidget::updateRate( int sliderValue )
449 {
450     if( sliderValue == lastValue )
451         return;
452
453     double speed = pow( 2, (double)sliderValue / 17 );
454     int rate = INPUT_RATE_DEFAULT / speed;
455
456     THEMIM->getIM()->setRate(rate);
457 }
458
459 void SpeedControlWidget::resetRate()
460 {
461     THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
462 }
463
464 CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
465               : QLabel( parent ), p_intf( _p_i )
466 {
467     setContextMenuPolicy( Qt::ActionsContextMenu );
468     CONNECT( this, updateRequested(), this, askForUpdate() );
469
470     setMinimumHeight( 128 );
471     setMinimumWidth( 128 );
472     setMaximumHeight( 128 );
473     setMaximumWidth( 128 );
474     setScaledContents( false );
475     setAlignment( Qt::AlignCenter );
476
477     QList< QAction* > artActions = actions();
478     QAction *action = new QAction( qtr( "Download cover art" ), this );
479     CONNECT( action, triggered(), this, askForUpdate() );
480     addAction( action );
481
482     showArtUpdate( "" );
483 }
484
485 CoverArtLabel::~CoverArtLabel()
486 {
487     QList< QAction* > artActions = actions();
488     foreach( QAction *act, artActions )
489         removeAction( act );
490 }
491
492 void CoverArtLabel::showArtUpdate( const QString& url )
493 {
494     QPixmap pix;
495     if( !url.isEmpty() && pix.load( url ) )
496     {
497         pix = pix.scaled( maximumWidth(), maximumHeight(),
498                           Qt::KeepAspectRatioByExpanding,
499                           Qt::SmoothTransformation );
500     }
501     else
502     {
503         pix = QPixmap( ":/noart.png" );
504     }
505     setPixmap( pix );
506 }
507
508 void CoverArtLabel::askForUpdate()
509 {
510     THEMIM->getIM()->requestArtUpdate();
511 }
512
513 TimeLabel::TimeLabel( intf_thread_t *_p_intf  )
514     : QLabel(), p_intf( _p_intf ), bufTimer( new QTimer(this) ),
515       buffering( false ), showBuffering(false), bufVal( -1 )
516 {
517     b_remainingTime = false;
518     setText( " --:--/--:-- " );
519     setAlignment( Qt::AlignRight | Qt::AlignVCenter );
520     setToolTip( QString( "- " )
521         + qtr( "Click to toggle between elapsed and remaining time" )
522         + QString( "\n- " )
523         + qtr( "Double click to jump to a chosen time position" ) );
524     bufTimer->setSingleShot( true );
525
526     CONNECT( THEMIM->getIM(), positionUpdated( float, int64_t, int ),
527               this, setDisplayPosition( float, int64_t, int ) );
528     CONNECT( THEMIM->getIM(), cachingChanged( float ),
529               this, updateBuffering( float ) );
530     CONNECT( bufTimer, timeout(), this, updateBuffering() );
531 }
532
533 void TimeLabel::setDisplayPosition( float pos, int64_t t, int length )
534 {
535     showBuffering = false;
536     bufTimer->stop();
537
538     if( pos == -1.f )
539     {
540         setText( " --:--/--:-- " );
541         return;
542     }
543
544     int time = t / 1000000;
545
546     secstotimestr( psz_length, length );
547     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
548                                                            : time );
549
550     QString timestr = QString( " %1%2/%3 " )
551             .arg( QString( (b_remainingTime && length) ? "-" : "" ) )
552             .arg( QString( psz_time ) )
553             .arg( QString( ( !length && time ) ? "--:--" : psz_length ) );
554
555     setText( timestr );
556
557     cachedLength = length;
558 }
559
560 void TimeLabel::setDisplayPosition( float pos )
561 {
562     if( pos == -1.f || cachedLength == 0 )
563     {
564         setText( " --:--/--:-- " );
565         return;
566     }
567
568     int time = pos * cachedLength;
569     secstotimestr( psz_time,
570                    ( b_remainingTime && cachedLength ?
571                    cachedLength - time : time ) );
572     QString timestr = QString( " %1%2/%3 " )
573         .arg( QString( (b_remainingTime && cachedLength) ? "-" : "" ) )
574         .arg( QString( psz_time ) )
575         .arg( QString( ( !cachedLength && time ) ? "--:--" : psz_length ) );
576
577     setText( timestr );
578 }
579
580
581 void TimeLabel::toggleTimeDisplay()
582 {
583     b_remainingTime = !b_remainingTime;
584 }
585
586
587 void TimeLabel::updateBuffering( float _buffered )
588 {
589     bufVal = _buffered;
590     if( !buffering || bufVal == 0 )
591     {
592         showBuffering = false;
593         buffering = true;
594         bufTimer->start(200);
595     }
596     else if( bufVal == 1 )
597     {
598         showBuffering = buffering = false;
599         bufTimer->stop();
600     }
601     update();
602 }
603
604 void TimeLabel::updateBuffering()
605 {
606     showBuffering = true;
607     update();
608 }
609
610 void TimeLabel::paintEvent( QPaintEvent* event )
611 {
612     if( showBuffering )
613     {
614         QRect r( rect() );
615         r.setLeft( r.width() * bufVal );
616         QPainter p( this );
617         p.setOpacity( 0.4 );
618         p.fillRect( r, palette().color( QPalette::Highlight ) );
619     }
620     QLabel::paintEvent( event );
621 }