emit changed when text changes (not so static anymore)
authorFelix Domke <tmbinc@elitedvb.net>
Mon, 14 Apr 2008 23:28:10 +0000 (23:28 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Mon, 14 Apr 2008 23:28:10 +0000 (23:28 +0000)
lib/python/Components/Sources/StaticText.py

index 6f775c443b0aa2c44a6116bc461dbe5ec82122dd..8e6f824ef7a4cd83b8d7a1fab4908d80b91053c7 100644 (file)
@@ -3,13 +3,22 @@ from Source import Source
 class StaticText(Source):
        # filter is a function which filters external, untrusted strings
        # this must be done to avoid XSS attacks!
-       
+
        # (and is probably not done yet. For this reason, be careful when
        # using this on HTML pages. *DO* provide your filter function.)
        def __init__(self, text = "", filter = lambda x: x):
                Source.__init__(self)
-               self.text = text
+               self.__text = text
                self.filter = filter
 
        def handleCommand(self, cmd):
                self.text = self.filter(cmd)
+
+       def getText(self):
+               return self.__text
+
+       def setText(self, text):
+               self.__text = text
+               self.changed((self.CHANGED_ALL,))
+
+       text = property(getText, setText)