summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-06-20 13:42:28 (GMT)
committerGuido van Rossum <guido@python.org>1994-06-20 13:42:28 (GMT)
commitfea128ecf387fbe4644ea0aa8dce0a908b30ceee (patch)
treefb2c7e5691cb537790c569a108f5d4fb05ab0df3 /Lib/tkinter
parent67ef5f3fb60f064fbe95eae5dc2644be1d72dfdb (diff)
downloadcpython-fea128ecf387fbe4644ea0aa8dce0a908b30ceee.zip
cpython-fea128ecf387fbe4644ea0aa8dce0a908b30ceee.tar.gz
cpython-fea128ecf387fbe4644ea0aa8dce0a908b30ceee.tar.bz2
Reformatted using 8-space wide tabs
Diffstat (limited to 'Lib/tkinter')
-rwxr-xr-xLib/tkinter/Canvas.py35
1 files changed, 18 insertions, 17 deletions
diff --git a/Lib/tkinter/Canvas.py b/Lib/tkinter/Canvas.py
index 4d21928..2af1459 100755
--- a/Lib/tkinter/Canvas.py
+++ b/Lib/tkinter/Canvas.py
@@ -1,7 +1,5 @@
# This module exports classes for the various canvas item types
-# vi:set tabsize=4:
-
from Tkinter import Canvas, _isfunctype
class CanvasItem:
@@ -16,19 +14,20 @@ class CanvasItem:
self.canvas.delete(self.id)
delete = __del__
def __getitem__(self, key):
- v = self.canvas.tk.split(self.canvas.tk.call(self.canvas.pathName,
- 'itemconfigure',
- str(self.id),
- '-' + key))
+ v = self.canvas.tk.split(self.canvas.tk.call(
+ self.canvas._w, 'itemconfigure',
+ str(self.id), '-' + key))
return v[4]
def __setitem__(self, key, value):
self.canvas._itemconfig(self.id, {key: value})
def keys(self):
if not hasattr(self, '_keys'):
self._keys = map(lambda x, tk=self.canvas.tk:
- tk.splitlist(x)[0][1:],
- self.canvas._splitlist(
- self.canvas.cmd('itemconfigure', self.id)))
+ tk.splitlist(x)[0][1:],
+ self.canvas._splitlist(
+ self.canvas.cmd(
+ 'itemconfigure',
+ self.id)))
return self._keys
def has_key(self, key):
return key in self.keys()
@@ -71,27 +70,28 @@ class CanvasItem:
class Arc(CanvasItem):
def __init__(self, canvas, (x1, y1), (x2, y2), cnf={}):
CanvasItem.__init__(self, canvas, 'arc',
- (str(x1), str(y1), str(x2), str(y2)), cnf)
+ (str(x1), str(y1), str(x2), str(y2)), cnf)
class Bitmap(CanvasItem):
def __init__(self, canvas, (x1, y1), cnf={}):
- CanvasItem.__init__(self, canvas, 'bitmap', (str(x1), str(y1)), cnf)
+ CanvasItem.__init__(self, canvas, 'bitmap',
+ (str(x1), str(y1)), cnf)
class Line(CanvasItem):
def __init__(self, canvas, pts, cnf={}):
pts = reduce(lambda a, b: a+b,
- map(lambda pt: (str(pt[0]), str(pt[1])), pts))
+ map(lambda pt: (str(pt[0]), str(pt[1])), pts))
CanvasItem.__init__(self, canvas, 'line', pts, cnf)
class Oval(CanvasItem):
def __init__(self, canvas, (x1, y1), (x2, y2), cnf={}):
CanvasItem.__init__(self, canvas, 'oval',
- (str(x1), str(y1), str(x2), str(y2)), cnf)
+ (str(x1), str(y1), str(x2), str(y2)), cnf)
class Polygon(CanvasItem):
def __init__(self, canvas, pts, cnf={}):
pts = reduce(lambda a, b: a+b,
- map(lambda pt: (str(pt[0]), str(pt[1])), pts))
+ map(lambda pt: (str(pt[0]), str(pt[1])), pts))
CanvasItem.__init__(self, canvas, 'polygon', pts, cnf)
class Curve(Polygon):
@@ -102,14 +102,15 @@ class Curve(Polygon):
class Rectangle(CanvasItem):
def __init__(self, canvas, (x1, y1), (x2, y2), cnf={}):
CanvasItem.__init__(self, canvas, 'rectangle',
- (str(x1), str(y1), str(x2), str(y2)), cnf)
+ (str(x1), str(y1), str(x2), str(y2)), cnf)
# XXX Can't use name "Text" since that is already taken by the Text widget...
class String(CanvasItem):
def __init__(self, canvas, (x1, y1), cnf={}):
- CanvasItem.__init__(self, canvas, 'text', (str(x1), str(y1)), cnf)
+ CanvasItem.__init__(self, canvas, 'text',
+ (str(x1), str(y1)), cnf)
class Window(CanvasItem):
def __init__(self, canvas, where, cnf={}):
CanvasItem.__init__(self, canvas, 'window',
- (str(where[0]), str(where[1])), cnf)
+ (str(where[0]), str(where[1])), cnf)