Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f802e14a
Commit
f802e14a
authored
Nov 01, 1993
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed redraw policy.
parent
2c84fa99
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
14 deletions
+24
-14
Demo/cwilib/vt100win.py
Demo/cwilib/vt100win.py
+24
-14
No files found.
Demo/cwilib/vt100win.py
View file @
f802e14a
...
...
@@ -9,16 +9,18 @@ class VT100win(VT100):
def
__init__
(
self
):
VT100
.
__init__
(
self
)
self
.
window
=
None
##
self.last_x = -1
##
self.last_y = -1
self
.
last_x
=
-
1
self
.
last_y
=
-
1
def
__del__
(
self
):
self
.
close
()
def
open
(
self
,
title
):
stdwin
.
setfont
(
'7x14'
)
self
.
docwidth
=
self
.
width
*
stdwin
.
textwidth
(
'm'
)
self
.
docheight
=
self
.
height
*
stdwin
.
lineheight
()
self
.
charwidth
=
stdwin
.
textwidth
(
'm'
)
self
.
lineheight
=
stdwin
.
lineheight
()
self
.
docwidth
=
self
.
width
*
self
.
charwidth
self
.
docheight
=
self
.
height
*
self
.
lineheight
stdwin
.
setdefwinsize
(
self
.
docwidth
+
2
,
self
.
docheight
+
2
)
stdwin
.
setdefscrollbars
(
0
,
0
)
self
.
window
=
stdwin
.
open
(
title
)
...
...
@@ -31,7 +33,8 @@ class VT100win(VT100):
def
show
(
self
):
if
not
self
.
window
:
return
self
.
draw
(((
-
10
,
-
10
),
(
self
.
docwidth
+
10
,
self
.
docheight
+
10
)))
self
.
window
.
change
(((
-
10
,
-
10
),
(
self
.
docwidth
+
10
,
self
.
docheight
+
10
)))
def
draw
(
self
,
detail
):
d
=
self
.
window
.
begindrawing
()
...
...
@@ -39,8 +42,8 @@ class VT100win(VT100):
red
=
stdwin
.
fetchcolor
(
'red'
)
d
.
cliprect
(
detail
)
d
.
erase
(
detail
)
lh
=
d
.
lineheight
()
cw
=
d
.
textwidth
(
'm'
)
lh
=
self
.
lineheight
cw
=
self
.
charwidth
for
y
in
range
(
self
.
height
):
d
.
text
((
0
,
y
*
lh
),
self
.
lines
[
y
].
tostring
())
if
self
.
attrs
[
y
]
<>
self
.
blankattr
:
...
...
@@ -56,13 +59,20 @@ class VT100win(VT100):
d
.
setfgcolor
(
fg
)
d
.
close
()
## def move_to(self, x, y):
## VT100.move_to(self, x, y)
## if self.y != self.last_y:
## self.show()
## self.last_x = self.x
## self.last_y = y
def
move_to
(
self
,
x
,
y
):
VT100
.
move_to
(
self
,
x
,
y
)
if
not
self
.
window
:
return
if
self
.
y
!=
self
.
last_y
:
self
.
window
.
change
((
0
,
self
.
last_y
*
self
.
lineheight
),
(
self
.
width
*
self
.
charwidth
,
(
self
.
last_y
+
1
)
*
self
.
lineheight
))
self
.
last_x
=
self
.
x
self
.
last_y
=
y
self
.
window
.
change
((
0
,
self
.
y
*
self
.
lineheight
),
(
self
.
width
*
self
.
charwidth
,
(
self
.
y
+
1
)
*
self
.
lineheight
))
def
send
(
self
,
str
):
VT100
.
send
(
self
,
str
)
self
.
show
()
## self.show()
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