summaryrefslogtreecommitdiffstats
path: root/Mac/Lib
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1999-12-09 15:36:36 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1999-12-09 15:36:36 (GMT)
commit4d56ecf69094824e408ab0be2e5b68ba4b1d9151 (patch)
treee33e9e30da559214088ad7b5b616686cb4b2b0ae /Mac/Lib
parent8f5725af60cc26787bf61549fc780537f287ebc0 (diff)
downloadcpython-4d56ecf69094824e408ab0be2e5b68ba4b1d9151.zip
cpython-4d56ecf69094824e408ab0be2e5b68ba4b1d9151.tar.gz
cpython-4d56ecf69094824e408ab0be2e5b68ba4b1d9151.tar.bz2
Minimal test of Dlg.SetControlData by Corran Webster: draw a default
ring around a button. Mainly here so I can transfer it home:-)
Diffstat (limited to 'Mac/Lib')
-rw-r--r--Mac/Lib/test/test_setcontroldata.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Mac/Lib/test/test_setcontroldata.py b/Mac/Lib/test/test_setcontroldata.py
new file mode 100644
index 0000000..c46e613
--- /dev/null
+++ b/Mac/Lib/test/test_setcontroldata.py
@@ -0,0 +1,13 @@
+import W
+from Controls import *
+
+w = W.Window((200,200), "Test")
+
+w.c = W.Button((5,5,100,50), "Test")
+
+w.open()
+
+print repr(w.c._control.GetControlData(0, 'dflt'))
+
+str = '\001'
+w.c._control.SetControlData(0, 'dflt', str) \ No newline at end of file