mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
-- added a couple of missing Tkinter constants (canvas item styles,
place bordermode, etc)
This commit is contained in:
parent
24037f735f
commit
46a4151674
1 changed files with 22 additions and 0 deletions
|
@ -52,6 +52,10 @@ WORD='word'
|
|||
# -align
|
||||
BASELINE='baseline'
|
||||
|
||||
# -bordermode
|
||||
INSIDE='inside'
|
||||
OUTSIDE='outside'
|
||||
|
||||
# Special tags, marks and insert positions
|
||||
SEL='sel'
|
||||
SEL_FIRST='sel.first'
|
||||
|
@ -79,3 +83,21 @@ SINGLE='single'
|
|||
BROWSE='browse'
|
||||
MULTIPLE='multiple'
|
||||
EXTENDED='extended'
|
||||
|
||||
# Various canvas styles
|
||||
PIESLICE='pieslice'
|
||||
CHORD='chord'
|
||||
ARC='arc'
|
||||
FIRST='first'
|
||||
LAST='last'
|
||||
BUTT='butt'
|
||||
PROJECTING='projecting'
|
||||
ROUND='round'
|
||||
BEVEL='bevel'
|
||||
MITER='miter'
|
||||
|
||||
# Arguments to xview/yview
|
||||
MOVETO='moveto'
|
||||
SCROLL='scroll'
|
||||
UNITS='units'
|
||||
PAGES='pages'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue