Question

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.

Was it helpful?

Solution

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:

http://java-native-access.github.io/jna/4.4.0/javadoc/

Good Luck!

OTHER TIPS

I've created xcb (successor of xlib) bindings for Java through SWiG. You can find the code here:

https://github.com/Zubnix/xcb4j

It's a rather large but straightforward implementation and should work once you have all the required xcb module headers installed.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top