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
c9c0dd34
Kaydet (Commit)
c9c0dd34
authored
Nis 11, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed ttedit to actually work
Fixed minor update bug in tlist
üst
cef2c597
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
15 deletions
+7
-15
tlist.py
Mac/Lib/test/tlist.py
+2
-6
ttedit.py
Mac/Lib/test/ttedit.py
+5
-9
No files found.
Mac/Lib/test/tlist.py
Dosyayı görüntüle @
c9c0dd34
...
...
@@ -19,20 +19,16 @@ class ListWindow(Window):
r
=
(
40
,
40
,
400
,
300
)
w
=
Win
.
NewWindow
(
r
,
name
,
1
,
0
,
-
1
,
1
,
0x55555555
)
r2
=
(
0
,
0
,
345
,
245
)
Qd
.
SetPort
(
w
)
self
.
wid
=
w
self
.
list
=
List
.
LNew
(
r2
,
(
0
,
0
,
1
,
1
),
(
0
,
0
),
0
,
w
,
0
,
1
,
1
,
1
)
self
.
filllist
()
w
.
DrawGrowIcon
()
self
.
wid
=
w
self
.
do_postopen
()
def
do_activate
(
self
,
onoff
,
evt
):
self
.
list
.
LActivate
(
onoff
)
def
do_rawupdate
(
self
,
window
,
event
):
window
.
BeginUpdate
()
self
.
do_update
(
window
,
event
)
window
.
EndUpdate
()
def
do_update
(
self
,
*
args
):
self
.
list
.
LUpdate
(
self
.
wid
.
GetWindowPort
()
.
visRgn
)
...
...
Mac/Lib/test/ttedit.py
Dosyayı görüntüle @
c9c0dd34
...
...
@@ -19,6 +19,7 @@ class TEWindow(Window):
r2
=
(
0
,
0
,
345
,
245
)
Qd
.
SetPort
(
w
)
self
.
ted
=
TE
.
TENew
(
r2
,
r2
)
self
.
ted
.
TEAutoView
(
1
)
w
.
DrawGrowIcon
()
self
.
wid
=
w
self
.
do_postopen
()
...
...
@@ -32,21 +33,16 @@ class TEWindow(Window):
else
:
self
.
ted
.
TEDeactivate
()
def
do_rawupdate
(
self
,
window
,
event
):
window
.
BeginUpdate
()
self
.
do_update
(
window
,
event
)
window
.
EndUpdate
()
def
do_update
(
self
,
*
args
):
Qd
.
EraseRect
(
self
.
wid
.
GetWindowPort
()
.
portRect
)
self
.
ted
.
TEUpdate
(
self
.
wid
.
GetWindowPort
()
.
portRect
)
def
do_update
(
self
,
wid
,
event
):
Qd
.
EraseRect
(
wid
.
GetWindowPort
()
.
portRect
)
self
.
ted
.
TEUpdate
(
wid
.
GetWindowPort
()
.
portRect
)
def
do_contentclick
(
self
,
local
,
modifiers
,
evt
):
shifted
=
(
modifiers
&
0x200
)
self
.
ted
.
TEClick
(
local
,
shifted
)
def
do_char
(
self
,
ch
,
event
):
self
.
ted
.
TEKey
(
ch
)
self
.
ted
.
TEKey
(
ord
(
ch
)
)
class
TestList
(
Application
):
def
__init__
(
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