[vlc-commits] Qt: MainInterface: namespace visibility property
Francois Cartegnie
git at videolan.org
Sun Dec 30 20:52:32 CET 2012
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sun Dec 30 20:47:42 2012 +0100| [59d8e3992f5d98d3c2a1e680a154c541491813b2] | committer: Francois Cartegnie
Qt: MainInterface: namespace visibility property
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=59d8e3992f5d98d3c2a1e680a154c541491813b2
---
modules/gui/qt4/main_interface.hpp | 12 ++++++------
modules/gui/qt4/menus.cpp | 5 +++--
2 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/modules/gui/qt4/main_interface.hpp b/modules/gui/qt4/main_interface.hpp
index c0ed1eb..4c5b1fd 100644
--- a/modules/gui/qt4/main_interface.hpp
+++ b/modules/gui/qt4/main_interface.hpp
@@ -56,12 +56,6 @@ class QMenu;
class QSize;
class StandardPLPanel;
-enum {
- CONTROLS_VISIBLE = 0x1,
- CONTROLS_HIDDEN = 0x2,
- CONTROLS_ADVANCED = 0x4,
-};
-
class MainInterface : public QVLCMW
{
Q_OBJECT
@@ -85,6 +79,12 @@ public:
QSystemTrayIcon *getSysTray() { return sysTray; }
QMenu *getSysTrayMenu() { return systrayMenu; }
FullscreenControllerWidget* getFullscreenControllerWidget() { return fullscreenControls; }
+ enum
+ {
+ CONTROLS_VISIBLE = 0x1,
+ CONTROLS_HIDDEN = 0x2,
+ CONTROLS_ADVANCED = 0x4,
+ };
int getControlsVisibilityStatus();
bool isPlDocked() { return ( b_plDocked != false ); }
bool isInterfaceFullScreen() { return b_interfaceFullScreen; }
diff --git a/modules/gui/qt4/menus.cpp b/modules/gui/qt4/menus.cpp
index 60eec37..45a1d90 100644
--- a/modules/gui/qt4/menus.cpp
+++ b/modules/gui/qt4/menus.cpp
@@ -483,7 +483,8 @@ QMenu *VLCMenuBar::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterfac
action = menu->addAction( qtr( "Mi&nimal Interface" ) );
action->setShortcut( qtr( "Ctrl+H" ) );
action->setCheckable( true );
- action->setChecked( (mi->getControlsVisibilityStatus() & CONTROLS_HIDDEN ) );
+ action->setChecked( (mi->getControlsVisibilityStatus()
+ & MainInterface::CONTROLS_HIDDEN ) );
CONNECT( action, triggered( bool ), mi, toggleMinimalView( bool ) );
CONNECT( mi, minimalViewToggled( bool ), action, setChecked( bool ) );
@@ -500,7 +501,7 @@ QMenu *VLCMenuBar::ViewMenu( intf_thread_t *p_intf, QMenu *current, MainInterfac
action = menu->addAction( qtr( "&Advanced Controls" ), mi,
SLOT( toggleAdvancedButtons() ) );
action->setCheckable( true );
- if( mi->getControlsVisibilityStatus() & CONTROLS_ADVANCED )
+ if( mi->getControlsVisibilityStatus() & MainInterface::CONTROLS_ADVANCED )
action->setChecked( true );
/* Docked Playlist */
More information about the vlc-commits
mailing list