]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/interface_widgets.cpp
Simplified/fixed qt4 fullscreen implementation.
[vlc] / modules / gui / qt4 / components / interface_widgets.cpp
index 1da5835cf5a88d15fadbd7a10baffb20c634e42f..60b844b7b69a223681e7970977605f84c2c5c301 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * interface_widgets.cpp : Custom widgets for the main interface
  ****************************************************************************
- * Copyright (C) 2006-2008 the VideoLAN team
+ * Copyright (C) 2006-2010 the VideoLAN team
  * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
@@ -29,6 +29,8 @@
 #endif
 
 #include "components/interface_widgets.hpp"
+#include "dialogs_provider.hpp"
+#include "util/customwidgets.hpp"               // qtEventToVLCKey, QVLCStackedWidget
 
 #include "menus.hpp"             /* Popup menu on bgWidget */
 
 #include <QLabel>
 #include <QToolButton>
 #include <QPalette>
+#include <QEvent>
 #include <QResizeEvent>
 #include <QDate>
 #include <QMenu>
 #include <QWidgetAction>
 #include <QDesktopWidget>
+#include <QPainter>
+#include <QTimer>
+#include <QSlider>
+#include <QBitmap>
 
 #ifdef Q_WS_X11
-# include <X11/Xlib.h>
-# include <qx11info_x11.h>
-static void videoSync( void )
-{
-    /* Make sure the X server has processed all requests.
-     * This protects other threads using distinct connections from getting
-     * the video widget window in an inconsistent states. */
-    XSync( QX11Info::display(), False );
-}
-#else
-# define videoSync() (void)0
+#   include <X11/Xlib.h>
+#   include <qx11info_x11.h>
 #endif
 
 #include <math.h>
-
-class ReparentableWidget : public QWidget
-{
-private:
-    VideoWidget *owner;
-public:
-    ReparentableWidget( VideoWidget *owner ) : owner( owner )
-    {
-    }
-
-protected:
-    void keyPressEvent( QKeyEvent *e )
-    {
-        emit owner->keyPressed( e );
-    }
-};
+#include <assert.h>
 
 /**********************************************************************
  * Video Widget. A simple frame on which video is drawn
@@ -83,20 +66,30 @@ protected:
 VideoWidget::VideoWidget( intf_thread_t *_p_i )
     : QFrame( NULL )
       , p_intf( _p_i )
-      , reparentable( NULL )
 {
     /* Set the policy to expand in both directions */
-//    setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
+    // setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding );
 
     layout = new QHBoxLayout( this );
     layout->setContentsMargins( 0, 0, 0, 0 );
     setLayout( layout );
+    stable = NULL;
 }
 
 VideoWidget::~VideoWidget()
 {
     /* Ensure we are not leaking the video output. This would crash. */
-    assert( reparentable == NULL );
+    assert( !stable );
+}
+
+void VideoWidget::sync( void )
+{
+#ifdef Q_WS_X11
+    /* Make sure the X server has processed all requests.
+     * This protects other threads using distinct connections from getting
+     * the video widget window in an inconsistent states. */
+    XSync( QX11Info::display(), False );
+#endif
 }
 
 /**
@@ -108,7 +101,7 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
 {
     msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
 
-    if( reparentable != NULL )
+    if( stable )
     {
         msg_Dbg( p_intf, "embedded video already in use" );
         return NULL;
@@ -119,19 +112,10 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
         *pi_height = size().height();
     }
 
-    /* The Qt4 UI needs a fixed a widget ("this"), so that the parent layout is
-     * not messed up when we the video is reparented. Hence, we create an extra
-     * reparentable widget, that will be within the VideoWidget in windowed
-     * mode, and within the root window (NULL parent) in full-screen mode.
-     */
-    reparentable = new ReparentableWidget( this );
-    QLayout *innerLayout = new QHBoxLayout( reparentable );
-    innerLayout->setContentsMargins( 0, 0, 0, 0 );
-
     /* The owner of the video window needs a stable handle (WinId). Reparenting
      * in Qt4-X11 changes the WinId of the widget, so we need to create another
      * dummy widget that stays within the reparentable widget. */
