-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheventhandler2.py
74 lines (60 loc) · 2.09 KB
/
eventhandler2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python3
# Copyright © 2012-13 Qtrac Ltd. All rights reserved.
# This program or module is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version. It is provided for
# educational purposes and is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
import sys
import Event
from Qtrac import coroutine
def main():
print("Handler Chain #1")
pipeline = key_handler(mouse_handler(timer_handler()))
while True:
event = Event.next()
if event.kind == Event.TERMINATE:
break
pipeline.send(event)
print("\nHandler Chain #2 (debugging)")
pipeline = debug_handler(pipeline)
while True:
event = Event.next()
if event.kind == Event.TERMINATE:
break
pipeline.send(event)
@coroutine
def debug_handler(successor, file=sys.stdout):
while True:
event = (yield)
file.write("*DEBUG*: {}\n".format(event))
successor.send(event)
@coroutine
def mouse_handler(successor=None):
while True:
event = (yield)
if event.kind == Event.MOUSE:
print("Click: {}".format(event))
elif successor is not None:
successor.send(event)
@coroutine
def key_handler(successor=None):
while True:
event = (yield)
if event.kind == Event.KEYPRESS:
print("Press: {}".format(event))
elif successor is not None:
successor.send(event)
@coroutine
def timer_handler(successor=None):
while True:
event = (yield)
if event.kind == Event.TIMER:
print("Timeout: {}".format(event))
elif successor is not None:
successor.send(event)
if __name__ == "__main__":
main()