JPanel does not generate MouseEvents when cursor is on child components
It is a bit strange for me but JPanel does not generate MouseEvents when cursor is on child components: JTextField and JToolBar but it generates Mous开发者_运维知识库eEvents when cursor is on JLabel. Could someone explaind me why? Is there any way to force JPanel to generate events even if mouse is on child components?
The event dispatcher will forward mouse events to the listeners registered to the component that is returned by the package-level getMouseEventTarget
method in Container
. This will be called on your JFrame
, and, as the JavaDoc indicates, it:
Fetchs the top-most (deepest) lightweight component that is interested in receiving mouse events.
The event dispatcher then takes this top-most component (your JTextField
, for example) and sends events to all of its listeners only. They do this in order to avoid having to broadcast these events to all of the components that may be layered within a Swing container. MouseEvents, as you can imagine, are very chatty, what with all of the mouseEntered
, mouseDragged
, and mouseMoved
events that are dispatched for all of the MouseListener
and MouseMotionListener
implementations potentially out there. The processing to find all listeners and then fire events to all of them in the hierarchy would be time consuming.
The assumption is also that for classes like JTextField
and JButton
, etc., the default mouse handling is all that one would need. If you want to handle mouse actions differently (ie, changing color on a mouseEntered
/mouseExited
), you can add a MouseListener
to these widgets as you need to.
For your processing, I would suggest simply adding your JPanel
as a MouseListener
to your top level components if you need to handled these events.
you may want to have the child components (JTextField, JToolBar, etc) listen for the mouse events from the jpanel and/or forward the mouse events to the child components.
Could someone explain why?
Component
mouse events are handled by processMouseEvent()
, which says
Mouse events are enabled when one of the following occurs:
- A MouseListener object is registered via addMouseListener.
- Mouse events are enabled via enableEvents.
You can use getMouseListeners()
to see the difference.
精彩评论