2 from Screens.Screen import Screen
3 from Components.ActionMap import ActionMap
4 from Components.Label import Label
8 <screen position="100,100" size="200,200" title="Example plugin..." >
9 <widget name="text" position="0,0" size="100,50" font="Arial;23" />
12 def __init__(self, session):
13 self.skin = Example.skin
14 Screen.__init__(self, session)
16 self["text"] = Label("Small test")
18 self["actions"] = ActionMap(["WizardActions"],
31 return "/usr/share/enigma2/record.png"
34 return "Fancy example-plugin"