Qt Jambi is a Java library that is a wrapper for Qt , a framework for graphical applications. It allows Java developers to use Qt in their projects.
| Qt jambi | |
|---|---|
| Type of | Qt binding for Java |
| Written on | C ++ , Java |
| operating system | Cross-platform |
| Latest version | 4.8.6 ( February 1, 2015 ) |
| License | LGPL |
| Site | qtjambi.org (no longer working) |
Qt Jambi supports Linux , Unix , Mac OS X, and Microsoft Windows .
Official Nokia support for Qt Jambi ended in March 2010 , and the project is currently supported by the Open source community .
Hello World!
package org.wikipedia.trolltech ;
import com.trolltech.qt.gui. * ;
public class HelloWorld {
public static void main ( String args []) {
QApplication . initialize ( args );
QPushButton hello = new QPushButton ( "Hello World!" );
hello show ();
QApplication . exec ();
}
}