aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-25 06:26:19 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-25 06:26:19 +0000
commitdc093daa0b0c4b12e33c30fb1b0b48c18ab8f8b5 (patch)
tree814f157b060b5489d55b36cc14d90d269490b245 /lib/python/Components
parente330dbae62e83dd2aa2ff63a984519a84b23c3ad (diff)
downloadenigma2-dc093daa0b0c4b12e33c30fb1b0b48c18ab8f8b5.tar.gz
enigma2-dc093daa0b0c4b12e33c30fb1b0b48c18ab8f8b5.zip
introduce BlinkingPointConditional, which blinks, if a condition-function returns True
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/BlinkingPoint.py55
1 files changed, 0 insertions, 55 deletions
diff --git a/lib/python/Components/BlinkingPoint.py b/lib/python/Components/BlinkingPoint.py
index b5a45dbb..e69de29b 100644
--- a/lib/python/Components/BlinkingPoint.py
+++ b/lib/python/Components/BlinkingPoint.py
@@ -1,55 +0,0 @@
-from HTMLComponent import *
-from GUIComponent import *
-
-from Pixmap import Pixmap
-
-from enigma import *
-
-import time
-
-class BlinkingPoint(GUIComponent, Pixmap):
- SHOWN = 0
- HIDDEN = 1
-
- def __init__(self):
- Pixmap.__init__(self)
- GUIComponent.__init__(self)
-
- self.state = self.SHOWN
- self.blinking = False
-
- self.timer = eTimer()
- self.timer.timeout.get().append(self.blink)
-
- def createWidget(self, parent):
- return self.getePixmap(parent, "/usr/share/enigma2/record.png")
-
- def removeWidget(self, w):
- pass
-
- def showPoint(self):
- print "Show point"
- self.state = self.SHOWN
- self.instance.show()
-
- def hidePoint(self):
- print "Hide point"
- self.state = self.HIDDEN
- self.instance.hide()
-
- def blink(self):
- if self.blinking == True:
- if (self.state == self.SHOWN):
- self.hidePoint()
- elif (self.state == self.HIDDEN):
- self.showPoint()
-
- def startBlinking(self):
- self.blinking = True
- self.timer.start(500)
-
- def stopBlinking(self):
- self.blinking = False
- if (self.state == self.SHOWN):
- self.hidePoint()
- self.timer.stop() \ No newline at end of file