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.