-    QWidget *stable = new QWidget();
+    stable = new QWidget();
     QPalette plt = palette();
     plt.setColor( QPalette::Window, Qt::black );
     stable->setPalette( plt );
@@ -139,11 +123,13 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
     /* Indicates that the widget wants to draw directly onto the screen.
        Widgets with this attribute set do not participate in composition
        management */
+    /* This is currently disabled on X11 as it does not seem to improve
+     * performance, but causes the video widget to be transparent... */
+#ifndef Q_WS_X11
     stable->setAttribute( Qt::WA_PaintOnScreen, true );
+#endif
 
-    innerLayout->addWidget( stable );
-
-    layout->addWidget( reparentable );
+    layout->addWidget( stable );
 
 #ifdef Q_WS_X11
     /* HACK: Only one X11 client can subscribe to mouse button press events.
@@ -157,7 +143,7 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
     attr.your_event_mask &= ~(ButtonPressMask|ButtonReleaseMask);
     XSelectInput( dpy, w, attr.your_event_mask );
 #endif
-    videoSync();
+    sync();
 #ifndef NDEBUG
     msg_Dbg( p_intf, "embedded video ready (handle %p)",
              (void *)stable->winId() );
@@ -170,127 +156,40 @@ WId VideoWidget::request( int *pi_x, int *pi_y,
    Parent has to care about resizing itself */
 void VideoWidget::SetSizing( unsigned int w, unsigned int h )
 {
-    if (reparentable->windowState() & Qt::WindowFullScreen )
-        return;
-    msg_Dbg( p_intf, "Video is resizing to: %i %i", w, h );
-    videoSize.setWidth( w );
-    videoSize.setHeight( h );
     if( !isVisible() ) show();
-    updateGeometry(); // Needed for deinterlace
-    videoSync();
-}
-
-void VideoWidget::SetFullScreen( bool b_fs )
-{
-    const Qt::WindowStates curstate = reparentable->windowState();
-    Qt::WindowStates newstate = curstate;
-    Qt::WindowFlags  newflags = reparentable->windowFlags();
-
-
-    if( b_fs )
-    {
-        newstate |= Qt::WindowFullScreen;
-        newflags |= Qt::WindowStaysOnTopHint;
-    }
-    else
-    {
-        newstate &= ~Qt::WindowFullScreen;
-        newflags &= ~Qt::WindowStaysOnTopHint;
-    }
-    if( newstate == curstate )
-        return; /* no changes needed */
-
-    if( b_fs )
-    {   /* Go full-screen */
-        int numscreen =  config_GetInt( p_intf, "qt-fullscreen-screennumber" );
-        /* if user hasn't defined screennumber, or screennumber that is bigger
-         * than current number of screens, take screennumber where current interface
-         * is
-         */
-        if( numscreen == -1 || numscreen > QApplication::desktop()->numScreens() )
-            numscreen = QApplication::desktop()->screenNumber( p_intf->p_sys->p_mi );
-
-        QRect screenres = QApplication::desktop()->screenGeometry( numscreen );
-
-        reparentable->setParent( NULL );
-        reparentable->setWindowState( newstate );
-        reparentable->setWindowFlags( newflags );
-        /* To be sure window is on proper-screen in xinerama */
-        if( !screenres.contains( reparentable->pos() ) )
-        {
-            msg_Dbg( p_intf, "Moving video to correct screen");
-            reparentable->move( QPoint( screenres.x(), screenres.y() ) );
-        }
-        reparentable->show();
-    }
-    else
-    {   /* Go windowed */
-        reparentable->setWindowFlags( newflags );
-        reparentable->setWindowState( newstate );
-        layout->addWidget( reparentable );
-    }
-    videoSync();
+    resize( w, h );
+    emit sizeChanged( w, h );
+    /* Work-around a bug?misconception? that would happen when vout core resize
+       twice to the same size and would make the vout not centered.
+       This cause a small flicker.
+       See #3621
+     */
+    if( size().width() == w && size().height() == h )
+        updateGeometry();
+    sync();
 }
 
 void VideoWidget::release( void )
 {
     msg_Dbg( p_intf, "Video is not needed anymore" );
-    //layout->removeWidget( reparentable );
-
-#ifdef WIN32
-    /* Come back to default thumbnail for Windows 7 taskbar */
-    LPTASKBARLIST3 p_taskbl;
-    OSVERSIONINFO winVer;
-    winVer.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
-    if( GetVersionEx(&winVer) && winVer.dwMajorVersion > 5 )
-    {
-        CoInitialize( 0 );
 
-        if( S_OK == CoCreateInstance( &clsid_ITaskbarList,
-                    NULL, CLSCTX_INPROC_SERVER,
-                    &IID_ITaskbarList3,
-                    (void **)&p_taskbl) )
-        {
-            p_taskbl->vt->HrInit(p_taskbl);
+    assert( stable );
+    layout->removeWidget( stable );
+    stable->deleteLater();
+    stable = NULL;
 
-            HWND hroot = GetAncestor(reparentable->winId(),GA_ROOT);
-
-            if (S_OK != p_taskbl->vt->SetThumbnailClip(p_taskbl, hroot, NULL))
-                msg_Err(p_intf, "SetThumbNailClip failed");
-            msg_Err(p_intf, "Releasing taskbar | root handle = %08x", hroot);
-            p_taskbl->vt->Release(p_taskbl);
-        }
-        CoUninitialize();
-    }
-#endif
-
-    delete reparentable;
-    reparentable = NULL;
-    videoSize = QSize();
     updateGeometry();
     hide();
 }
 
