]> git.sesse.net Git - vlc/commitdiff
modules/gui/beos/* : fixed "Goto Menu" menuitem enabling
authorEric Petit <titer@videolan.org>
Fri, 30 May 2003 18:43:31 +0000 (18:43 +0000)
committerEric Petit <titer@videolan.org>
Fri, 30 May 2003 18:43:31 +0000 (18:43 +0000)
modules/gui/beos/InterfaceWindow.cpp
modules/gui/beos/VlcWrapper.cpp
modules/gui/beos/VlcWrapper.h

index b96500da873e9a0eb860d7a41558ac0e777a7665..3c6776bc8aa46393bf667cfb3c987972f2cd4867 100644 (file)
@@ -2,7 +2,7 @@
  * InterfaceWindow.cpp: beos interface
  *****************************************************************************
  * Copyright (C) 1999, 2000, 2001 VideoLAN
- * $Id: InterfaceWindow.cpp,v 1.40 2003/05/30 17:30:54 titer Exp $
+ * $Id: InterfaceWindow.cpp,v 1.41 2003/05/30 18:43:31 titer Exp $
  *
  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -858,8 +858,7 @@ InterfaceWindow::_SetMenusEnabled(bool hasFile, bool hasChapters, bool hasTitles
         if ( fSpeedMenu->IsEnabled() != hasFile )
              fSpeedMenu->SetEnabled( hasFile );
         // "goto menu" menu item
-        bool hasMenu = config_GetInt( p_intf, "beos-dvdmenus" ) ?
-                           hasTitles : false;
+        bool hasMenu = p_wrapper->IsUsingMenus();
         if ( fGotoMenuMI->IsEnabled() != hasMenu )
              fGotoMenuMI->SetEnabled( hasMenu );
         Unlock();
index 1f7ac5e9d789c6806f7a4104234c58fa99fc2f7a..e33cb386cb2c36c3362fb336e4bdb09eeb304c77 100644 (file)
@@ -2,7 +2,7 @@
  * VlcWrapper.cpp: BeOS plugin for vlc (derived from MacOS X port)
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: VlcWrapper.cpp,v 1.31 2003/05/30 17:30:54 titer Exp $
+ * $Id: VlcWrapper.cpp,v 1.32 2003/05/30 18:43:31 titer Exp $
  *
  * Authors: Florian G. Pflug <fgp@phlo.org>
  *          Jon Lech Johansen <jon-vl@nanocrew.net>
@@ -809,12 +809,22 @@ bool VlcWrapper::IsMuted()
  * DVD *
  *******/
 
+bool VlcWrapper::IsUsingMenus()
+{
+    if( !p_input )
+        return false;
+
+    if( !strncmp( PlaylistItemName( PlaylistCurrent() ), "dvdplay:", 8 ) )
+        return true;
+
+    return false;
+}
+
 bool VlcWrapper::HasTitles()
 {
     if( !p_input )
-    {
         return false;
-    }
+
     return ( p_input->stream.i_area_nb > 1 );
 }
 
index 89a1f28abaa6175ab021049e627118daa0f2a949..0af0afdf51f579c0c22ed549fd91e50574b9df47 100644 (file)
@@ -2,7 +2,7 @@
  * VlcWrapper.h: BeOS plugin for vlc (derived from MacOS X port)
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: VlcWrapper.h,v 1.24 2003/05/30 17:30:54 titer Exp $
+ * $Id: VlcWrapper.h,v 1.25 2003/05/30 18:43:31 titer Exp $
  *
  * Authors: Florian G. Pflug <fgp@phlo.org>
  *          Jon Lech Johansen <jon-vl@nanocrew.net>
@@ -66,9 +66,8 @@ public:
     VlcWrapper( intf_thread_t *p_intf );
     ~VlcWrapper();
     
-    void UpdateInput();
-    
     /* Input */
+    void         UpdateInput();
     bool         HasInput();
     int          InputStatus();
     int          InputRate();
@@ -126,6 +125,7 @@ public:
     bool           IsMuted();
 
     /* DVD */
+    bool    IsUsingMenus();
     bool    HasTitles();
     BList * GetTitles();
     void    PrevTitle();