I have added two components in JLayeredPane.
1. JWebBrowser
2. JPanel

I added JWebBrowser and JPanel in different layers. JWebBrowser is in 0 i.e bottom layer and JPanel is in 1st Layer.

m_LayeredPane.setLayer(m_WebBrowser, JLayeredPane.DEFAULT_LAYER);
m_LayeredPane.add(m_WebBrowser);
m_LayeredPane.setLayer(m_WebCamPane, JLayeredPane.PALETTE_LAYER);
m_LayeredPane.add(m_WebCamPane);

Now the problem is that JWebBrowser layer is overlapping JPanel layer.

I tried various things like moveToFront() method, defining position at run time, putting both component in same layer and using componentZorder etc.. but still the problem is same.

I am not sure what causing JPanel layer to go back of JWebBrowser layer.

link|improve this question

71% accept rate
1  
What version of Java are you running? – jzd Jul 8 '11 at 17:31
@jzd: I am using java version "1.6.0_26" – Sandy Jul 9 '11 at 6:49
feedback

2 Answers

up vote 4 down vote accepted

I will bet that even though JWebBrowser derives eventually from JPanel that it behaves as a heavy-weight component with some native components. If so, there are limitations in what you can do, and you may want to read more about mixing heavy and light weight components together in a Swing app: Mixing Heavy and Light Weight Components

link|improve this answer
I was thinking the same thing. Moving to a current version of Java 6 should fix this. – jzd Jul 8 '11 at 17:32
@jzd: I've heard that Java 1.6 behaves better in this regard but haven't tried it myself. – Hovercraft Full Of Eels Jul 8 '11 at 17:33
After a certain version of 1.6, I don't remember exactly which one, but basically it is not an issue. – jzd Jul 8 '11 at 18:09
1  
@Hovercraft Full Of Eels: I think you are right. But can u please tell me how can I make light-weight component to overlap heavy-weight component. – Sandy Jul 9 '11 at 6:48
feedback

If the web browser is created without any particular options, then it behaves like a heavy weight component. But if it is created with certain options, it can better mix. For example: new JWebBrowser(JWebBrowser.constrainVisibility());

Have a look at the demo application to see all sorts of integration cases and more specifically at the additional features section.

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.