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/stdwin/textwin.py | |
parent | ccfd6e105b5a53578ff3ebf99eb7da58a47e2d9a (diff) | |
download | cpython-8fd7eee6dbd7d32d1941c5eb9d6c5a2517bec99c.zip cpython-8fd7eee6dbd7d32d1941c5eb9d6c5a2517bec99c.tar.gz cpython-8fd7eee6dbd7d32d1941c5eb9d6c5a2517bec99c.tar.bz2 |
Use new stdwinevents.
Diffstat (limited to 'Lib/stdwin/textwin.py')
-rwxr-xr-x | Lib/stdwin/textwin.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Lib/stdwin/textwin.py b/Lib/stdwin/textwin.py index a003a9a..778717f 100755 --- a/Lib/stdwin/textwin.py +++ b/Lib/stdwin/textwin.py @@ -3,10 +3,8 @@ # Text windows, a subclass of gwin import stdwin -import stdwinsupport import gwin - -S = stdwinsupport # Shorthand +from stdwinevents import * def fixsize(w): @@ -68,7 +66,7 @@ def char(w, c): # Char method fixsize(w) def backspace(w): # Backspace method - void = w.text.event(S.we_command, w, S.wc_backspace) + void = w.text.event(WE_COMMAND, w, WC_BACKSPACE) fixsize(w) def arrow(w, detail): # Arrow method @@ -76,14 +74,14 @@ def arrow(w, detail): # Arrow method fixeditmenu(w) def mdown(w, detail): # Mouse down method - void = w.text.event(S.we_mouse_down, w, detail) + void = w.text.event(WE_MOUSE_DOWN, w, detail) fixeditmenu(w) def mmove(w, detail): # Mouse move method - void = w.text.event(S.we_mouse_move, w, detail) + void = w.text.event(WE_MOUSE_MOVE, w, detail) def mup(w, detail): # Mouse up method - void = w.text.event(S.we_mouse_up, w, detail) + void = w.text.event(WE_MOUSE_UP, w, detail) fixeditmenu(w) def activate(w): # Activate method |