-
-QSize VideoWidget::sizeHint() const
-{
-    return videoSize;
-}
-
 /**********************************************************************
  * Background Widget. Show a simple image background. Currently,
  * it's album art if present or cone.
  **********************************************************************/
-#define ICON_SIZE 128
-#define MAX_BG_SIZE 400
-#define MIN_BG_SIZE 128
 
 BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
-                 :QWidget( NULL ), p_intf( _p_i )
+                 :QWidget( NULL ), p_intf( _p_i ), b_expandPixmap( false )
 {
-    /* We should use that one to take the more size it can */
-    setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding);
-
     /* A dark background */
     setAutoFillBackground( true );
     QPalette plt = palette();
@@ -298,60 +197,74 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
     plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
     setPalette( plt );
 
-    /* A cone in the middle */
-    label = new QLabel;
-    label->setMargin( 5 );
-/*    label->setMaximumHeight( MAX_BG_SIZE );
-    label->setMaximumWidth( MAX_BG_SIZE );
-    label->setMinimumHeight( MIN_BG_SIZE );
-    label->setMinimumWidth( MIN_BG_SIZE );*/
-    label->setAlignment( Qt::AlignCenter );
-    if( QDate::currentDate().dayOfYear() >= 354 )
-        label->setPixmap( QPixmap( ":/logo/vlc128-christmas.png" ) );
-    else
-        label->setPixmap( QPixmap( ":/logo/vlc128.png" ) );
-
-    QGridLayout *backgroundLayout = new QGridLayout( this );
-    backgroundLayout->addWidget( label, 0, 1 );
-    backgroundLayout->setColumnStretch( 0, 1 );
-    backgroundLayout->setColumnStretch( 2, 1 );
+    /* Init the cone art */
+    updateArt( "" );
 
     CONNECT( THEMIM->getIM(), artChanged( QString ),
              this, updateArt( const QString& ) );
 }
 
