Commit 46a41516 authored by Fredrik Lundh's avatar Fredrik Lundh

-- added a couple of missing Tkinter constants (canvas item styles,

   place bordermode, etc)
parent 24037f73
...@@ -52,6 +52,10 @@ WORD='word' ...@@ -52,6 +52,10 @@ WORD='word'
# -align # -align
BASELINE='baseline' BASELINE='baseline'
# -bordermode
INSIDE='inside'
OUTSIDE='outside'
# Special tags, marks and insert positions # Special tags, marks and insert positions
SEL='sel' SEL='sel'
SEL_FIRST='sel.first' SEL_FIRST='sel.first'
...@@ -79,3 +83,21 @@ SINGLE='single' ...@@ -79,3 +83,21 @@ SINGLE='single'
BROWSE='browse' BROWSE='browse'
MULTIPLE='multiple' MULTIPLE='multiple'
EXTENDED='extended' 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'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment