summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-10-31 11:26:01 (GMT)
committerGuido van Rossum <guido@python.org>1990-10-31 11:26:01 (GMT)
commitbe5ea2337413f0df95efcbb773a137f9b696635c (patch)
treef63bc267aa8db0335084545ee3352e3490bce9df /Lib
parent468c448bccf4788e57e7f4e484d0285da54dedc7 (diff)
downloadcpython-be5ea2337413f0df95efcbb773a137f9b696635c.zip
cpython-be5ea2337413f0df95efcbb773a137f9b696635c.tar.gz
cpython-be5ea2337413f0df95efcbb773a137f9b696635c.tar.bz2
Added new event types and selection types.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/lib-stdwin/stdwinevents.py10
-rwxr-xr-xLib/stdwin/stdwinevents.py10
2 files changed, 20 insertions, 0 deletions
diff --git a/Lib/lib-stdwin/stdwinevents.py b/Lib/lib-stdwin/stdwinevents.py
index 889dd95..ab80148 100644
--- a/Lib/lib-stdwin/stdwinevents.py
+++ b/Lib/lib-stdwin/stdwinevents.py
@@ -22,6 +22,10 @@ WE_MOVE = 9 # not reported -- reserved for future use
WE_DRAW = 10 # detail is ((left, top), (right, bottom))
WE_TIMER = 11 # detail is <no object>
WE_DEACTIVATE = 12 # detail is <no object>
+WE_EXTERN = 13 # detail is <no object>
+WE_KEY = 14 # detail is ???
+WE_LOST_SEL = 15 # detail is selection number
+WE_CLOSE = 16 # detail is <no object>
# Values for detail when type is WE_COMMAND:
@@ -34,3 +38,9 @@ WC_CANCEL = 6 # not reported -- turned into KeyboardInterrupt
WC_BACKSPACE = 7 # backspace key
WC_TAB = 8 # tab key
WC_RETURN = 9 # return or enter key
+
+# Selection numbers
+
+WS_CLIPBOARD = 0
+WS_PRIMARY = 1
+WS_SECONDARY = 2
diff --git a/Lib/stdwin/stdwinevents.py b/Lib/stdwin/stdwinevents.py
index 889dd95..ab80148 100755
--- a/Lib/stdwin/stdwinevents.py
+++ b/Lib/stdwin/stdwinevents.py
@@ -22,6 +22,10 @@ WE_MOVE = 9 # not reported -- reserved for future use
WE_DRAW = 10 # detail is ((left, top), (right, bottom))
WE_TIMER = 11 # detail is <no object>
WE_DEACTIVATE = 12 # detail is <no object>
+WE_EXTERN = 13 # detail is <no object>
+WE_KEY = 14 # detail is ???
+WE_LOST_SEL = 15 # detail is selection number
+WE_CLOSE = 16 # detail is <no object>
# Values for detail when type is WE_COMMAND:
@@ -34,3 +38,9 @@ WC_CANCEL = 6 # not reported -- turned into KeyboardInterrupt
WC_BACKSPACE = 7 # backspace key
WC_TAB = 8 # tab key
WC_RETURN = 9 # return or enter key
+
+# Selection numbers
+
+WS_CLIPBOARD = 0
+WS_PRIMARY = 1
+WS_SECONDARY = 2