-BackgroundWidget::~BackgroundWidget()
-{}
-
-void BackgroundWidget::resizeEvent( QResizeEvent * event )
-{
-    if( event->size().height() <= MIN_BG_SIZE )
-        label->hide();
-    else
-        label->show();
-}
-
 void BackgroundWidget::updateArt( const QString& url )
 {
-    ifurl.isEmpty() )
+    if ( !url.isEmpty() )
     {
+        pixmapUrl = url;
+    }
+    else
+    {   /* Xmas joke */
         if( QDate::currentDate().dayOfYear() >= 354 )
-            label->setPixmap( QPixmap( ":/logo/vlc128-christmas.png" ) );
+            pixmapUrl = QString( ":/logo/vlc128-christmas.png" );
         else
-            label->setPixmap( QPixmap( ":/logo/vlc128.png" ) );
+            pixmapUrl = QString( ":/logo/vlc128.png" );
     }
-    else
+    update();
+}
+
+void BackgroundWidget::paintEvent( QPaintEvent *e )
+{
+    int i_maxwidth, i_maxheight;
+    QPixmap pixmap = QPixmap( pixmapUrl );
+    QPainter painter(this);
+    QBitmap pMask;
+    float f_alpha = 1.0;
+
+    i_maxwidth = std::min( maximumWidth(), width() ) - MARGIN * 2;
+    i_maxheight = std::min( maximumHeight(), height() ) - MARGIN * 2;
+
+    if ( height() > MARGIN * 2 )
     {
-        QPixmap pixmap( url );
-        if( pixmap.width() > label->maximumWidth() ||
-            pixmap.height() > label->maximumHeight() )
+        /* Scale down the pixmap if the widget is too small */
+        if( pixmap.width() > i_maxwidth || pixmap.height() > i_maxheight )
         {
-            pixmap = pixmap.scaled( label->maximumWidth(),
-                          label->maximumHeight(), Qt::KeepAspectRatio );
+            pixmap = pixmap.scaled( i_maxwidth, i_maxheight,
+                            Qt::KeepAspectRatio, Qt::SmoothTransformation );
+        }
+        else
+        if ( b_expandPixmap &&
+             pixmap.width() < width() && pixmap.height() < height() )
+        {
+            /* Scale up the pixmap to fill widget's size */
+            f_alpha = ( (float) pixmap.height() / (float) height() );
+            pixmap = pixmap.scaled(
+                    width() - MARGIN * 2,
+                    height() - MARGIN * 2,
+                    Qt::KeepAspectRatio,
+                    ( f_alpha < .2 )? /* Don't waste cpu when not visible */
+                        Qt::SmoothTransformation:
+                        Qt::FastTransformation
+                    );
+            /* Non agressive alpha compositing when sizing up */
+            pMask = QBitmap( pixmap.width(), pixmap.height() );
+            pMask.fill( QColor::fromRgbF( 1.0, 1.0, 1.0, f_alpha ) );
+            pixmap.setMask( pMask );
         }
 
-        label->setPixmap( pixmap );
+        painter.drawPixmap(
+                MARGIN + ( i_maxwidth - pixmap.width() ) /2,
+                MARGIN + ( i_maxheight - pixmap.height() ) /2,
+                pixmap);
     }
+    QWidget::paintEvent( e );
 }
 
 void BackgroundWidget::contextMenuEvent( QContextMenuEvent *event )
@@ -414,11 +327,10 @@ void VisualSelector::next()
 }
 #endif
 
-SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, const QString& text,
-                        QWidget *parent )
-           : QLabel( text, parent ), p_intf( _p_intf )
+SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, QWidget *parent )
+           : QLabel( parent ), p_intf( _p_intf )
 {
-    setToolTip( qtr( "Current playback speed.\nClick to adjust" ) );
+    tooltipStringPattern = qtr( "Current playback speed: %1\nClick to adjust" );
 
     /* Create the Speed Control Widget */
     speedControl = new SpeedControlWidget( p_intf, this );
@@ -429,33 +341,36 @@ SpeedLabel::SpeedLabel( intf_thread_t *_p_intf, const QString& text,
     speedControlMenu->addAction( widgetAction );
 
     /* Change the SpeedRate in the Status Bar */
-    CONNECT( THEMIM->getIM(), rateChanged( int ), this, setRate( int ) );
-
-    CONNECT( THEMIM, inputChanged( input_thread_t * ),
-             speedControl, activateOnState() );
+    CONNECT( THEMIM->getIM(), rateChanged( float ), this, setRate( float ) );
 
+    DCONNECT( THEMIM, inputChanged( input_thread_t * ),
+              speedControl, activateOnState() );
+    setRate( var_InheritFloat( p_intf, "rate" ) );
 }
+
 SpeedLabel::~SpeedLabel()
 {
-        delete speedControl;
-        delete speedControlMenu;
+    delete speedControl;
+    delete speedControlMenu;
 }
+
 /****************************************************************************
  * Small right-click menu for rate control
  ****************************************************************************/
+
 void SpeedLabel::showSpeedMenu( QPoint pos )
 {
     speedControlMenu->exec( QCursor::pos() - pos
                           + QPoint( 0, height() ) );
 }
 
-void SpeedLabel::setRate( int rate )
+void SpeedLabel::setRate( float rate )
 {
     QString str;
-    str.setNum( ( 1000 / (double)rate ), 'f', 2 );
+    str.setNum( rate, 'f', 2 );
     str.append( "x" );
     setText( str );
-    setToolTip( str );
+    setToolTip( tooltipStringPattern.arg( str ) );
     speedControl->updateControls( rate );
 }
 
@@ -496,6 +411,8 @@ SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i, QWidget *_parent )
     speedControlLayout->addWidget( speedSlider );
     speedControlLayout->addWidget( normalSpeedButton );
 
+    lastValue = 0;
+
     activateOnState();
 }
 
@@ -504,7 +421,7 @@ void SpeedControlWidget::activateOnState()
     speedSlider->setEnabled( THEMIM->getIM()->hasInput() );
 }
 
-void SpeedControlWidget::updateControls( int rate )
+void SpeedControlWidget::updateControls( float rate )
 {
     if( speedSlider->isSliderDown() )
     {
@@ -512,7 +429,7 @@ void SpeedControlWidget::updateControls( int rate )
         return;
     }
 
-    double value = 17 * log( (double)INPUT_RATE_DEFAULT / rate ) / log( 2 );
+    double value = 17 * log( rate ) / log( 2 );
     int sliderValue = (int) ( ( value > 0 ) ? value + .5 : value - .5 );
 
     if( sliderValue < speedSlider->minimum() )
@@ -523,15 +440,16 @@ void SpeedControlWidget::updateControls( int rate )
     {
         sliderValue = speedSlider->maximum();
     }
+    lastValue = sliderValue;
 
-    //Block signals to avoid feedback loop
-    speedSlider->blockSignals( true );
     speedSlider->setValue( sliderValue );
-    speedSlider->blockSignals( false );
 }
 
 void SpeedControlWidget::updateRate( int sliderValue )
 {
+    if( sliderValue == lastValue )
+        return;
+
     double speed = pow( 2, (double)sliderValue / 17 );
     int rate = INPUT_RATE_DEFAULT / speed;
 
@@ -574,10 +492,11 @@ CoverArtLabel::~CoverArtLabel()
 void CoverArtLabel::showArtUpdate( const QString& url )
 {
     QPixmap pix;
-    if( !url.isEmpty()  && pix.load( url ) )
+    if( !url.isEmpty() && pix.load( url ) )
     {
         pix = pix.scaled( maximumWidth(), maximumHeight(),
-                          Qt::KeepAspectRatioByExpanding );
+                          Qt::KeepAspectRatioByExpanding,
+                          Qt::SmoothTransformation );
     }
     else
     {
@@ -591,50 +510,112 @@ void CoverArtLabel::askForUpdate()
     THEMIM->getIM()->requestArtUpdate();
 }
 
-TimeLabel::TimeLabel( intf_thread_t *_p_intf  ) :QLabel(), p_intf( _p_intf )
+TimeLabel::TimeLabel( intf_thread_t *_p_intf  )
+    : QLabel(), p_intf( _p_intf ), bufTimer( new QTimer(this) ),
+      buffering( false ), showBuffering(false), bufVal( -1 )
 {
-   b_remainingTime = false;
-   setText( " --:--/--:-- " );
-   setAlignment( Qt::AlignRight | Qt::AlignVCenter );
-   setToolTip( qtr( "Toggle between elapsed and remaining time" ) );
+    b_remainingTime = false;
+    setText( " --:--/--:-- " );
+    setAlignment( Qt::AlignRight | Qt::AlignVCenter );
+    setToolTip( QString( "- " )
+        + qtr( "Click to toggle between elapsed and remaining time" )
+        + QString( "\n- " )
+        + qtr( "Double click to jump to a chosen time position" ) );
+    bufTimer->setSingleShot( true );
 
-
-   CONNECT( THEMIM->getIM(), cachingChanged( float ),
-            this, setCaching( float ) );
-   CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
-             this, setDisplayPosition( float, int, int ) );
+    CONNECT( THEMIM->getIM(), positionUpdated( float, int64_t, int ),
+              this, setDisplayPosition( float, int64_t, int ) );
+    CONNECT( THEMIM->getIM(), cachingChanged( float ),
+              this, updateBuffering( float ) );
+    CONNECT( bufTimer, timeout(), this, updateBuffering() );
 }
 
