Embed c++ opengl window in Java window

1k Views Asked by At

i am trying to embed a c++ opengl window in a java window. I'm able to send the HWND of the opengl window to the java window through sockets. I'd rather not use JNI for it as i want to have 2 seperate process (the why doesn't matter). I made my search and found out this could be possible by using User32's function SetParent(HWND childWindow, HWND parentWindow). However, i'm unable to use it properly or can't find the steps to use User32. So this might be an issue related to Embed HWND (Window Handle) in a JPanel which is quite what i want to do but i wasn't able to reproduce the solution as i wasn't able to use User32 (cannot be resolved) even if i made the following imports : import com.sun.jna.Library; import com.sun.jna.Native; import com.sun.jna.Platform; import com.sun.jna.Pointer;

I was also unable to use WComponentPeer but i haven't done much search on the subject.

Thanks in advance

1

There are 1 best solutions below

2
On

You need the User32 interface mapping from JNA's platform.jar.

See these notes for getting started.