show/hide this revision's text 2 added 26 characters in body

Another option is to use JLayeredPane instead of JPanel as you your main container and place a non-opaque (setOpaque(false)) JPanel on a higher layer (setLayer(highNumber) Use JLayeredPane.setLayer(yourPanel, highNumber) and filling fill your JLayeredPane using something like GridBagLayout or a simple custom LayoutManager).

You can then implement the custom painting on that panel.

show/hide this revision's text 1

Another option is to use JLayeredPane instead of JPanel as you main container and place a non-opaque (setOpaque(false)) JPanel on a higher layer (setLayer(highNumber) and filling your JLayeredPane using something like GridBagLayout or a simple custom LayoutManager)

You can then implement the custom painting on that panel.