aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/Sources')
-rw-r--r--lib/python/Components/Sources/CanvasSource.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/python/Components/Sources/CanvasSource.py b/lib/python/Components/Sources/CanvasSource.py
index 4fd0e02a..2f3aaecc 100644
--- a/lib/python/Components/Sources/CanvasSource.py
+++ b/lib/python/Components/Sources/CanvasSource.py
@@ -16,5 +16,10 @@ class CanvasSource(Source):
drawlist = property(get_drawlist)
def fill(self, x, y, width, height, color):
- self.drawlist[1].append( (1, x, y, width, height, color) )
- self.changed()
+ self.drawlist[1].append((1, x, y, width, height, color))
+
+ def writeText(self, x, y, width, height, fg, bg, font, text, flags = 0):
+ self.drawlist[1].append((2, x, y, width, height, fg, bg, font, text, flags))
+
+ def flush(self):
+ self.changed((self.CHANGED_DEFAULT,))