blob: 801dfd4eb0642ed6d9144c7637d1949b0ab66bc0 [file] [log] [blame]
Just van Rossuma840fca1999-09-26 12:25:06 +00001import W
Jack Jansen5a6fdcd2001-08-25 12:15:04 +00002from Carbon import Windows
Just van Rossuma840fca1999-09-26 12:25:06 +00003
4
5w = W.ModalDialog((100, 100))
6
7w.ed = W.EditText((10, 10, 80, 50))
8w.ok = W.Button((10, 70, 80, 16), "Ok", w.close)
9w.setdefaultbutton(w.ok)
10w.open()