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
d7d4725d
Kaydet (Commit)
d7d4725d
authored
Eyl 29, 1998
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added an extra frame in widget heirarchy in case I want to add
separators later
üst
f984a652
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
ChipViewer.py
Tools/pynche/ChipViewer.py
+1
-1
StripViewer.py
Tools/pynche/StripViewer.py
+6
-3
No files found.
Tools/pynche/ChipViewer.py
Dosyayı görüntüle @
d7d4725d
...
...
@@ -53,7 +53,7 @@ class ChipViewer:
def
__init__
(
self
,
switchboard
,
parent
=
None
):
self
.
__sb
=
switchboard
self
.
__frame
=
Frame
(
parent
)
self
.
__frame
.
pack
()
self
.
__frame
.
pack
(
expand
=
YES
,
fill
=
BOTH
)
# create the chip that will display the currently selected color
# exactly
self
.
__sframe
=
Frame
(
self
.
__frame
)
...
...
Tools/pynche/StripViewer.py
Dosyayı görüntüle @
d7d4725d
...
...
@@ -267,17 +267,20 @@ class StripWidget:
class
StripViewer
:
def
__init__
(
self
,
switchboard
,
parent
=
None
):
self
.
__sb
=
switchboard
self
.
__reds
=
StripWidget
(
switchboard
,
parent
,
# create a frame inside the parent
self
.
__frame
=
Frame
(
parent
)
self
.
__frame
.
pack
()
self
.
__reds
=
StripWidget
(
switchboard
,
self
.
__frame
,
generator
=
constant_cyan_generator
,
axis
=
0
,
label
=
'Red Variations'
)
self
.
__greens
=
StripWidget
(
switchboard
,
parent
,
self
.
__greens
=
StripWidget
(
switchboard
,
self
.
__frame
,
generator
=
constant_magenta_generator
,
axis
=
1
,
label
=
'Green Variations'
)
self
.
__blues
=
StripWidget
(
switchboard
,
parent
,
self
.
__blues
=
StripWidget
(
switchboard
,
self
.
__frame
,
generator
=
constant_yellow_generator
,
axis
=
2
,
label
=
'Blue Variations'
)
...
...
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