Re: [Matplotlib-users] skip mpl-axes-interaction during key_press_event's

2007-05-15 Thread Matthias Michler
Hi everybody, while thinking about the problem of disabling mpl-axes-interaction during key_press_events two ideas came to my mind: One could add a (e.g. 'skip_mpl_events') to class Artist or class Axes(Artist). a) In the method key_press (of class FigureManagerBase) one could then use this

[Matplotlib-users] skip mpl-axes-interaction during key_press_event's

2007-04-27 Thread Matthias Michler
Hi everybody, I use key_press_event's to handle my program. Therefore I want to skip the matplotlib usage of some keys e.g. 'f', 'g' and 'l'. I didn't find the right method to turn the usage off. Can anybody help me? Could this method be useful for buttons and sliders from widgets.py, too? Bec