I'm trying to overlay a custom transparency over the top of a JPanel. I want both components to extend to the edge of the layered pane. I have overridden the paintComponent method of the top component to generally do nothing except when I want to display an overlay. Then it draws the appropriate text in the appropriate location.
Here is my solution for the layout problem:
JLayeredPane jlp = new JLayeredPane();
jlp.setLayout(new OverlayLayout(jlp) {
@Override
public void layoutContainer(Container target) {
for (Component c: target.getComponents())
c.setBounds(0, 0, target.getWidth(), target.getHeight());
}
});
The question is - is there a better way to do this without overriding layoutContainer? This seems like a hack to me. I mean, really I can't believe that there isn't an option to do this when laying out components. But if I don't override the method, it leaves gaps on the top and left sides.
Am I missing something here, or is this the proper way to handle these requirements?