Version 1.0b1: Let the user set the global delay. Let the user move the plugin- screen.
[vuplus_dvbapp-plugin] / ac3lipsync / src / HelpableNumberActionMap.py
1 from Components.ActionMap import NumberActionMap, HelpableActionMap
2
3 class HelpableNumberActionMap(HelpableActionMap, NumberActionMap):
4     """This Actionmap is a HelpableActionMap and a NumberActionMap at the same time.
5     It does not have any code, just inherits the init-method from HelpableActionMap and the action from the NumberActionMap"""
6     def action(self, contexts, action):
7         NumberActionMap.action(self, contexts, action)
8     def __init__(self, parent, context, actions = { }, prio=0):
9         HelpableActionMap.__init__(self, parent, context, actions, prio)