3 from enigma import ePoint
12 self.state = self.SHOWN
21 # this works only with normal widgets - if you don't have self.instance, override this.
22 def applySkin(self, desktop):
23 if self.state == self.HIDDEN:
25 skin.applyAllAttributes(self.instance, desktop, self.skinAttributes)
28 self.instance.move(ePoint(int(x), int(y)))
31 self.state = self.SHOWN
32 if self.instance is not None:
36 self.state = self.HIDDEN
37 if self.instance is not None: