summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/Tkconstants.py
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2000-08-09 19:37:16 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2000-08-09 19:37:16 (GMT)
commit46a415167464d8a7234c4a79dc4f7df084211825 (patch)
tree002aa8ffe7cef9670a95cf0428e72dd927737712 /Lib/lib-tk/Tkconstants.py
parent24037f735fbeebee0a60905375ceb05bb5539a63 (diff)
downloadcpython-46a415167464d8a7234c4a79dc4f7df084211825.zip
cpython-46a415167464d8a7234c4a79dc4f7df084211825.tar.gz
cpython-46a415167464d8a7234c4a79dc4f7df084211825.tar.bz2
-- added a couple of missing Tkinter constants (canvas item styles,
place bordermode, etc)
Diffstat (limited to 'Lib/lib-tk/Tkconstants.py')
-rw-r--r--Lib/lib-tk/Tkconstants.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/Lib/lib-tk/Tkconstants.py b/Lib/lib-tk/Tkconstants.py
index 5de8cfb..2686877 100644
--- a/Lib/lib-tk/Tkconstants.py
+++ b/Lib/lib-tk/Tkconstants.py
@@ -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'