]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.cpp
c07f21f64a53af24187a84a38b1e1744e7087601
[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     }
261     return false;
262 }
263
264 /**********************************************************************
265  * Background Widget. Show a simple image background. Currently,
266  * it's album art if present or cone.
267  **********************************************************************/
268
269 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
270                  :QWidget( NULL ), p_intf( _p_i ), b_expandPixmap( false )
271 {
272     /* A dark background */
273     setAutoFillBackground( true );
274     QPalette plt = palette();
275     plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
276     plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
277     setPalette( plt );
278
279     /* Init the cone art */
280     updateArt( "" );
281
282     CONNECT( THEMIM->getIM(), artChanged( QString ),
283              this, updateArt( const QString& ) );
284 }
285
286 void BackgroundWidget::updateArt( const QString& url )
287 {
288     if ( !url.isEmpty() )
289     {
290         pixmapUrl = url;
291     }
292     else
293     {   /* Xmas joke */
294         if( QDate::currentDate().dayOfYear() >= 354 )
295             pixmapUrl = QString( ":/logo/vlc128-christmas.png" );
296         else
297             pixmapUrl = QString( ":/logo/vlc128.png" );
298     }
299     update();
300 }
301
302 void BackgroundWidget::paintEvent( QPaintEvent *e )
303 {
304     int i_maxwidth, i_maxheight;
305     QPixmap pixmap = QPixmap( pixmapUrl );
306     QPainter painter(this);
307     QBitmap pMask;
308     float f_alpha = 1.0;
309
310     i_maxwidth = std::min( maximumWidth(), width() ) - MARGIN * 2;
311     i_maxheight = std::min( maximumHeight(), height() ) - MARGIN * 2;
312
313     if ( height() > MARGIN * 2 )
314     {
315         /* Scale down the pixmap if the widget is too small */
316         if( pixmap.width() > i_maxwidth || pixmap.height() > i_maxheight )
317         {
318             pixmap = pixmap.scaled( i_maxwidth, i_maxheight,
319                             Qt::KeepAspectRatio, Qt::SmoothTransformation );
320         }
321         else
322         if ( b_expandPixmap &&
323              pixmap.width() < width() && pixmap.height() < height() )
324         {
325             /* Scale up the pixmap to fill widget's size */
326             f_alpha = ( (float) pixmap.height() / (float) height() );
327             pixmap = pixmap.scaled(
328                     width() - MARGIN * 2,
329                     height() - MARGIN * 2,
330                     Qt::KeepAspectRatio,
331                     ( f_alpha < .2 )? /* Don't waste cpu when not visible */
332                         Qt::SmoothTransformation:
333                         Qt::FastTransformation
334                     );
335             /* Non agressive alpha compositing when sizing up */
336             pMask = QBitmap( pixmap.width(), pixmap.height() );
337             pMask.fill( QColor::fromRgbF( 1.0, 1.0, 1.0, f_alpha ) );
338             pixmap.setMask( pMask );
339         }
340
341         painter.drawPixmap(
342                 MARGIN + ( i_maxwidth - pixmap.width() ) /2,
343                 MARGIN + ( i_maxheight - pixmap.height() ) /2,
344                 pixmap);
345     }
346     QWidget::paintEvent( e );
347 }
348
349 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
350 {
351     QVLCMenu::PopupMenu( p_intf, true );
352     event->accept();
353 }
354
355 #if 0
356 #include <QPushButton>
357 #include <QHBoxLayout>
358
359 /**********************************************************************
360  * Visualization selector panel
361  **********************************************************************/
362 VisualSelector::VisualSelector( intf_thread_t *_p_i ) :
363                                 QFrame( NULL ), p_intf( _p_i )
364 {
365     QHBoxLayout *layout = new QHBoxLayout( this );
366     layout->setMargin( 0 );
367     QPushButton *prevButton = new QPushButton( "Prev" );
368     QPushButton *nextButton = new QPushButton( "Next" );
369     layout->addWidget( prevButton );
370     layout->addWidget( nextButton );
371
372     layout->addStretch( 10 );
373     layout->addWidget( new QLabel( qtr( "Current visualization" ) ) );
374
375     current = new QLabel( qtr( "None" ) );
376     layout->addWidget( current );
377
378     BUTTONACT( prevButton, prev() );
379     BUTTONACT( nextButton, next() );
380
381     setLayout( layout );
382     setMaximumHeight( 35 );
383 }
384
385 VisualSelector::~VisualSelector()
386 {}
387
388 void VisualSelector::prev()
389 {
390     char *psz_new = aout_VisualPrev( p_intf );
391     if( psz_new )
392     {
393         current->setText( qfu( psz_new ) );
394         free( psz_new );
395     }
396 }
397
398 void VisualSelector::next()
399 {
400     char *psz_new = aout_VisualNext( p_intf );
401     if( psz_new )
402     {
403         current->setText( qfu( psz_new ) );
404         free( psz_new );
405     }
406 }
407 #endif
408
409 SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, QWidget *parent )
410            : QLabel( parent ), p_intf( _p_intf )
411 {
412     tooltipStringPattern = qtr( "Current playback speed: %1\nClick to adjust" );
413
414     /* Create the Speed Control Widget */
415     speedControl = new SpeedControlWidget( p_intf, this );
416     speedControlMenu = new QMenu( this );
417
418     QWidgetAction *widgetAction = new QWidgetAction( speedControl );
419     widgetAction->setDefaultWidget( speedControl );
420     speedControlMenu->addAction( widgetAction );
421
422     /* Change the SpeedRate in the Status Bar */
423     CONNECT( THEMIM->getIM(), rateChanged( float ), this, setRate( float ) );
424
425     DCONNECT( THEMIM, inputChanged( input_thread_t * ),
426               speedControl, activateOnState() );
427     setRate( var_InheritFloat( p_intf, "rate" ) );
428 }
429
430 SpeedLabel::~SpeedLabel()
431 {
432     delete speedControl;
433     delete speedControlMenu;
434 }
435
436 /****************************************************************************
437  * Small right-click menu for rate control
438  ****************************************************************************/
439
440 void SpeedLabel::showSpeedMenu( QPoint pos )
441 {
442     speedControlMenu->exec( QCursor::pos() - pos
443                           + QPoint( 0, height() ) );
444 }
445
446 void SpeedLabel::setRate( float rate )
447 {
448     QString str;
449     str.setNum( rate, 'f', 2 );
450     str.append( "x" );
451     setText( str );
452     setToolTip( tooltipStringPattern.arg( str ) );
453     speedControl->updateControls( rate );
454 }
455
456 /**********************************************************************
457  * Speed control widget
458  **********************************************************************/
459 SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
460                     : QFrame( _parent ), p_intf( _p_i )
461 {
462     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
463     sizePolicy.setHorizontalStretch( 0 );
464     sizePolicy.setVerticalStretch( 0 );
465
466     speedSlider = new QSlider( this );
467     speedSlider->setSizePolicy( sizePolicy );
468     speedSlider->setMaximumSize( QSize( 80, 200 ) );
469     speedSlider->setOrientation( Qt::Vertical );
470     speedSlider->setTickPosition( QSlider::TicksRight );
471
472     speedSlider->setRange( -34, 34 );
473     speedSlider->setSingleStep( 1 );
474     speedSlider->setPageStep( 1 );
475     speedSlider->setTickInterval( 17 );
476
477     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
478
479     QToolButton *normalSpeedButton = new QToolButton( this );
480     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
481     normalSpeedButton->setAutoRaise( true );
482     normalSpeedButton->setText( "1x" );
483     normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
484
485     CONNECT( normalSpeedButton, clicked(), this, resetRate() );
486
487     QVBoxLayout *speedControlLayout = new QVBoxLayout( this );
488     speedControlLayout->setContentsMargins( 4, 4, 4, 4 );
489     speedControlLayout->setSpacing( 4 );
490     speedControlLayout->addWidget( speedSlider );
491     speedControlLayout->addWidget( normalSpeedButton );
492
493     lastValue = 0;
494
495     activateOnState();
496 }
497
498 void SpeedControlWidget::activateOnState()
499 {
500     speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
501 }
502
503 void SpeedControlWidget::updateControls( float rate )
504 {
505     if( speedSlider->isSliderDown() )
506     {
507         //We don't want to change anything if the user is using the slider
508         return;
509     }
510
511     double value = 17 * log( rate ) / log( 2 );
512     int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
513
514     if( sliderValue < speedSlider->minimum() )
515     {
516         sliderValue = speedSlider->minimum();
517     }
518     else if( sliderValue > speedSlider->maximum() )
519     {
520         sliderValue = speedSlider->maximum();
521     }
522     lastValue = sliderValue;
523
524     speedSlider->setValue( sliderValue );
525 }
526
527 void SpeedControlWidget::updateRate( int sliderValue )
528 {
529     if( sliderValue == lastValue )
530         return;
531
532     double speed = pow( 2, (double)sliderValue / 17 );
533     int rate = INPUT_RATE_DEFAULT / speed;
534
535     THEMIM->getIM()->setRate(rate);
536 }
537
538 void SpeedControlWidget::resetRate()
539 {
540     THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
541 }
542
543 CoverArtLabel::CoverArtLabel( QWidget *parent, intf_thread_t *_p_i )
544               : QLabel( parent ), p_intf( _p_i )
545 {
546     setContextMenuPolicy( Qt::ActionsContextMenu );
547     CONNECT( this, updateRequested(), this, askForUpdate() );
548
549     setMinimumHeight( 128 );
550     setMinimumWidth( 128 );
551     setMaximumHeight( 128 );
552     setMaximumWidth( 128 );
553     setScaledContents( false );
554     setAlignment( Qt::AlignCenter );
555
556     QList< QAction* > artActions = actions();
557     QAction *action = new QAction( qtr( "Download cover art" ), this );
558     CONNECT( action, triggered(), this, askForUpdate() );
559     addAction( action );
560
561     showArtUpdate( "" );
562 }
563
564 CoverArtLabel::~CoverArtLabel()
565 {
566     QList< QAction* > artActions = actions();
567     foreach( QAction *act, artActions )
568         removeAction( act );
569 }
570
571 void CoverArtLabel::showArtUpdate( const QString& url )
572 {
573     QPixmap pix;
574     if( !url.isEmpty() && pix.load( url ) )
575     {
576         pix = pix.scaled( maximumWidth(), maximumHeight(),
577                           Qt::KeepAspectRatioByExpanding );
578     }
579     else
580     {
581         pix = QPixmap( ":/noart.png" );
582     }
583     setPixmap( pix );
584 }
585
586 void CoverArtLabel::askForUpdate()
587 {
588     THEMIM->getIM()->requestArtUpdate();
589 }
590
591 TimeLabel::TimeLabel( intf_thread_t *_p_intf  )
592     : QLabel(), p_intf( _p_intf ), bufTimer( new QTimer(this) ),
593       buffering( false ), showBuffering(false), bufVal( -1 )
594 {
595     b_remainingTime = false;
596     setText( " --:--/--:-- " );
597     setAlignment( Qt::AlignRight | Qt::AlignVCenter );
598     setToolTip( QString( "- " )
599         + qtr( "Click to toggle between elapsed and remaining time" )
600         + QString( "\n- " )
601         + qtr( "Double click to jump to a chosen time position" ) );
602     bufTimer->setSingleShot( true );
603
604     CONNECT( THEMIM->getIM(), positionUpdated( float, int64_t, int ),
605               this, setDisplayPosition( float, int64_t, int ) );
606     CONNECT( THEMIM->getIM(), cachingChanged( float ),
607               this, updateBuffering( float ) );
608     CONNECT( bufTimer, timeout(), this, updateBuffering() );
609 }
610
611 void TimeLabel::setDisplayPosition( float pos, int64_t t, int length )
612 {
613     showBuffering = false;
614     bufTimer->stop();
615
616     if( pos == -1.f )
617     {
618         setText( " --:--/--:-- " );
619         return;
620     }
621
622     int time = t / 1000000;
623
624     secstotimestr( psz_length, length );
625     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
626                                                            : time );
627
628     QString timestr = QString( " %1%2/%3 " )
629             .arg( QString( (b_remainingTime && length) ? "-" : "" ) )
630             .arg( QString( psz_time ) )
631             .arg( QString( ( !length && time ) ? "--:--" : psz_length ) );
632
633     setText( timestr );
634
635     cachedLength = length;
636 }
637
638 void TimeLabel::setDisplayPosition( float pos )
639 {
640     if( pos == -1.f || cachedLength == 0 )
641     {
642         setText( " --:--/--:-- " );
643         return;
644     }
645
646     int time = pos * cachedLength;
647     secstotimestr( psz_time,
648                    ( b_remainingTime && cachedLength ?
649                    cachedLength - time : time ) );
650     QString timestr = QString( " %1%2/%3 " )
651         .arg( QString( (b_remainingTime && cachedLength) ? "-" : "" ) )
652         .arg( QString( psz_time ) )
653         .arg( QString( ( !cachedLength && time ) ? "--:--" : psz_length ) );
654
655     setText( timestr );
656 }
657
658
659 void TimeLabel::toggleTimeDisplay()
660 {
661     b_remainingTime = !b_remainingTime;
662 }
663
664
665 void TimeLabel::updateBuffering( float _buffered )
666 {
667     bufVal = _buffered;
668     if( !buffering || bufVal == 0 )
669     {
670         showBuffering = false;
671         buffering = true;
672         bufTimer->start(200);
673     }
674     else if( bufVal == 1 )
675     {
676         showBuffering = buffering = false;
677         bufTimer->stop();
678     }
679     update();
680 }
681
682 void TimeLabel::updateBuffering()
683 {
684     showBuffering = true;
685     update();
686 }
687
688 void TimeLabel::paintEvent( QPaintEvent* event )
689 {
690     if( showBuffering )
691     {
692         QRect r( rect() );
693         r.setLeft( r.width() * bufVal );
694         QPainter p( this );
695         p.setOpacity( 0.4 );
696         p.fillRect( r, palette().color( QPalette::Highlight ) );
697     }
698     QLabel::paintEvent( event );
699 }