I have a GUI with a bunch of jPanels stacked on top of each other. Which one is "on top" is controlled by a jLayeredPane. However, when hovering over buttons and forms not on top, they become visible and interact-able.

How can I make the panels "solid" i.e. so that the underlying components don't "pop up"?

link|improve this question

1  
try panel.setOpaque(true);. – Harry Joy Sep 7 '11 at 8:30
@Harry - That's what I thought, but no, already tried that. – Theodor Sep 7 '11 at 8:46
don't understand the "become visible" - but the interact-able is to be expected: mouseEvents are delivered to the top-most component which is willing to receive it, they don't care if the comps are layered or normally added. Cant think a simple solution ... so stepping back and asking the usual (as implicitly already asked by @dacwe :) why do you use a layeredPane? – kleopatra Sep 7 '11 at 9:53
feedback

3 Answers

up vote 4 down vote accepted

I would advise you to use a CardLayout for this task.

link|improve this answer
Alright... I'll give it a shot! So when should a jLayeredPane be used? – Theodor Sep 7 '11 at 9:40
JLayeredPane should be used when components may overlap each other. (In your case you don't want that, you only want to see one at a time.) – dacwe Sep 7 '11 at 9:59
+1 for CardLayout. – trashgod Sep 7 '11 at 10:03
feedback

So when should a JLayeredPane be used?

Use Layered Pane when you want different layers visible at the same time. Use CardLayout to replace the the entire pane.

link|improve this answer
feedback

A technical solution to block mouseEvents, available since jdk7, is a JLayer (me still playing with it, that's why I show it occasionally :-)

public static class MouseBlockerUI extends LayerUI<JComponent> {

    @Override
    protected void processMouseEvent(MouseEvent e, JLayer l) {
        JLayeredPane layeredPane = (JLayeredPane) l.getParent();
        if (layeredPane.getLayer(l) != layeredPane.highestLayer())
            e.consume();
    }

    @Override
    public void installUI(JComponent c) {
        super.installUI(c);
        JLayer jlayer = (JLayer)c;
        jlayer.setLayerEventMask(
                AWTEvent.MOUSE_EVENT_MASK 
        );
    }

    @Override
    public void uninstallUI(JComponent c) {
        JLayer jlayer = (JLayer)c;
        jlayer.setLayerEventMask(0);
        super.uninstallUI(c);
    }

}

then wrap your panels into a JLayer and add the JLayer to the JLayeredPane:

layeredPane.add(new JLayer(myPanel, new MouseBlockerUI(), someLayer));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.