Hi-
I have a question dealing with event handlers. I have a frame that contains a panels, buttons, labels, and input boxes. What I need is for one of my input boxes to always have focus, even when the user clicks outside of this input box. I have been using the event EVT_MOUSE_EVENTS(self.panel1, self.evt_mouse) to handle mouse movements. When this event calls, I simply set the focus of the text box. My question is: Do I have to add an Event handler to every object on my frame to handle these mouse clicks or movements? Is there anyway I can track mouse movements for the whole frame without having to add EVT_MOUSE_EVENTS() for each object? Any help would be appreciated!
-Tyson-