views:

9

answers:

0

I have a gui app A, written in QT and another gui app B, written in Java. I wish to make app B the container of app A.I reparent windows in app A with windows in app B by passing proper handles to it. However, windows in app A dont get painted properly when app B is refreshed. Do I have to pass refresh events across to app A? Cant the OS take care of the app A window and fire a repaint/update event in A? Or is it getting hidden because after A's repaint, app B's repaint hides it (maybe its not aware of its children)? Where is it that I'm going wrong?

Please Help.

Thanks!