From aa3e781f31a04223416f0a34b25ab95fc0bef429 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 5 May 2005 22:58:32 +0000 Subject: - split of Components into different files - screen (will be split next) must import required modules --- lib/python/Components/ActionMap.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lib/python/Components/ActionMap.py (limited to 'lib/python/Components/ActionMap.py') diff --git a/lib/python/Components/ActionMap.py b/lib/python/Components/ActionMap.py new file mode 100644 index 00000000..2588421c --- /dev/null +++ b/lib/python/Components/ActionMap.py @@ -0,0 +1,25 @@ +from enigma import * + +class ActionMap: + def __init__(self, contexts = [ ], actions = { }, prio=0): + self.actions = actions + self.contexts = contexts + self.prio = prio + self.p = eActionMapPtr() + eActionMap.getInstance(self.p) + + def execBegin(self): + for ctx in self.contexts: + self.p.bindAction(ctx, self.prio, self.action) + + def execEnd(self): + for ctx in self.contexts: + self.p.unbindAction(ctx, self.action) + + def action(self, context, action): + print " ".join(("action -> ", context, action)) + if self.actions.has_key(action): + self.actions[action]() + else: + print "unknown action %s/%s! typo in keymap?" % (context, action) + -- cgit v1.2.3