[vlc-commits] Qt: menus: re-group/order video options
Francois Cartegnie
git at videolan.org
Tue Sep 13 11:22:36 CEST 2011
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Tue Sep 13 11:22:14 2011 +0200| [77c6c8d2f5a47cbcb1e0cd5553023b2fbe0db873] | committer: Francois Cartegnie
Qt: menus: re-group/order video options
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=77c6c8d2f5a47cbcb1e0cd5553023b2fbe0db873
---
modules/gui/qt4/menus.cpp | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index 0ce2c2ef..88e8078 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -634,25 +634,32 @@ QMenu *QVLCMenu::VideoMenu( intf_thread_t *p_intf, QMenu *current, bool b_subtit
SubtitleMenu( current );
current->addSeparator();
-
+ /* Surface modifiers */
addActionWithCheckbox( current, "fullscreen", qtr( "&Fullscreen" ) );
addActionWithCheckbox( current, "autoscale", qtr( "Always Fit &Window" ) );
addActionWithCheckbox( current, "video-on-top", qtr( "Always &on Top" ) );
#ifdef WIN32
addActionWithCheckbox( current, "direct3d-desktop", qtr( "Display on &Desktop" ) );
#endif
- addAction( current, "video-snapshot", qtr( "Take &Snapshot" ) );
+
#ifdef WIN32
addActionWithCheckbox( current, "video-wallpaper", qtr( "Set as Wall&paper" ) );
#endif
current->addSeparator();
-
+ /* Size modifiers */
addActionWithSubmenu( current, "zoom", qtr( "&Zoom" ) );
addActionWithSubmenu( current, "aspect-ratio", qtr( "&Aspect Ratio" ) );
addActionWithSubmenu( current, "crop", qtr( "&Crop" ) );
+
+ current->addSeparator();
+ /* Rendering modifiers */
addActionWithSubmenu( current, "deinterlace", qtr( "&Deinterlace" ) );
addActionWithSubmenu( current, "deinterlace-mode", qtr( "&Deinterlace mode" ) );
addActionWithSubmenu( current, "postprocess", qtr( "&Post processing" ) );
+
+ current->addSeparator();
+ /* Other actions */
+ addAction( current, "video-snapshot", qtr( "Take &Snapshot" ) );
}
p_input = THEMIM->getInput();
More information about the vlc-commits
mailing list