tags:

views:

28

answers:

1

I'm looking for Java bindings for XLib.

Specially, I need to be able to reparent an X windows application from within Java.

Ideally I would like to do this by making the X windows calls directly from java.

+1  A: 

I don't know anything about XLib... but recently I ran across JNA and it seems that it can talk with system APIs so give it a look if you wish:

https://jna.dev.java.net/nonav/javadoc/index.html?com/sun/jna/examples/unix/package-summary.html

Good Luck!

Yaneeve