Qt Jambi is a Java binding of the cross-platform application framework Qt. Qt Jambi is the Qt library made available to Java.
Background
Qt Jambi was first introduced on March, 2006. Since then it was maintained by Nokia. Official support for Qt Jambi by Nokia ended in March 2010, and the project is now maintained by an open source community.
More Information
Core Features
- Layout management
- Drag and drop
- Paint system
- Threading in Qt Jambi
- Qt Jambi supports Linux and other flavours of Unix, as well as Mac OS X and Microsoft Windows.
Qt Jambi hello world
package org.wikipedia.qt;
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();
}
}
Qt Jambi Examples
Qt Jambi Examples from trolltech
Qt Jambi Documantation