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
7c51a9a8
Kaydet (Commit)
7c51a9a8
authored
Eki 05, 1998
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Title
üst
c078b03d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
8 deletions
+6
-8
DetailsViewer.py
Tools/pynche/DetailsViewer.py
+4
-4
ListViewer.py
Tools/pynche/ListViewer.py
+1
-2
TextViewer.py
Tools/pynche/TextViewer.py
+1
-2
No files found.
Tools/pynche/DetailsViewer.py
Dosyayı görüntüle @
7c51a9a8
...
...
@@ -54,7 +54,6 @@ Shift + Right == +25
import
sys
from
Tkinter
import
*
from
pynche
import
__version__
STOP
=
'Stop'
WRAP
=
'Wrap Around'
...
...
@@ -69,7 +68,7 @@ class DetailsViewer:
# GUI
root
=
self
.
__root
=
Toplevel
(
parent
,
class_
=
'Pynche'
)
root
.
protocol
(
'WM_DELETE_WINDOW'
,
self
.
__withdraw
)
root
.
title
(
'Pynche
%
s'
%
__version__
)
root
.
title
(
'Pynche
Details Window'
)
root
.
iconname
(
'Pynche Details Window'
)
root
.
bind
(
'<Alt-q>'
,
self
.
__quit
)
root
.
bind
(
'<Alt-Q>'
,
self
.
__quit
)
...
...
@@ -89,14 +88,14 @@ class DetailsViewer:
self
.
__l1
=
Label
(
frame
,
text
=
'Color Ties:'
)
self
.
__l1
.
grid
(
row
=
0
,
column
=
0
,
columnspan
=
3
,
sticky
=
E
)
self
.
__rvar
=
IntVar
()
self
.
__rvar
.
set
(
1
)
self
.
__rvar
.
set
(
4
)
self
.
__radio1
=
Checkbutton
(
frame
,
text
=
'Red'
,
variable
=
self
.
__rvar
,
command
=
self
.
__effect
,
onvalue
=
4
,
offvalue
=
0
)
self
.
__radio1
.
grid
(
row
=
0
,
column
=
3
,
columnspan
=
3
,
sticky
=
W
)
self
.
__gvar
=
IntVar
()
self
.
__gvar
.
set
(
1
)
self
.
__gvar
.
set
(
2
)
self
.
__radio2
=
Checkbutton
(
frame
,
text
=
'Green'
,
variable
=
self
.
__gvar
,
command
=
self
.
__effect
,
...
...
@@ -111,6 +110,7 @@ class DetailsViewer:
self
.
__radio3
.
grid
(
row
=
2
,
column
=
3
,
columnspan
=
3
,
sticky
=
W
)
self
.
__l2
=
Label
(
frame
)
self
.
__l2
.
grid
(
row
=
3
,
column
=
3
,
columnspan
=
3
,
sticky
=
W
)
self
.
__effect
()
#
# Boundary behavior
self
.
__l3
=
Label
(
frame
,
text
=
'At boundary:'
)
...
...
Tools/pynche/ListViewer.py
Dosyayı görüntüle @
7c51a9a8
...
...
@@ -17,7 +17,6 @@ given name, without selecting the color.
import
sys
from
Tkinter
import
*
from
pynche
import
__version__
import
ColorDB
class
ListViewer
:
...
...
@@ -28,7 +27,7 @@ class ListViewer:
# GUI
root
=
self
.
__root
=
Toplevel
(
parent
,
class_
=
'Pynche'
)
root
.
protocol
(
'WM_DELETE_WINDOW'
,
self
.
__withdraw
)
root
.
title
(
'Pynche
%
s'
%
__version__
)
root
.
title
(
'Pynche
Color List'
)
root
.
iconname
(
'Pynche Color List'
)
root
.
bind
(
'<Alt-q>'
,
self
.
__quit
)
root
.
bind
(
'<Alt-Q>'
,
self
.
__quit
)
...
...
Tools/pynche/TextViewer.py
Dosyayı görüntüle @
7c51a9a8
...
...
@@ -17,7 +17,6 @@ in the text window (which only has a background).
import
sys
from
Tkinter
import
*
from
pynche
import
__version__
import
ColorDB
class
TextViewer
:
...
...
@@ -25,7 +24,7 @@ class TextViewer:
self
.
__sb
=
switchboard
root
=
self
.
__root
=
Toplevel
(
parent
,
class_
=
'Pynche'
)
root
.
protocol
(
'WM_DELETE_WINDOW'
,
self
.
__withdraw
)
root
.
title
(
'Pynche
%
s'
%
__version__
)
root
.
title
(
'Pynche
Text Window'
)
root
.
iconname
(
'Pynche Text Window'
)
root
.
bind
(
'<Alt-q>'
,
self
.
__quit
)
root
.
bind
(
'<Alt-Q>'
,
self
.
__quit
)
...
...
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