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
0c1836f1
Kaydet (Commit)
0c1836f1
authored
Agu 25, 2000
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Call GetDialogWindow to convert dialogs to windows.
üst
d8b382dc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
EasyDialogs.py
Mac/Lib/EasyDialogs.py
+6
-6
No files found.
Mac/Lib/EasyDialogs.py
Dosyayı görüntüle @
0c1836f1
...
...
@@ -56,7 +56,7 @@ def Message(msg, id=260, ok=None):
h
.
SetControlTitle
(
ok
)
d
.
SetDialogDefaultItem
(
1
)
d
.
AutoSizeDialog
()
d
.
ShowWindow
()
d
.
GetDialogWindow
()
.
ShowWindow
()
while
1
:
n
=
ModalDialog
(
None
)
if
n
==
1
:
...
...
@@ -95,7 +95,7 @@ def AskString(prompt, default = "", id=261, ok=None, cancel=None):
d
.
SetDialogDefaultItem
(
1
)
d
.
SetDialogCancelItem
(
2
)
d
.
AutoSizeDialog
()
d
.
ShowWindow
()
d
.
GetDialogWindow
()
.
ShowWindow
()
while
1
:
n
=
ModalDialog
(
None
)
if
n
==
1
:
...
...
@@ -127,7 +127,7 @@ def AskPassword(prompt, default='', id=264, ok=None, cancel=None):
## SetControlData(pwd, kControlEditTextPart, kControlEditTextTextTag, bullets)
SetControlData
(
pwd
,
kControlEditTextPart
,
kControlEditTextPasswordTag
,
default
)
d
.
SelectDialogItemText
(
4
,
0
,
999
)
Ctl
.
SetKeyboardFocus
(
d
,
pwd
,
kControlEditTextPart
)
Ctl
.
SetKeyboardFocus
(
d
.
GetDialogWindow
()
,
pwd
,
kControlEditTextPart
)
if
ok
!=
None
:
h
=
d
.
GetDialogItemAsControl
(
1
)
h
.
SetControlTitle
(
ok
)
...
...
@@ -137,7 +137,7 @@ def AskPassword(prompt, default='', id=264, ok=None, cancel=None):
d
.
SetDialogDefaultItem
(
Dialogs
.
ok
)
d
.
SetDialogCancelItem
(
Dialogs
.
cancel
)
d
.
AutoSizeDialog
()
d
.
ShowWindow
()
d
.
GetDialogWindow
()
.
ShowWindow
()
while
1
:
n
=
ModalDialog
(
None
)
if
n
==
1
:
...
...
@@ -196,7 +196,7 @@ def AskYesNoCancel(question, default = 0, yes=None, no=None, cancel=None, id=262
elif
default
==
-
1
:
d
.
SetDialogDefaultItem
(
4
)
d
.
AutoSizeDialog
()
d
.
ShowWindow
()
d
.
GetDialogWindow
()
.
ShowWindow
()
while
1
:
n
=
ModalDialog
(
None
)
if
n
==
1
:
return
default
...
...
@@ -221,7 +221,7 @@ class ProgressBar:
self
.
_update
(
0
)
self
.
d
.
AutoSizeDialog
()
self
.
title
(
title
)
self
.
d
.
ShowWindow
()
self
.
d
.
GetDialogWindow
()
.
ShowWindow
()
self
.
d
.
DrawDialog
()
def
__del__
(
self
):
...
...
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