diff options
author | Guido van Rossum <guido@python.org> | 1996-08-22 23:18:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-22 23:18:09 (GMT) |
commit | 5c8c91bbc5f2ce192871f0889fd5fb686c4c8c76 (patch) | |
tree | edc1d722349377f3bc51a70d1551dd3001f79fcc /Lib/tkinter/Canvas.py | |
parent | ad8997887b5300caef0f347a07f39b3ff94b034a (diff) | |
download | cpython-5c8c91bbc5f2ce192871f0889fd5fb686c4c8c76.zip cpython-5c8c91bbc5f2ce192871f0889fd5fb686c4c8c76.tar.gz cpython-5c8c91bbc5f2ce192871f0889fd5fb686c4c8c76.tar.bz2 |
Changes for Canvas by Fred
Diffstat (limited to 'Lib/tkinter/Canvas.py')
-rwxr-xr-x | Lib/tkinter/Canvas.py | 48 |
1 files changed, 19 insertions, 29 deletions
diff --git a/Lib/tkinter/Canvas.py b/Lib/tkinter/Canvas.py index 65f87f6..4fdc578 100755 --- a/Lib/tkinter/Canvas.py +++ b/Lib/tkinter/Canvas.py @@ -1,17 +1,7 @@ # This module exports classes for the various canvas item types -from Tkinter import Canvas +from Tkinter import Canvas, _flatten -from types import * - -def _flatten(tuple): - res = () - for item in tuple: - if type(item) in (TupleType, ListType): - res = res + _flatten(item) - elif item is not None: - res = res + (item,) - return res class CanvasItem: def __init__(self, canvas, itemType, *args, **kw): @@ -85,41 +75,41 @@ class CanvasItem: return self.canvas.type(self.id) class Arc(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'arc', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'arc') + args, kw) class Bitmap(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'bitmap', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'bitmap') + args, kw) class ImageItem(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'image', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'image') + args, kw) class Line(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'line', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'line') + args, kw) class Oval(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'oval', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'oval') + args, kw) class Polygon(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'polygon', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'polygon') + args, kw) class Rectangle(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'rectangle', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'rectangle') + args, kw) # XXX "Text" is taken by the Text widget... class CanvasText(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'text', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'text') + args, kw) class Window(CanvasItem): - def __init__(self, canvas, *args): - CanvasItem.__init__(self, canvas, 'window', args) + def __init__(self, canvas, *args, **kw): + apply(CanvasItem.__init__, (self, canvas, 'window') + args, kw) class Group: def __init__(self, canvas, tag=None): |