]> git.sesse.net Git - vlc/commitdiff
qt4: remove unused x, y parameters for video widget request
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 9 Oct 2014 19:21:08 +0000 (22:21 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 16 Oct 2014 17:23:38 +0000 (20:23 +0300)
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.hpp
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.hpp
modules/gui/qt4/qt4.cpp

index c6f208f3848add738ad9630d25f540b012512cd4..8c7177ff92946cfefed439de2e6b766011e258c3 100644 (file)
@@ -100,12 +100,9 @@ void VideoWidget::sync( void )
 /**
  * Request the video to avoid the conflicts
  **/
-WId VideoWidget::request( int *pi_x, int *pi_y,
-                          unsigned int *pi_width, unsigned int *pi_height,
+WId VideoWidget::request( unsigned int *pi_width, unsigned int *pi_height,
                           bool b_keep_size )
 {
-    msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
-
     if( stable )
     {
         msg_Dbg( p_intf, "embedded video already in use" );
index 7796b2aff3a6b930e937bb7efccbc220dac84dbd..1ee86eb71d3373983e778970686e85a6497e1aea 100644 (file)
@@ -59,7 +59,7 @@ public:
     VideoWidget( intf_thread_t * );
     virtual ~VideoWidget();
 
-    WId request( int *, int *, unsigned int *, unsigned int *, bool );
+    WId request( unsigned int *, unsigned int *, bool );
     void  release( void );
     void  sync( void );
 
index 8b76e5a71fa49534a6ec56a7d098609ff78dd418..d99d3b73eaf6cc283f36030640b5f26e0b51775d 100644 (file)
@@ -203,8 +203,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
 
     /* VideoWidget connects for asynchronous calls */
     b_videoFullScreen = false;
-    connect( this, SIGNAL(askGetVideo(WId*,int*,int*,unsigned*,unsigned *)),
-             this, SLOT(getVideoSlot(WId*,int*,int*,unsigned*,unsigned*)),
+    connect( this, SIGNAL(askGetVideo(WId*,unsigned*,unsigned *)),
+             this, SLOT(getVideoSlot(WId*,unsigned*,unsigned*)),
              Qt::BlockingQueuedConnection );
     connect( this, SIGNAL(askReleaseVideo( void )),
              this, SLOT(releaseVideoSlot( void )),
@@ -681,8 +681,7 @@ void MainInterface::toggleFSC()
  * All window provider queries must be handled through signals or events.
  * That's why we have all those emit statements...
  */
-WId MainInterface::getVideo( int *pi_x, int *pi_y,
-                             unsigned int *pi_width, unsigned int *pi_height )
+WId MainInterface::getVideo( unsigned int *pi_width, unsigned int *pi_height )
 {
     if( !videoWidget )
         return 0;
@@ -690,11 +689,11 @@ WId MainInterface::getVideo( int *pi_x, int *pi_y,
     /* This is a blocking call signal. Results are returned through pointers.
      * Beware of deadlocks! */
     WId id;
-    emit askGetVideo( &id, pi_x, pi_y, pi_width, pi_height );
+    emit askGetVideo( &id, pi_width, pi_height );
     return id;
 }
 
-void MainInterface::getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
+void MainInterface::getVideoSlot( WId *p_id,
                                   unsigned *pi_width, unsigned *pi_height )
 {
     /* Hidden or minimized, activate */
@@ -702,8 +701,7 @@ void MainInterface::getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
         toggleUpdateSystrayMenu();
 
     /* Request the videoWidget */
-    WId ret = videoWidget->request( pi_x, pi_y,
-                                    pi_width, pi_height, !b_autoresize );
+    WId ret = videoWidget->request( pi_width, pi_height, !b_autoresize );
     *p_id = ret;
     if( ret ) /* The videoWidget is available */
     {
index 12ddd0d586da1c17154b7e84f100159041553523..34ca4af4001f8998dc92081e64526ef1602d8b2f 100644 (file)
@@ -70,8 +70,7 @@ public:
     static const QEvent::Type ToolbarsNeedRebuild;
 
     /* Video requests from core */
-    WId  getVideo( int *pi_x, int *pi_y,
-                  unsigned int *pi_width, unsigned int *pi_height );
+    WId  getVideo( unsigned int *pi_width, unsigned int *pi_height );
     void releaseVideo( void );
     int  controlVideo( int i_query, va_list args );
 
@@ -209,8 +208,7 @@ public slots:
 #endif
 
     /* Manage the Video Functions from the vout threads */
-    void getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
-                       unsigned *pi_width, unsigned *pi_height );
+    void getVideoSlot( WId *p_id, unsigned *pi_width, unsigned *pi_height );
     void releaseVideoSlot( void );
 
     void emitBoss();
@@ -261,8 +259,7 @@ private slots:
     void continuePlayback();
 
 signals:
-    void askGetVideo( WId *p_id, int *pi_x, int *pi_y,
-                      unsigned *pi_width, unsigned *pi_height );
+    void askGetVideo( WId *p_id, unsigned *pi_width, unsigned *pi_height );
     void askReleaseVideo( );
     void askVideoToResize( unsigned int, unsigned int );
     void askVideoSetFullScreen( bool );
index 385b249f5a7fef296fd1b50d0ab6952a3132a887..9f63031dd0cbb45d9949263485070fb6b2de7c05 100644 (file)
@@ -669,12 +669,10 @@ static int WindowOpen( vout_window_t *p_wnd, const vout_window_cfg_t *cfg )
     MainInterface *p_mi = p_intf->p_sys->p_mi;
     msg_Dbg( p_wnd, "requesting video window..." );
 
-    int i_x = cfg->x;
-    int i_y = cfg->y;
     unsigned i_width = cfg->width;
     unsigned i_height = cfg->height;
 
-    WId wid = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height );
+    WId wid = p_mi->getVideo( &i_width, &i_height );
     if( !wid )
         return VLC_EGENERIC;