addtag(self, *args) |
Internal function. [extrait de addtag.__doc__] |
addtag_above(self, newtag, tagOrId) |
Add tag NEWTAG to all items above TAGORID. [extrait de addtag_above.__doc__] |
addtag_all(self, newtag) |
Add tag NEWTAG to all items. [extrait de addtag_all.__doc__] |
addtag_below(self, newtag, tagOrId) |
Add tag NEWTAG to all items below TAGORID. [extrait de addtag_below.__doc__] |
addtag_closest(self, newtag, x, y, halo=None, start=None) |
Add tag NEWTAG to item which is closest to pixel at X, Y. [extrait de addtag_closest.__doc__] |
addtag_enclosed(self, newtag, x1, y1, x2, y2) |
Add tag NEWTAG to all items in the rectangle defined [extrait de addtag_enclosed.__doc__] |
addtag_overlapping(self, newtag, x1, y1, x2, y2) |
Add tag NEWTAG to all items which overlap the rectangle [extrait de addtag_overlapping.__doc__] |
addtag_withtag(self, newtag, tagOrId) |
Add tag NEWTAG to all items with TAGORID. [extrait de addtag_withtag.__doc__] |
bbox(self, *args) |
Return a tuple of X1,Y1,X2,Y2 coordinates for a rectangle [extrait de bbox.__doc__] |
canvasx(self, screenx, gridspacing=None) |
Return the canvas x coordinate of pixel position SCREENX rounded [extrait de canvasx.__doc__] |
canvasy(self, screeny, gridspacing=None) |
Return the canvas y coordinate of pixel position SCREENY rounded [extrait de canvasy.__doc__] |
coords(self, *args) |
Return a list of coordinates for the item given in ARGS. [extrait de coords.__doc__] |
create_arc(self, *args, **kw) |
Create arc shaped region with coordinates x1,y1,x2,y2. [extrait de create_arc.__doc__] |
create_bitmap(self, *args, **kw) |
Create bitmap with coordinates x1,y1. [extrait de create_bitmap.__doc__] |
create_image(self, *args, **kw) |
Create image item with coordinates x1,y1. [extrait de create_image.__doc__] |
create_line(self, *args, **kw) |
Create line with coordinates x1,y1,...,xn,yn. [extrait de create_line.__doc__] |
create_oval(self, *args, **kw) |
Create oval with coordinates x1,y1,x2,y2. [extrait de create_oval.__doc__] |
create_polygon(self, *args, **kw) |
Create polygon with coordinates x1,y1,...,xn,yn. [extrait de create_polygon.__doc__] |
create_rectangle(self, *args, **kw) |
Create rectangle with coordinates x1,y1,x2,y2. [extrait de create_rectangle.__doc__] |
create_text(self, *args, **kw) |
Create text with coordinates x1,y1. [extrait de create_text.__doc__] |
create_window(self, *args, **kw) |
Create window with coordinates x1,y1,x2,y2. [extrait de create_window.__doc__] |
dchars(self, *args) |
Delete characters of text items identified by tag or id in ARGS (possibly [extrait de dchars.__doc__] |
delete(self, *args) |
Delete items identified by all tag or ids contained in ARGS. [extrait de delete.__doc__] |
dtag(self, *args) |
Delete tag or id given as last arguments in ARGS from items [extrait de dtag.__doc__] |
find(self, *args) |
Internal function. [extrait de find.__doc__] |
find_above(self, tagOrId) |
Return items above TAGORID. [extrait de find_above.__doc__] |
find_all(self) |
Return all items. [extrait de find_all.__doc__] |
find_below(self, tagOrId) |
Return all items below TAGORID. [extrait de find_below.__doc__] |
find_closest(self, x, y, halo=None, start=None) |
Return item which is closest to pixel at X, Y. [extrait de find_closest.__doc__] |
find_enclosed(self, x1, y1, x2, y2) |
Return all items in rectangle defined [extrait de find_enclosed.__doc__] |
find_overlapping(self, x1, y1, x2, y2) |
Return all items which overlap the rectangle [extrait de find_overlapping.__doc__] |
find_withtag(self, tagOrId) |
Return all items with TAGORID. [extrait de find_withtag.__doc__] |
focus(self, *args) |
Set focus to the first item specified in ARGS. [extrait de focus.__doc__] |
gettags(self, *args) |
Return tags associated with the first item specified in ARGS. [extrait de gettags.__doc__] |
icursor(self, *args) |
Set cursor at position POS in the item identified by TAGORID. [extrait de icursor.__doc__] |
index(self, *args) |
Return position of cursor as integer in item specified in ARGS. [extrait de index.__doc__] |
insert(self, *args) |
Insert TEXT in item TAGORID at position POS. ARGS must [extrait de insert.__doc__] |
itemcget(self, tagOrId, option) |
Return the resource value for an OPTION for item TAGORID. [extrait de itemcget.__doc__] |
itemconfig(self, tagOrId, cnf=None, **kw) |
Configure resources of an item TAGORID. [extrait de itemconfigure.__doc__] |
itemconfigure(self, tagOrId, cnf=None, **kw) |
Configure resources of an item TAGORID. [extrait de itemconfigure.__doc__] |
lift(self, *args) |
Raise an item TAGORID given in ARGS [extrait de tag_raise.__doc__] |
lower(self, *args) |
Lower an item TAGORID given in ARGS [extrait de tag_lower.__doc__] |
move(self, *args) |
Move an item TAGORID given in ARGS. [extrait de move.__doc__] |
moveto(self, tagOrId, x='', y='') |
Move the items given by TAGORID in the canvas coordinate [extrait de moveto.__doc__] |
postscript(self, cnf={}, **kw) |
Print the contents of the canvas to a postscript [extrait de postscript.__doc__] |
scale(self, *args) |
Scale item TAGORID with XORIGIN, YORIGIN, XSCALE, YSCALE. [extrait de scale.__doc__] |
scan_dragto(self, x, y, gain=10) |
Adjust the view of the canvas to GAIN times the [extrait de scan_dragto.__doc__] |
scan_mark(self, x, y) |
Remember the current X, Y coordinates. [extrait de scan_mark.__doc__] |
select_adjust(self, tagOrId, index) |
Adjust the end of the selection near the cursor of an item TAGORID to index. [extrait de select_adjust.__doc__] |
select_clear(self) |
Clear the selection if it is in this widget. [extrait de select_clear.__doc__] |
select_from(self, tagOrId, index) |
Set the fixed end of a selection in item TAGORID to INDEX. [extrait de select_from.__doc__] |
select_item(self) |
Return the item which has the selection. [extrait de select_item.__doc__] |
select_to(self, tagOrId, index) |
Set the variable end of a selection in item TAGORID to INDEX. [extrait de select_to.__doc__] |
tag_bind(self, tagOrId, sequence=None, func=None, add=None) |
Bind to all items with TAGORID at event SEQUENCE a call to function FUNC. [extrait de tag_bind.__doc__] |
tag_lower(self, *args) |
Lower an item TAGORID given in ARGS [extrait de tag_lower.__doc__] |
tag_raise(self, *args) |
Raise an item TAGORID given in ARGS [extrait de tag_raise.__doc__] |
tag_unbind(self, tagOrId, sequence, funcid=None) |
Unbind for all items with TAGORID for event SEQUENCE the [extrait de tag_unbind.__doc__] |
tkraise(self, *args) |
Raise an item TAGORID given in ARGS [extrait de tag_raise.__doc__] |
type(self, tagOrId) |
Return the type of the item TAGORID. [extrait de type.__doc__] |
Améliorations / Corrections
Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.
Emplacement :
Description des améliorations :