1999-09-26 09:25:06 -03:00
|
|
|
import W
|
2001-08-25 09:15:04 -03:00
|
|
|
from Carbon import Windows
|
1999-09-26 09:25:06 -03:00
|
|
|
|
|
|
|
|
|
|
|
w = W.ModalDialog((100, 100))
|
|
|
|
|
|
|
|
w.ed = W.EditText((10, 10, 80, 50))
|
|
|
|
w.ok = W.Button((10, 70, 80, 16), "Ok", w.close)
|
|
|
|
w.setdefaultbutton(w.ok)
|
|
|
|
w.open()
|