Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
6dba6bc0a226c2dd384d9311b9ad842be653c2b5
/
.
/
Mac
/
IDE scripts
/
Widget demos
/
ModalDialog.py
blob: 683a76aaa9a77f3a397328b8f5b9da228f98fcf9 [
file
] [
log
] [
blame
]
import
W
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
()