]> granicus.if.org Git - python/commitdiff
-- added a couple of missing Tkinter constants (canvas item styles,
authorFredrik Lundh <fredrik@pythonware.com>
Wed, 9 Aug 2000 19:37:16 +0000 (19:37 +0000)
committerFredrik Lundh <fredrik@pythonware.com>
Wed, 9 Aug 2000 19:37:16 +0000 (19:37 +0000)
   place bordermode, etc)

Lib/lib-tk/Tkconstants.py

index 5de8cfbd84d9689a501d788a9a4b5348c4972df9..268687721e1b3fd0816c4485e7393ac3ce5e5868 100644 (file)
@@ -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'