]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
Qt: Correctly close the player when alt+f4 is pressed
[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 static void videoSync( void )
57 {
58     /* Make sure the X server has processed all requests.
59      * This protects other threads using distinct connections from getting
60      * the video widget window in an inconsistent states. */
61     XSync( QX11Info::display(), False );
62 }
63 #else
64 # define videoSync() (void)0
65 #endif
66
67 #include <math.h>
68 #include <assert.h>
69
70 class ReparentableWidget : public QWidget
71 {
72 private:
73     VideoWidget *owner;
74 public:
75     ReparentableWidget( VideoWidget *owner ) : owner( owner )
76     {}
77 };
78
79 /**********************************************************************
80  * Video Widget. A simple frame on which video is drawn
81  * This class handles resize issues
82  **********************************************************************/
83
84 VideoWidget::VideoWidget( intf_thread_t *_p_i )
85     : QFrame( NULL )
86       , p_intf( _p_i )
87       , reparentable( NULL )
88 {
89     /* Set the policy to expand in both directions */
90     // setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
91
92     layout = new QHBoxLayout( this );
93     layout->setContentsMargins( 0, 0, 0, 0 );
94     setLayout( layout );
95 }
96
97 VideoWidget::~VideoWidget()
98 {
99     /* Ensure we are not leaking the video output. This would crash. */
100     assert( reparentable == NULL );
101 }
102
103 /**
104  * Request the video to avoid the conflicts
105  **/
106 WId VideoWidget::request( int *pi_x, int *pi_y,
107                           unsigned int *pi_width, unsigned int *pi_height,
108                           bool b_keep_size )
109 {
110     msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
111
112     if( reparentable != NULL )
113     {
114         msg_Dbg( p_intf, "embedded video already in use" );
115         return NULL;
116     }
117     if( b_keep_size )
118     {
119         *pi_width  = size().width();
120         *pi_height = size().height();
121     }
122
123     /* The Qt4 UI needs a fixed a widget ("this"), so that the parent layout is
124      * not messed up when we the video is reparented. Hence, we create an extra
125      * reparentable widget, that will be within the VideoWidget in windowed
126      * mode, and within the root window (NULL parent) in full-screen mode.
127      */
128     reparentable = new ReparentableWidget( this );
129     reparentable->installEventFilter(this );
130     QLayout *innerLayout = new QHBoxLayout( reparentable );
131     innerLayout->setContentsMargins( 0, 0, 0, 0 );
132
133     /* The owner of the video window needs a stable handle (WinId). Reparenting
134      * in Qt4-X11 changes the WinId of the widget, so we need to create another
135      * dummy widget that stays within the reparentable widget. */
136     QWidget *stable = new QWidget();
137     QPalette plt = palette();
138     plt.setColor( QPalette::Window, Qt::black );
139     stable->setPalette( plt );
140     stable->setAutoFillBackground(true);
141     /* Indicates that the widget wants to draw directly onto the screen.
142        Widgets with this attribute set do not participate in composition
143        management */
144     stable->setAttribute( Qt::WA_PaintOnScreen, true );
145
146     innerLayout->addWidget( stable );
147
148     layout->addWidget( reparentable );
149
150 #ifdef Q_WS_X11
151     /* HACK: Only one X11 client can subscribe to mouse button press events.
152      * VLC currently handles those in the video display.
153      * Force Qt4 to unsubscribe from mouse press and release events. */
154     Display *dpy = QX11Info::display();
155     Window w = stable->winId();
156     XWindowAttributes attr;
157
158     XGetWindowAttributes( dpy, w, &attr );
159     attr.your_event_mask &= ~(ButtonPressMask|ButtonReleaseMask);
160     XSelectInput( dpy, w, attr.your_event_mask );
161 #endif
162     videoSync();
163 #ifndef NDEBUG
164     msg_Dbg( p_intf, "embedded video ready (handle %p)",
165              (void *)stable->winId() );
166 #endif
167     return stable->winId();
168 }
169
170 /* Set the Widget to the correct Size */
171 /* Function has to be called by the parent
172    Parent has to care about resizing itself */
173 void VideoWidget::SetSizing( unsigned int w, unsigned int h )
174 {
175     if (reparentable->windowState() & Qt::WindowFullScreen )
176         return;
177     if( !isVisible() ) show();
178     resize( w, h );
179     emit sizeChanged( w, h );
180     videoSync();
181 }
182
183 void VideoWidget::SetFullScreen( bool b_fs )
184 {
185     const Qt::WindowStates curstate = reparentable->windowState();
186     Qt::WindowStates newstate = curstate;
187     Qt::WindowFlags  newflags = reparentable->windowFlags();
188
189
190     if( b_fs )
191     {
192         newstate |= Qt::WindowFullScreen;
193         newflags |= Qt::WindowStaysOnTopHint;
194     }
195     else
196     {
197         newstate &= ~Qt::WindowFullScreen;
198         newflags &= ~Qt::WindowStaysOnTopHint;
199     }
200     if( newstate == curstate )
201         return; /* no changes needed */
202
203     if( b_fs )
204     {   /* Go full-screen */
205         int numscreen = var_InheritInteger( p_intf, "qt-fullscreen-screennumber" );
206         /* if user hasn't defined screennumber, or screennumber that is bigger
207          * than current number of screens, take screennumber where current interface
208          * is
209          */
210         if( numscreen == -1 || numscreen > QApplication::desktop()->numScreens() )
211             numscreen = QApplication::desktop()->screenNumber( p_intf->p_sys->p_mi );
212
213         QRect screenres = QApplication::desktop()->screenGeometry( numscreen );
214
215         /* To be sure window is on proper-screen in xinerama */
216         if( !screenres.contains( reparentable->pos() ) )
217         {
218             msg_Dbg( p_intf, "Moving video to correct screen");
219             reparentable->move( QPoint( screenres.x(), screenres.y() ) );
220         }
221         reparentable->setParent( NULL, newflags );
222         reparentable->setWindowState( newstate );
223         reparentable->show();
224     }
225     else
226     {   /* Go windowed */
227         reparentable->setWindowFlags( newflags );
228         reparentable->setWindowState( newstate );
229         layout->addWidget( reparentable );
230     }
231     videoSync();
232 }
233
234 void VideoWidget::release( void )
235 {
236     msg_Dbg( p_intf, "Video is not needed anymore" );
237     //layout->removeWidget( reparentable );
238
239     reparentable->deleteLater();
240     reparentable = NULL;
241     updateGeometry();
242     hide();
243 }
244
245 #undef KeyPress
246 bool VideoWidget::eventFilter(QObject *obj, QEvent *event)
247 {
248     if( obj == reparentable )
249     {
250         if (event->type() == QEvent::Close)
251         {
252             THEDP->quit();
253             return true;
254         }
255         else if( event->type() == QEvent::KeyPress )
256         {
257             emit keyPressed( static_cast<QKeyEvent *>(event) );
258             return true;
259         }
260         else if( event->type() == QEvent::Wheel )
261         {
262             int i_vlckey = qtWheelEventToVLCKey( static_cast<QWheelEvent *>( event) );
263             var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlckey );
264             msg_Dbg( p_intf, "Here: %i", i_vlckey );
265             return true;
266         }
267     }
268     return false;
269 }
270
271 /**********************************************************************
272  * Background Widget. Show a simple image background. Currently,
273  * it's album art if present or cone.
274  **********************************************************************/
275
276 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
277                  :QWidget( NULL ), p_intf( _p_i ), b_expandPixmap( false )
278 {
279     /* A dark background */
280     setAutoFillBackground( true );
281     QPalette plt = palette();
282     plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
283     plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
284     setPalette( plt );
285
286     /* Init the cone art */
287     updateArt( "" );
288
289     CONNECT( THEMIM->getIM(), artChanged( QString ),
290              this, updateArt( const QString& ) );
291 }
292
293 void BackgroundWidget::updateArt( const QString& url )
294 {
295     if ( !url.isEmpty() )
296     {
297         pixmapUrl = url;
298     }
299     else
300     {   /* Xmas joke */
301         if( QDate::currentDate().dayOfYear() >= 354 )
302             pixmapUrl = QString( ":/logo/vlc128-christmas.png" );
303         else
304             pixmapUrl = QString( ":/logo/vlc128.png" );
305     }
306     update();
307 }
308
309 void BackgroundWidget::paintEvent( QPaintEvent *e )
310 {
311     int i_maxwidth, i_maxheight;
312     QPixmap pixmap = QPixmap( pixmapUrl );
313     QPainter painter(this);
314     QBitmap pMask;
315     float f_alpha = 1.0;
316
317     i_maxwidth = std::min( maximumWidth(), width() ) - MARGIN * 2;
318     i_maxheight = std::min( maximumHeight(), height() ) - MARGIN * 2;
319
320     if ( height() > MARGIN * 2 )
321     {
322         /* Scale down the pixmap if the widget is too small */
323         if( pixmap.width() > i_maxwidth || pixmap.height() > i_maxheight )
324         {
325             pixmap = pixmap.scaled( i_maxwidth, i_maxheight,
326                             Qt::KeepAspectRatio, Qt::SmoothTransformation );
327         }
328         else
329         if ( b_expandPixmap &&
330              pixmap.width() < width() && pixmap.height() < height() )
331         {
332             /* Scale up the pixmap to fill widget's size */
333             f_alpha = ( (float) pixmap.height() / (float) height() );
334             pixmap = pixmap.scaled(
335                     width() - MARGIN * 2,
336                     height() - MARGIN * 2,
337                     Qt::KeepAspectRatio,
338                     ( f_alpha < .2 )? /* Don't waste cpu when not visible */
339                         Qt::SmoothTransformation:
340                         Qt::FastTransformation
341                     );
342             /* Non agressive alpha compositing when sizing up */
343             pMask = QBitmap( pixmap.width(), pixmap.height() );
344             pMask.fill( QColor::fromRgbF( 1.0, 1.0, 1.0, f_alpha ) );
345             pixmap.setMask( pMask );
346         }
347
348         painter.drawPixmap(
349                 MARGIN + ( i_maxwidth - pixmap.width() ) /2,
350                 MARGIN + ( i_maxheight - pixmap.height() ) /2,
351                 pixmap);
352     }
353     QWidget::paintEvent( e );
354 }
355
356 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
357 {
358     QVLCMenu::PopupMenu( p_intf, true );
359     event->accept();
360 }
361
362 #if 0
363 #include <QPushButton>
364 #include <QHBoxLayout>
365
366 /**********************************************************************
367  * Visualization selector panel
368  **********************************************************************/
369 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
370                                 QFrame( NULL ), p_intf( _p_i )
371 {
372     QHBoxLayout *layout = new QHBoxLayout( this );
373     layout->setMargin( 0 );
374     QPushButton *prevButton = new QPushButton( "Prev" );
375     QPushButton *nextButton = new QPushButton( "Next" );
376     layout->addWidget( prevButton );
377     layout->addWidget( nextButton );
378
379     layout->addStretch( 10 );
380     layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
381
382     current = new QLabel( qtr( "None" ) );
383     layout->addWidget( current );
384
385     BUTTONACT( prevButton, prev() );
386     BUTTONACT( nextButton, next() );
387
388     setLayout( layout );
389     setMaximumHeight( 35 );
390 }
391
392 VisualSelector::~VisualSelector()
393 {}
394
395 void VisualSelector::prev()
396 {
397     char *psz_new = aout_VisualPrev( p_intf );
398     if( psz_new )
399     {
400         current->setText( qfu( psz_new ) );
401         free( psz_new );
402     }
403 }
404
405 void VisualSelector::next()
406 {
407     char *psz_new = aout_VisualNext( p_intf );
408     if( psz_new )
409     {
410         current->setText( qfu( psz_new ) );
411         free( psz_new );
412     }
413 }
414 #endif
415
416 SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, QWidget *parent )
417            : QLabel( parent ), p_intf( _p_intf )
418 {
419     tooltipStringPattern = qtr( "Current playback speed: %1\nClick to adjust" );
420
421     /* Create the Speed Control Widget */
422     speedControl = new SpeedControlWidget( p_intf, this );
423     speedControlMenu = new QMenu( this );
424
425     QWidgetAction *widgetAction = new QWidgetAction( speedControl );
426     widgetAction->setDefaultWidget( speedControl );
427     speedControlMenu->addAction( widgetAction );
428
429     /* Change the SpeedRate in the Status Bar */
430     CONNECT( THEMIM->getIM(), rateChanged( float ), this, setRate( float ) );
431
432     DCONNECT( THEMIM, inputChanged( input_thread_t * ),
433               speedControl, activateOnState() );
434     setRate( var_InheritFloat( p_intf, "rate" ) );
435 }
436
437 SpeedLabel::~SpeedLabel()
438 {
439     delete speedControl;
440     delete speedControlMenu;
441 }
442
443 /****************************************************************************
444  * Small right-click menu for rate control
445  ****************************************************************************/
446
447 void SpeedLabel::showSpeedMenu( QPoint pos )
448 {
449     speedControlMenu->exec( QCursor::pos() - pos
450                           + QPoint( 0, height() ) );
451 }
452
453 void SpeedLabel::setRate( float rate )
454 {
455     QString str;
456     str.setNum( rate, 'f', 2 );
457     str.append( "x" );
458     setText( str );
459     setToolTip( tooltipStringPattern.arg( str ) );
460     speedControl->updateControls( rate );
461 }
462
463 /**********************************************************************
464  * Speed control widget
465  **********************************************************************/
466 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
467                     : QFrame( _parent ), p_intf( _p_i )
468 {
469     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
470     sizePolicy.setHorizontalStretch( 0 );
471     sizePolicy.setVerticalStretch( 0 );
472
473     speedSlider = new QSlider( this );
474     speedSlider->setSizePolicy( sizePolicy );
475     speedSlider->setMaximumSize( QSize( 80, 200 ) );
476     speedSlider->setOrientation( Qt::Vertical );
477     speedSlider->setTickPosition( QSlider::TicksRight );
478
479     speedSlider->setRange( -34, 34 );
480     speedSlider->setSingleStep( 1 );
481     speedSlider->setPageStep( 1 );
482     speedSlider->setTickInterval( 17 );
483
484     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
485
486     QToolButton *normalSpeedButton = new QToolButton( this );
487     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
488     normalSpeedButton->setAutoRaise( true );
489     normalSpeedButton->setText( "1x" );
490     normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
491
492     CONNECT( normalSpeedButton, clicked(), this, resetRate() );
493
494     QVBoxLayout *speedControlLayout = new QVBoxLayout( this );
495     speedControlLayout->setContentsMargins( 4, 4, 4, 4 );
496     speedControlLayout->setSpacing( 4 );
497     speedControlLayout->addWidget( speedSlider );
498     speedControlLayout->addWidget( normalSpeedButton );
499
500     lastValue = 0;
501
502     activateOnState();
503 }
504
505 void SpeedControlWidget::activateOnState()
506 {
507     speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
508 }
509
510 void SpeedControlWidget::updateControls( float rate )
511 {
512     if( speedSlider->isSliderDown() )
513     {
514         //We don't want to change anything if the user is using the slider
515         return;
516     }
517
518     double value = 17 * log( rate ) / log( 2 );
519     int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
520
521     if( sliderValue < speedSlider->minimum() )
522     {
523         sliderValue = speedSlider->minimum();
524     }
525     else if( sliderValue > speedSlider->maximum() )
526     {
527         sliderValue = speedSlider->maximum();
528     }
529     lastValue = sliderValue;
530
531     speedSlider->setValue( sliderValue );
532 }
533
534 void SpeedControlWidget::updateRate( int sliderValue )
535 {
536     if( sliderValue == lastValue )
537         return;
538
539     double speed = pow( 2, (double)sliderValue / 17 );
540     int rate = INPUT_RATE_DEFAULT / speed;
541
542     THEMIM->getIM()->setRate(rate);
543 }
544
545 void SpeedControlWidget::resetRate()
546 {
547     THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
548 }
549
550 CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
551               : QLabel( parent ), p_intf( _p_i )
552 {
553     setContextMenuPolicy( Qt::ActionsContextMenu );
554     CONNECT( this, updateRequested(), this, askForUpdate() );
555
556     setMinimumHeight( 128 );
557     setMinimumWidth( 128 );
558     setMaximumHeight( 128 );
559     setMaximumWidth( 128 );
560     setScaledContents( false );
561     setAlignment( Qt::AlignCenter );
562
563     QList< QAction* > artActions = actions();
564     QAction *action = new QAction( qtr( "Download cover art" ), this );
565     CONNECT( action, triggered(), this, askForUpdate() );
566     addAction( action );
567
568     showArtUpdate( "" );
569 }
570
571 CoverArtLabel::~CoverArtLabel()
572 {
573     QList< QAction* > artActions = actions();
574     foreach( QAction *act, artActions )
575         removeAction( act );
576 }
577
578 void CoverArtLabel::showArtUpdate( const QString& url )
579 {
580     QPixmap pix;
581     if( !url.isEmpty() && pix.load( url ) )
582     {
583         pix = pix.scaled( maximumWidth(), maximumHeight(),
584                           Qt::KeepAspectRatioByExpanding );
585     }
586     else
587     {
588         pix = QPixmap( ":/noart.png" );
589     }
590     setPixmap( pix );
591 }
592
593 void CoverArtLabel::askForUpdate()
594 {
595     THEMIM->getIM()->requestArtUpdate();
596 }
597
598 TimeLabel::TimeLabel( intf_thread_t *_p_intf  )
599     : QLabel(), p_intf( _p_intf ), bufTimer( new QTimer(this) ),
600       buffering( false ), showBuffering(false), bufVal( -1 )
601 {
602     b_remainingTime = false;
603     setText( " --:--/--:-- " );
604     setAlignment( Qt::AlignRight | Qt::AlignVCenter );
605     setToolTip( QString( "- " )
606         + qtr( "Click to toggle between elapsed and remaining time" )
607         + QString( "\n- " )
608         + qtr( "Double click to jump to a chosen time position" ) );
609     bufTimer->setSingleShot( true );
610
611     CONNECT( THEMIM->getIM(), positionUpdated( float, int64_t, int ),
612               this, setDisplayPosition( float, int64_t, int ) );
613     CONNECT( THEMIM->getIM(), cachingChanged( float ),
614               this, updateBuffering( float ) );
615     CONNECT( bufTimer, timeout(), this, updateBuffering() );
616 }
617
618 void TimeLabel::setDisplayPosition( float pos, int64_t t, int length )
619 {
620     showBuffering = false;
621     bufTimer->stop();
622
623     if( pos == -1.f )
624     {
625         setText( " --:--/--:-- " );
626         return;
627     }
628
629     int time = t / 1000000;
630
631     secstotimestr( psz_length, length );
632     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
633                                                            : time );
634
635     QString timestr = QString( " %1%2/%3 " )
636             .arg( QString( (b_remainingTime && length) ? "-" : "" ) )
637             .arg( QString( psz_time ) )
638             .arg( QString( ( !length && time ) ? "--:--" : psz_length ) );
639
640     setText( timestr );
641
642     cachedLength = length;
643 }
644
645 void TimeLabel::setDisplayPosition( float pos )
646 {
647     if( pos == -1.f || cachedLength == 0 )
648     {
649         setText( " --:--/--:-- " );
650         return;
651     }
652
653     int time = pos * cachedLength;
654     secstotimestr( psz_time,
655                    ( b_remainingTime && cachedLength ?
656                    cachedLength - time : time ) );
657     QString timestr = QString( " %1%2/%3 " )
658         .arg( QString( (b_remainingTime && cachedLength) ? "-" : "" ) )
659         .arg( QString( psz_time ) )
660         .arg( QString( ( !cachedLength && time ) ? "--:--" : psz_length ) );
661
662     setText( timestr );
663 }
664
665
666 void TimeLabel::toggleTimeDisplay()
667 {
668     b_remainingTime = !b_remainingTime;
669 }
670
671
672 void TimeLabel::updateBuffering( float _buffered )
673 {
674     bufVal = _buffered;
675     if( !buffering || bufVal == 0 )
676     {
677         showBuffering = false;
678         buffering = true;
679         bufTimer->start(200);
680     }
681     else if( bufVal == 1 )
682     {
683         showBuffering = buffering = false;
684         bufTimer->stop();
685     }
686     update();
687 }
688
689 void TimeLabel::updateBuffering()
690 {
691     showBuffering = true;
692     update();
693 }
694
695 void TimeLabel::paintEvent( QPaintEvent* event )
696 {
697     if( showBuffering )
698     {
699         QRect r( rect() );
700         r.setLeft( r.width() * bufVal );
701         QPainter p( this );
702         p.setOpacity( 0.4 );
703         p.fillRect( r, palette().color( QPalette::Highlight ) );
704     }
705     QLabel::paintEvent( event );
706 }