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
6a6db072
Kaydet (Commit)
6a6db072
authored
Ara 23, 1999
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Partially converted to Appearance, the dialog still has the old ugly layout and
interaction.
üst
d2bf68fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
15 deletions
+17
-15
EditPythonPrefs.py
Mac/scripts/EditPythonPrefs.py
+17
-15
EditPythonPrefs.rsrc
Mac/scripts/EditPythonPrefs.rsrc
+0
-0
No files found.
Mac/scripts/EditPythonPrefs.py
Dosyayı görüntüle @
6a6db072
...
...
@@ -6,6 +6,7 @@
from
Dlg
import
*
from
Events
import
*
from
Res
import
*
import
Controls
import
string
import
struct
import
macfs
...
...
@@ -64,24 +65,24 @@ OD_HELP_ITEM = 22
def
optinteract
(
options
):
"""Let the user interact with the options dialog"""
d
=
GetNewDialog
(
OPT_DIALOG_ID
,
-
1
)
tp
,
h
,
rect
=
d
.
GetDialogItem
(
OD_CREATOR_ITEM
)
SetDialogItemText
(
h
,
options
[
'creator'
])
tp
,
h
,
rect
=
d
.
GetDialogItem
(
OD_TYPE_ITEM
)
SetDialogItemText
(
h
,
options
[
'type'
])
htext
=
d
.
GetDialogItemAsControl
(
OD_CREATOR_ITEM
)
SetDialogItemText
(
h
text
,
options
[
'creator'
])
htext
=
d
.
GetDialogItemAsControl
(
OD_TYPE_ITEM
)
SetDialogItemText
(
h
text
,
options
[
'type'
])
d
.
SetDialogDefaultItem
(
OD_OK_ITEM
)
d
.
SetDialogCancelItem
(
OD_CANCEL_ITEM
)
while
1
:
for
name
in
opt_dialog_dict
.
keys
():
num
=
opt_dialog_dict
[
name
]
tp
,
h
,
rect
=
d
.
GetDialogItem
(
num
)
h
.
as_Control
()
.
SetControlValue
(
options
[
name
])
ctl
=
d
.
GetDialogItemAsControl
(
num
)
ctl
.
SetControlValue
(
options
[
name
])
n
=
ModalDialog
(
None
)
if
n
==
OD_OK_ITEM
:
tp
,
h
,
rect
=
d
.
GetDialogItem
(
OD_CREATOR_ITEM
)
ncreator
=
GetDialogItemText
(
h
)
tp
,
h
,
rect
=
d
.
GetDialogItem
(
OD_TYPE_ITEM
)
ntype
=
GetDialogItemText
(
h
)
htext
=
d
.
GetDialogItemAsControl
(
OD_CREATOR_ITEM
)
ncreator
=
GetDialogItemText
(
h
text
)
htext
=
d
.
GetDialogItemAsControl
(
OD_TYPE_ITEM
)
ntype
=
GetDialogItemText
(
h
text
)
if
len
(
ncreator
)
==
4
and
len
(
ntype
)
==
4
:
options
[
'creator'
]
=
ncreator
options
[
'type'
]
=
ntype
...
...
@@ -107,11 +108,12 @@ def interact(options, title):
except
os
.
error
:
pass
d
=
GetNewDialog
(
DIALOG_ID
,
-
1
)
tp
,
h
,
rect
=
d
.
GetDialogItem
(
TITLE_ITEM
)
SetDialogItemText
(
h
,
title
)
tp
,
h
,
rect
=
d
.
GetDialogItem
(
TEXT_ITEM
)
## SetDialogItemText(h, string.joinfields(list, '\r'))
h
.
data
=
string
.
joinfields
(
options
[
'path'
],
'
\r
'
)
htext
=
d
.
GetDialogItemAsControl
(
TITLE_ITEM
)
SetDialogItemText
(
htext
,
title
)
ctl
=
d
.
GetDialogItemAsControl
(
TEXT_ITEM
)
data
=
string
.
joinfields
(
options
[
'path'
],
'
\r
'
)
ctl
.
SetControlData
(
Controls
.
kControlEditTextPart
,
Controls
.
kControlEditTextTextTag
,
data
)
d
.
SelectDialogItemText
(
TEXT_ITEM
,
0
,
32767
)
d
.
SelectDialogItemText
(
TEXT_ITEM
,
0
,
0
)
## d.SetDialogDefaultItem(OK_ITEM)
...
...
Mac/scripts/EditPythonPrefs.rsrc
Dosyayı görüntüle @
6a6db072
No preview for this file type
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