Merge remote branch 'origin/acid-burn/bug_670_plugin_restartoption'
authoracid-burn <acid-burn@opendreambox.org>
Fri, 11 Feb 2011 12:32:34 +0000 (13:32 +0100)
committeracid-burn <acid-burn@opendreambox.org>
Fri, 11 Feb 2011 12:32:34 +0000 (13:32 +0100)
1  2 
lib/python/Plugins/Extensions/DVDPlayer/plugin.py

index 1f3de1a,eaf8db6..1cee0aa
mode 100755,100644..100644
@@@ -4,7 -4,7 +4,7 @@@ from Screens.Screen import Scree
  from Screens.MessageBox import MessageBox
  from Screens.ChoiceBox import ChoiceBox
  from Screens.HelpMenu import HelpableScreen
 -from Screens.InfoBarGenerics import InfoBarSeek, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarShowHide, InfoBarNotifications
 +from Screens.InfoBarGenerics import InfoBarSeek, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarShowHide, InfoBarNotifications, InfoBarAudioSelection, InfoBarSubtitleSupport
  from Components.ActionMap import ActionMap, NumberActionMap, HelpableActionMap
  from Components.Label import Label
  from Components.Sources.StaticText import StaticText
@@@ -195,7 -195,7 +195,7 @@@ class ChapterZap(Screen)
                self.Timer.callback.append(self.keyOK)
                self.Timer.start(3000, True)
  
 -class DVDPlayer(Screen, InfoBarBase, InfoBarNotifications, InfoBarSeek, InfoBarPVRState, InfoBarShowHide, HelpableScreen, InfoBarCueSheetSupport):
 +class DVDPlayer(Screen, InfoBarBase, InfoBarNotifications, InfoBarSeek, InfoBarPVRState, InfoBarShowHide, HelpableScreen, InfoBarCueSheetSupport, InfoBarAudioSelection, InfoBarSubtitleSupport):
        ALLOW_SUSPEND = Screen.SUSPEND_PAUSES
        ENABLE_RESUME_SUPPORT = True
        
                self.saved_config_speeds_backward = config.seek.speeds_backward.value
                self.saved_config_enter_forward = config.seek.enter_forward.value
                self.saved_config_enter_backward = config.seek.enter_backward.value
 -              self.saved_config_seek_stepwise_minspeed = config.seek.stepwise_minspeed.value
 -              self.saved_config_seek_stepwise_repeat = config.seek.stepwise_repeat.value
                self.saved_config_seek_on_pause = config.seek.on_pause.value
                self.saved_config_seek_speeds_slowmotion = config.seek.speeds_slowmotion.value
  
                config.seek.speeds_slowmotion.value = [ ]
                config.seek.enter_forward.value = "2"
                config.seek.enter_backward.value = "2"
 -              config.seek.stepwise_minspeed.value = "Never"
 -              config.seek.stepwise_repeat.value = "3"
                config.seek.on_pause.value = "play"
  
        def restore_infobar_seek_config(self):
                config.seek.speeds_slowmotion.value = self.saved_config_seek_speeds_slowmotion
                config.seek.enter_forward.value = self.saved_config_enter_forward
                config.seek.enter_backward.value = self.saved_config_enter_backward
 -              config.seek.stepwise_minspeed.value = self.saved_config_seek_stepwise_minspeed
 -              config.seek.stepwise_repeat.value = self.saved_config_seek_stepwise_repeat
                config.seek.on_pause.value = self.saved_config_seek_on_pause
  
        def __init__(self, session, dvd_device = None, dvd_filelist = [ ], args = None):
                InfoBarNotifications.__init__(self)
                InfoBarCueSheetSupport.__init__(self, actionmap = "MediaPlayerCueSheetActions")
                InfoBarShowHide.__init__(self)
 +              InfoBarAudioSelection.__init__(self)
 +              InfoBarSubtitleSupport.__init__(self)
                HelpableScreen.__init__(self)
                self.save_infobar_seek_config()
                self.change_infobar_seek_config()
 -              InfoBarSeek.__init__(self, useSeekBackHack=False)
 +              InfoBarSeek.__init__(self)
                InfoBarPVRState.__init__(self)
                self.dvdScreen = self.session.instantiateDialog(DVDOverlay)
  
                                "prevTitle": (self.prevTitle, _("jump back to the previous title")),
                                "tv": (self.askLeavePlayer, _("exit DVD player or return to file browser")),
                                "dvdAudioMenu": (self.enterDVDAudioMenu, _("(show optional DVD audio menu)")),
 +                              "AudioSelection": (self.enterAudioSelection, _("Select audio track")),
                                "nextAudioTrack": (self.nextAudioTrack, _("switch to the next audio track")),
                                "nextSubtitleTrack": (self.nextSubtitleTrack, _("switch to the next subtitle language")),
                                "nextAngle": (self.nextAngle, _("switch to the next angle")),
                        keys.keyPressed(key)
                return keys
  
 +      def enterAudioSelection(self):
 +              self.audioSelection()
 +
        def nextAudioTrack(self):
                self.sendKey(iServiceKeys.keyUser)
  
@@@ -775,5 -775,5 +775,5 @@@ def filescan(**kwargs)
                )]              
  
  def Plugins(**kwargs):
-       return [PluginDescriptor(name = "DVDPlayer", description = "Play DVDs", where = PluginDescriptor.WHERE_MENU, fnc = menu),
-                       PluginDescriptor(where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan)]
+       return [PluginDescriptor(name = "DVDPlayer", description = "Play DVDs", where = PluginDescriptor.WHERE_MENU, needsRestart = True, fnc = menu),
+                       PluginDescriptor(where = PluginDescriptor.WHERE_FILESCAN, needsRestart = True, fnc = filescan)]