Commit 079e7a29 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Added option to run vlc as a Qt Embedded Gui Server. Use --qte-guiserver to...

Added option to run vlc as a Qt Embedded Gui Server. Use --qte-guiserver to enable this feature. The default is to run as a normal GuiClient.
parent a5ecfac4
......@@ -2,7 +2,7 @@
* qte.cpp : QT Embedded plugin for vlc
*****************************************************************************
* Copyright (C) 1998-2003 VideoLAN
* $Id: qte.cpp,v 1.18 2003/05/05 16:09:38 gbazin Exp $
* $Id: qte.cpp,v 1.19 2003/05/24 12:55:38 jpsaman Exp $
*
* Authors: Gerald Hansink <gerald.hansink@ordain.nl>
* Jean-Paul Saman <jpsaman@wxs.nl>
......@@ -352,7 +352,7 @@ static void Display( vout_thread_t *p_vout, picture_t *p_pic )
*****************************************************************************/
static int Manage( vout_thread_t *p_vout )
{
msg_Dbg( p_vout, "Manage" );
// msg_Dbg( p_vout, "Manage" );
/* Fullscreen change */
if( p_vout->i_changes & VOUT_FULLSCREEN_CHANGE )
......@@ -391,6 +391,9 @@ static int Manage( vout_thread_t *p_vout )
// p_vout->p_sys->b_cursor_autohidden = 1;
// SDL_ShowCursor( 0 );
// }
//
// if( p_vout->p_vlc->b_die )
// p_vout->p_sys->bRunning = FALSE;
return 0;
}
......
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