I'm trying to create a Qt widget in C++ as a child of a Jambi widget. Passing the parent's native pointer into a JNI method seems to be the straightforward approach, but Qt complains about creating the widget on a different thread than the parent.

Does JNI run methods on a different thread than the Java code? Or is Jambi doing some trickery behind the scenes and my Java Qt calls are really being invoked on a different thread? Or something else? What's going on here, and what can I do about it?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Quit writing your own JNI, use The Qt Jambi Generator to generate stub for your C++ Widget and do all your code in java.

link|improve this answer
Yeah, looks like that's the right approach. Thanks. – Xtapolapocetl Nov 10 '10 at 2:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.