Commit b1a76ac6 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Hide the grey rectangle on the top of the interface, try to fix the zoom reiszing

parent 3b1feabd
...@@ -107,6 +107,7 @@ void *VideoWidget::request( vout_thread_t *p_nvout, int *pi_x, int *pi_y, ...@@ -107,6 +107,7 @@ void *VideoWidget::request( vout_thread_t *p_nvout, int *pi_x, int *pi_y,
/* Set the Widget to the correct Size */ /* Set the Widget to the correct Size */
void VideoWidget::SetSizing( unsigned int w, unsigned int h ) void VideoWidget::SetSizing( unsigned int w, unsigned int h )
{ {
widgetSize = QSize( w, h );
resize( w, h ); resize( w, h );
//updateGeometry(); // Needed for deinterlace //updateGeometry(); // Needed for deinterlace
msg_Dbg( p_intf, "%i %i", sizeHint().height(), sizeHint().width() ); msg_Dbg( p_intf, "%i %i", sizeHint().height(), sizeHint().width() );
......
...@@ -135,6 +135,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -135,6 +135,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
dockPL->setAllowedAreas( Qt::LeftDockWidgetArea dockPL->setAllowedAreas( Qt::LeftDockWidgetArea
| Qt::RightDockWidgetArea | Qt::RightDockWidgetArea
| Qt::BottomDockWidgetArea ); | Qt::BottomDockWidgetArea );
dockPL->hide();
/************ /************
* Menu Bar * Menu Bar
...@@ -622,10 +623,9 @@ void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x, ...@@ -622,10 +623,9 @@ void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
/* videoWidget->widgetSize = QSize( *pi_width, *pi_height ); /* videoWidget->widgetSize = QSize( *pi_width, *pi_height );
}*/ }*/
videoWidget->widgetSize = QSize( *pi_width, *pi_height );
emit askVideoToResize( *pi_width, *pi_height );
videoIsActive = true; videoIsActive = true;
emit askVideoToResize( *pi_width, *pi_height );
emit askUpdate(); emit askUpdate();
} }
return ret; return ret;
...@@ -666,8 +666,8 @@ int MainInterface::controlVideo( void *p_window, int i_query, va_list args ) ...@@ -666,8 +666,8 @@ int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
{ {
unsigned int i_width = va_arg( args, unsigned int ); unsigned int i_width = va_arg( args, unsigned int );
unsigned int i_height = va_arg( args, unsigned int ); unsigned int i_height = va_arg( args, unsigned int );
videoWidget->widgetSize = QSize( i_width, i_height ); emit askVideoToResize( i_width, i_height );
videoWidget->updateGeometry(); emit askUpdate();
updateGeometry(); updateGeometry();
i_ret = VLC_SUCCESS; i_ret = VLC_SUCCESS;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment