Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
21ed16acbe0a8870f6833b7976f8b7e79452d21c
/
.
/
Mac
/
IDE scripts
/
Widget demos
/
ModalDialog.py
blob: 801dfd4eb0642ed6d9144c7637d1949b0ab66bc0 [
file
] [
log
] [
blame
]
import
W
from
Carbon
import
Windows
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
()