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
52cea430
Kaydet (Commit)
52cea430
authored
Ock 23, 1991
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added _reset and destroy methods.
üst
52acae65
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
6 deletions
+20
-6
WindowParent.py
Lib/lib-stdwin/WindowParent.py
+10
-3
WindowParent.py
Lib/stdwin/WindowParent.py
+10
-3
No files found.
Lib/lib-stdwin/WindowParent.py
Dosyayı görüntüle @
52cea430
...
...
@@ -14,12 +14,19 @@ class WindowParent() = ManageOneChild():
def
create
(
self
,
(
title
,
size
)):
self
.
title
=
title
self
.
size
=
size
# (width, height)
self
.
child
=
0
# i.e., no child yet
self
.
win
=
0
# i.e., no window yet
self
.
_reset
()
return
self
#
def
_reset
(
self
):
self
.
child
=
0
self
.
win
=
0
self
.
itimer
=
0
self
.
do_mouse
=
0
self
.
do_timer
=
0
return
self
#
def
destroy
(
self
):
if
self
.
child
:
self
.
child
.
destroy
()
self
.
_reset
()
#
def
need_mouse
(
self
,
child
):
self
.
do_mouse
=
1
def
no_mouse
(
self
,
child
):
self
.
do_mouse
=
0
...
...
Lib/stdwin/WindowParent.py
Dosyayı görüntüle @
52cea430
...
...
@@ -14,12 +14,19 @@ class WindowParent() = ManageOneChild():
def
create
(
self
,
(
title
,
size
)):
self
.
title
=
title
self
.
size
=
size
# (width, height)
self
.
child
=
0
# i.e., no child yet
self
.
win
=
0
# i.e., no window yet
self
.
_reset
()
return
self
#
def
_reset
(
self
):
self
.
child
=
0
self
.
win
=
0
self
.
itimer
=
0
self
.
do_mouse
=
0
self
.
do_timer
=
0
return
self
#
def
destroy
(
self
):
if
self
.
child
:
self
.
child
.
destroy
()
self
.
_reset
()
#
def
need_mouse
(
self
,
child
):
self
.
do_mouse
=
1
def
no_mouse
(
self
,
child
):
self
.
do_mouse
=
0
...
...
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