Commit d968cdc2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: provide the X11 display address through the window provider

parent 35850e00
...@@ -259,6 +259,9 @@ vlc_module_end () ...@@ -259,6 +259,9 @@ vlc_module_end ()
/* Ugly, but the Qt4 interface assumes single instance anyway */ /* Ugly, but the Qt4 interface assumes single instance anyway */
static vlc_sem_t ready; static vlc_sem_t ready;
#ifdef Q_WS_X11
static char *x11_display = NULL;
#endif
/***************************************************************************** /*****************************************************************************
* Module callbacks * Module callbacks
...@@ -270,9 +273,8 @@ static int Open( vlc_object_t *p_this ) ...@@ -270,9 +273,8 @@ static int Open( vlc_object_t *p_this )
intf_thread_t *p_intf = (intf_thread_t *)p_this; intf_thread_t *p_intf = (intf_thread_t *)p_this;
#ifdef Q_WS_X11 #ifdef Q_WS_X11
char *psz_display = var_CreateGetNonEmptyString( p_intf, "x11-display" ); x11_display = var_CreateGetNonEmptyString( p_intf, "x11-display" );
Display *p_display = XOpenDisplay( psz_display ); Display *p_display = XOpenDisplay( x11_display );
free( psz_display );
if( !p_display ) if( !p_display )
{ {
msg_Err( p_intf, "Could not connect to X server" ); msg_Err( p_intf, "Could not connect to X server" );
...@@ -338,6 +340,9 @@ static void Close( vlc_object_t *p_this ) ...@@ -338,6 +340,9 @@ static void Close( vlc_object_t *p_this )
vlc_join (p_sys->thread, NULL); vlc_join (p_sys->thread, NULL);
pl_Release (p_this); pl_Release (p_this);
delete p_sys; delete p_sys;
#ifdef Q_WS_X11
free (x11_display);
#endif
} }
static void *Thread( void *obj ) static void *Thread( void *obj )
...@@ -352,11 +357,10 @@ static void *Thread( void *obj ) ...@@ -352,11 +357,10 @@ static void *Thread( void *obj )
/* Start the QApplication here */ /* Start the QApplication here */
#ifdef Q_WS_X11 #ifdef Q_WS_X11
char *display = var_CreateGetNonEmptyString( p_intf, "x11-display" ); if( x11_display != NULL )
if( display )
{ {
argv[argc++] = const_cast<char *>("-display"); argv[argc++] = const_cast<char *>("-display");
argv[argc++] = display; argv[argc++] = x11_display;
argv[argc] = NULL; argv[argc] = NULL;
} }
#endif #endif
...@@ -473,7 +477,7 @@ static void *Thread( void *obj ) ...@@ -473,7 +477,7 @@ static void *Thread( void *obj )
/* Delete the application automatically */ /* Delete the application automatically */
#ifdef Q_WS_X11 #ifdef Q_WS_X11
free( display ); free( x11_display );
#endif #endif
return NULL; return NULL;
} }
...@@ -531,6 +535,7 @@ static int WindowOpen( vlc_object_t *p_obj ) ...@@ -531,6 +535,7 @@ static int WindowOpen( vlc_object_t *p_obj )
p_wnd->xid = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height ); p_wnd->xid = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height );
if( !p_wnd->xid ) if( !p_wnd->xid )
return VLC_EGENERIC; return VLC_EGENERIC;
p_wnd->x11_display = x11_display;
#elif defined (Q_WS_WIN) #elif defined (Q_WS_WIN)
p_wnd->hwnd = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height ); p_wnd->hwnd = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height );
......
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