Commit 975477f7 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: simplify

parent ca0d201f
...@@ -209,7 +209,6 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -209,7 +209,6 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
/* VideoWidget connects for asynchronous calls */ /* VideoWidget connects for asynchronous calls */
b_videoFullScreen = false; b_videoFullScreen = false;
b_videoOnTop = false;
connect( this, SIGNAL(askGetVideo(WId*,int*,int*,unsigned*,unsigned *)), connect( this, SIGNAL(askGetVideo(WId*,int*,int*,unsigned*,unsigned *)),
this, SLOT(getVideoSlot(WId*,int*,int*,unsigned*,unsigned*)), this, SLOT(getVideoSlot(WId*,int*,int*,unsigned*,unsigned*)),
Qt::BlockingQueuedConnection ); Qt::BlockingQueuedConnection );
...@@ -676,11 +675,9 @@ void MainInterface::setVideoFullScreen( bool fs ) ...@@ -676,11 +675,9 @@ void MainInterface::setVideoFullScreen( bool fs )
* Emit askVideoOnTop() to invoke this from other thread. */ * Emit askVideoOnTop() to invoke this from other thread. */
void MainInterface::setVideoOnTop( bool on_top ) void MainInterface::setVideoOnTop( bool on_top )
{ {
b_videoOnTop = on_top;
Qt::WindowFlags oldflags = windowFlags(), newflags; Qt::WindowFlags oldflags = windowFlags(), newflags;
if( b_videoOnTop ) if( on_top )
newflags = oldflags | Qt::WindowStaysOnTopHint; newflags = oldflags | Qt::WindowStaysOnTopHint;
else else
newflags = oldflags & ~Qt::WindowStaysOnTopHint; newflags = oldflags & ~Qt::WindowStaysOnTopHint;
......
...@@ -158,7 +158,6 @@ private: ...@@ -158,7 +158,6 @@ private:
bool b_autoresize; ///< persistent resizable window bool b_autoresize; ///< persistent resizable window
bool b_videoEmbedded; ///< Want an external Video Window bool b_videoEmbedded; ///< Want an external Video Window
bool b_videoFullScreen; ///< --fullscreen bool b_videoFullScreen; ///< --fullscreen
bool b_videoOnTop; ///< --video-on-top
bool b_hideAfterCreation; bool b_hideAfterCreation;
bool b_minimalView; ///< Minimal video bool b_minimalView; ///< Minimal video
bool b_interfaceFullScreen; bool b_interfaceFullScreen;
......
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