Commit 54d75f77 authored by Cyril Deguet's avatar Cyril Deguet

* added a new skin variable "vlc.hasVout", true when... there is a vout !

parent 41c0868c
...@@ -939,6 +939,9 @@ difficulty to understand how VLC skins work.</para> ...@@ -939,6 +939,9 @@ difficulty to understand how VLC skins work.</para>
<listitem><para> <listitem><para>
<emphasis>equalizer.isEnabled</emphasis>: True if the equalizer audio filter is enabled (since VLC 0.8.5). <emphasis>equalizer.isEnabled</emphasis>: True if the equalizer audio filter is enabled (since VLC 0.8.5).
</para></listitem> </para></listitem>
<listitem><para>
<emphasis>vlc.hasVout</emphasis>: True if a video is being played (since VLC 0.8.5).
</para></listitem>
<listitem><para> <listitem><para>
<emphasis>vlc.isFullscreen</emphasis>: True when the video is in fullscreen mode (since VLC 0.8.5). <emphasis>vlc.isFullscreen</emphasis>: True when the video is in fullscreen mode (since VLC 0.8.5).
</para></listitem> </para></listitem>
......
...@@ -102,6 +102,7 @@ VlcProc::VlcProc( intf_thread_t *pIntf ): SkinObject( pIntf ), ...@@ -102,6 +102,7 @@ VlcProc::VlcProc( intf_thread_t *pIntf ): SkinObject( pIntf ),
REGISTER_VAR( m_cVarEqPreamp, EqualizerPreamp, "equalizer.preamp" ) REGISTER_VAR( m_cVarEqPreamp, EqualizerPreamp, "equalizer.preamp" )
REGISTER_VAR( m_cVarDvdActive, VarBoolImpl, "dvd.isActive" ) REGISTER_VAR( m_cVarDvdActive, VarBoolImpl, "dvd.isActive" )
REGISTER_VAR( m_cVarFullscreen, VarBoolImpl, "vlc.isFullscreen" ) REGISTER_VAR( m_cVarFullscreen, VarBoolImpl, "vlc.isFullscreen" )
REGISTER_VAR( m_cVarHasVout, VarBoolImpl, "vlc.hasVout" )
#undef REGISTER_VAR #undef REGISTER_VAR
m_cVarStreamName = VariablePtr( new VarText( getIntf(), false ) ); m_cVarStreamName = VariablePtr( new VarText( getIntf(), false ) );
pVarManager->registerVar( m_cVarStreamName, "streamName" ); pVarManager->registerVar( m_cVarStreamName, "streamName" );
...@@ -237,6 +238,7 @@ void VlcProc::manage() ...@@ -237,6 +238,7 @@ void VlcProc::manage()
VarBoolImpl *pVarRepeat = (VarBoolImpl*)m_cVarRepeat.get(); VarBoolImpl *pVarRepeat = (VarBoolImpl*)m_cVarRepeat.get();
VarBoolImpl *pVarDvdActive = (VarBoolImpl*)m_cVarDvdActive.get(); VarBoolImpl *pVarDvdActive = (VarBoolImpl*)m_cVarDvdActive.get();
VarBoolImpl *pVarFullscreen = (VarBoolImpl*)m_cVarFullscreen.get(); VarBoolImpl *pVarFullscreen = (VarBoolImpl*)m_cVarFullscreen.get();
VarBoolImpl *pVarHasVout = (VarBoolImpl*)m_cVarHasVout.get();
// Refresh audio variables // Refresh audio variables
refreshAudio(); refreshAudio();
...@@ -282,6 +284,7 @@ void VlcProc::manage() ...@@ -282,6 +284,7 @@ void VlcProc::manage()
// Refresh fullscreen status // Refresh fullscreen status
vout_thread_t *pVout = (vout_thread_t *)vlc_object_find( pInput, vout_thread_t *pVout = (vout_thread_t *)vlc_object_find( pInput,
VLC_OBJECT_VOUT, FIND_CHILD ); VLC_OBJECT_VOUT, FIND_CHILD );
pVarHasVout->set( pVout != NULL );
if( pVout ) if( pVout )
{ {
pVarFullscreen->set( pVout->b_fullscreen ); pVarFullscreen->set( pVout->b_fullscreen );
...@@ -297,6 +300,7 @@ void VlcProc::manage() ...@@ -297,6 +300,7 @@ void VlcProc::manage()
pVarDvdActive->set( false ); pVarDvdActive->set( false );
pTime->set( 0, false ); pTime->set( 0, false );
pVarFullscreen->set( false ); pVarFullscreen->set( false );
pVarHasVout->set( false );
} }
// Refresh the random variable // Refresh the random variable
......
...@@ -120,6 +120,7 @@ class VlcProc: public SkinObject ...@@ -120,6 +120,7 @@ class VlcProc: public SkinObject
/// Variables related to the vout /// Variables related to the vout
VariablePtr m_cVarFullscreen; VariablePtr m_cVarFullscreen;
VarBox m_varVoutSize; VarBox m_varVoutSize;
VariablePtr m_cVarHasVout;
/// Equalizer variables /// Equalizer variables
EqualizerBands m_varEqBands; EqualizerBands m_varEqBands;
VariablePtr m_cVarEqPreamp; VariablePtr m_cVarEqPreamp;
......
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