diff options
author | Guido van Rossum <guido@python.org> | 1991-12-26 13:06:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-12-26 13:06:52 (GMT) |
commit | 8fd7eee6dbd7d32d1941c5eb9d6c5a2517bec99c (patch) | |
tree | a2ae4ea022bad8f7b9f6a92bb30a0f62a63ed4b4 /Lib/lib-stdwin/tablewin.py | |
parent | ccfd6e105b5a53578ff3ebf99eb7da58a47e2d9a (diff) | |
download | cpython-8fd7eee6dbd7d32d1941c5eb9d6c5a2517bec99c.zip cpython-8fd7eee6dbd7d32d1941c5eb9d6c5a2517bec99c.tar.gz cpython-8fd7eee6dbd7d32d1941c5eb9d6c5a2517bec99c.tar.bz2 |
Use new stdwinevents.
Diffstat (limited to 'Lib/lib-stdwin/tablewin.py')
-rw-r--r-- | Lib/lib-stdwin/tablewin.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/lib-stdwin/tablewin.py b/Lib/lib-stdwin/tablewin.py index 05a954e..f9ab907 100644 --- a/Lib/lib-stdwin/tablewin.py +++ b/Lib/lib-stdwin/tablewin.py @@ -16,6 +16,7 @@ import stdwin import gwin +from stdwinevents import * def open(title, data): # Public function to open a table window # @@ -163,15 +164,13 @@ def whichcol(w, h): # Return column number (may be >= len(w.data)) return len(w.data) def arrow(w, type): - import stdwinsupport - S = stdwinsupport - if type = S.wc_left: + if type = WC_LEFT: incr = -1, 0 - elif type = S.wc_up: + elif type = WC_UP: incr = 0, -1 - elif type = S.wc_right: + elif type = WC_RIGHT: incr = 1, 0 - elif type = S.wc_down: + elif type = WC_DOWN: incr = 0, 1 else: return |