![]() | |
Stable release | |
---|---|
Repository | |
Written in | Java |
Operating system | Cross-platform |
License | LGPL |
Website | github |
QtJambi is a Java binding of the cross-platform application frameworkQt. It enables Java developers to use Qt within theJava programming language. In addition, the QtJambi generator can be used to create Java bindings for other Qt libraries and future versions of Qt. UnlikeGTK, there are no Swing LAF implementations that use Qt for rendering.
QtJambi supportsLinux and other flavours ofUnix such asmacOS, as well asMicrosoft Windows.
QtJambi was originally developed byTrollTech (currently known as "The Qt Company") until March 2009, but development didn't continue after being bought byNokia, as official support for QtJambi byNokia ended in March 2010.[1] The project was spun off into anopen source project, which was later adopted by Omix Visualization.
packageorg.wikipedia.qt;importio.qt.widgets.*;publicclassTest{publicstaticvoidmain(String[]args){QApplication.initialize(args);QMessageBox.information(null,"QtJambi","Hello World!");QApplication.shutdown();}}