1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-12 13:44:56 +02:00

qt4 - Simple Preferences: add the overlay option to the video preferences panel.

This commit is contained in:
Jean-Baptiste Kempf 2007-05-02 21:19:35 +00:00
parent f81fd5bb87
commit 137e021bbc
2 changed files with 12 additions and 1 deletions

View File

@ -172,7 +172,8 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
CONFIG_GENERIC( "overlay", Bool, NULL, overlay );
CONFIG_GENERIC( "video-on-top", Bool, NULL, alwaysOnTop );
CONFIG_GENERIC( "video-deco", Bool, NULL, windowDecorations );
CONFIG_GENERIC( "skip-frames" , Bool, NULL, skipFrames);
CONFIG_GENERIC( "skip-frames" , Bool, NULL, skipFrames );
CONFIG_GENERIC( "overlay", Bool, NULL, overlay );
CONFIG_GENERIC( "vout", Module, NULL, outputModule );
#ifdef WIN32

View File

@ -102,6 +102,16 @@
</property>
</widget>
</item>
<item row="2" column="2" >
<widget class="QCheckBox" name="overlay" >
<property name="text" >
<string>Overlay</string>
</property>
<property name="checked" >
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>