-void TimeLabel::setDisplayPosition( float pos, int time, int length )
+void TimeLabel::setDisplayPosition( float pos, int64_t t, int length )
 {
+    showBuffering = false;
+    bufTimer->stop();
+
     if( pos == -1.f )
     {
         setText( " --:--/--:-- " );
         return;
     }
 
-    char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
+    int time = t / 1000000;
+
     secstotimestr( psz_length, length );
     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
                                                            : time );
 
-    QString timestr;
-    timestr.sprintf( " %s%s/%s ", (b_remainingTime && length) ? "-" : "",
-                     psz_time, ( !length && time ) ? "--:--" : psz_length );
+    QString timestr = QString( " %1%2/%3 " )
+            .arg( QString( (b_remainingTime && length) ? "-" : "" ) )
+            .arg( QString( psz_time ) )
+            .arg( QString( ( !length && time ) ? "--:--" : psz_length ) );
+
+    setText( timestr );
+
+    cachedLength = length;
+}
+
+void TimeLabel::setDisplayPosition( float pos )
+{
+    if( pos == -1.f || cachedLength == 0 )
+    {
+        setText( " --:--/--:-- " );
+        return;
+    }
+
+    int time = pos * cachedLength;
+    secstotimestr( psz_time,
+                   ( b_remainingTime && cachedLength ?
+                   cachedLength - time : time ) );
+    QString timestr = QString( " %1%2/%3 " )
+        .arg( QString( (b_remainingTime && cachedLength) ? "-" : "" ) )
+        .arg( QString( psz_time ) )
+        .arg( QString( ( !cachedLength && time ) ? "--:--" : psz_length ) );
 
     setText( timestr );
 }
 
+
 void TimeLabel::toggleTimeDisplay()
 {
     b_remainingTime = !b_remainingTime;
 }
 
-void TimeLabel::setCaching( float f_cache )
+
+void TimeLabel::updateBuffering( float _buffered )
 {
-    QString amount;
-    amount.sprintf("Buff: %i%%", (int)(100*f_cache) );
-    setText( amount );
+    bufVal = _buffered;
+    if( !buffering || bufVal == 0 )
+    {
+        showBuffering = false;
+        buffering = true;
+        bufTimer->start(200);
+    }
+    else if( bufVal == 1 )
+    {
+        showBuffering = buffering = false;
+        bufTimer->stop();
+    }
+    update();
 }
 
+void TimeLabel::updateBuffering()
+{
+    showBuffering = true;
+    update();
+}
 
+void TimeLabel::paintEvent( QPaintEvent* event )
+{
+    if( showBuffering )
+    {
+        QRect r( rect() );
+        r.setLeft( r.width() * bufVal );
+        QPainter p( this );
+        p.setOpacity( 0.4 );
+        p.fillRect( r, palette().color( QPalette::Highlight ) );
+    }
+    QLabel::paintEvent( event );
+}