Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
8961847e
Kaydet (Commit)
8961847e
authored
Agu 31, 1995
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Modeless dialog test
üst
423c798b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
+45
-0
tdlg_modeless.py
Mac/Lib/test/tdlg_modeless.py
+45
-0
No files found.
Mac/Lib/test/tdlg_modeless.py
0 → 100644
Dosyayı görüntüle @
8961847e
# Function to display a message and wait for the user to hit OK.
# This uses a DLOG resource with ID=256 which is part of the standard
# Python library.
# The ID can be overridden by passing a second parameter.
# This is the modeless version of this test program, the normal
# modal version is in tdlg.py
import
addpack
addpack
.
addpack
(
':Tools:bgen:evt'
)
from
Dlg
import
*
from
Evt
import
*
from
Events
import
*
import
MacOS
import
string
ID
=
256
def
message
(
str
=
"Hello, modeless world!"
,
id
=
ID
):
print
'This is to init the console window...'
d
=
GetNewDialog
(
id
,
-
1
)
tp
,
h
,
rect
=
d
.
GetDialogItem
(
2
)
SetDialogItemText
(
h
,
str
)
while
1
:
ok
,
ev
=
WaitNextEvent
(
0xffff
,
10
)
if
not
ok
:
continue
if
IsDialogEvent
(
ev
):
ok
,
window
,
item
=
DialogSelect
(
ev
)
if
ok
:
if
window
==
d
:
if
item
==
1
:
break
else
:
print
'Unexpected item hit'
else
:
print
'Unexpected dialog hit'
else
:
MacOS
.
HandleEvent
(
ev
)
def
test
():
message
()
if
__name__
==
'__main__'
:
test
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment