In this case $self
is a subclass of Wx::Frame
and I can add controls, menus, etc to the frame. However I cannot add key events. I am using the following to add the key event:
EVT_KEY_DOWN($self, \&_process_char);
The _process_char function looks like this:
sub _process_char {
my ($evt) = @_;
warn 'key pressed';
}
The event doesn't fire. What am I doing wrong? How do I get key down events to work with wxperl?
It has to do with event propagation -- a textctrl handles keydown/keyup events, and the default one (default textctrl handler) won't propagate these events UP to a frame. If you want your handler to be called bind to wxTheApp() or the textctrl. Here is an example where not all keys are propagated
Also, you call your handler _process_char but you use EVT_KEY_DOWN -- there is an EVT_CHAR just for chars :)
update: For notebook example replace (in above sample) around
$text
with