Menu

[r3358]: / trunk / htdocs / examples / keypress_demo.py  Maximize  Restore  History

Download this file

22 lines (17 with data), 481 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
"""
Show how to connect to keypress events
Note, on the wx backend on some platforms (eg linux), you have to
first click on the figure before the keypress events are activated.
If you know how to fix this, please email us!
"""
from pylab import *
def press(event):
print 'press', event.key
if event.key=='g':
grid()
draw()
connect('key_press_event', press)
title('press g to toggle grid')
plot(rand(12), rand(12), 'go')
show()
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.