Qt Jambi

From Wikipedia, the free encyclopedia
Jump to: navigation, search
Qt Jambi
Stable release 4.6.3 / 2010-08-17
Preview release 4.7.1 beta 3 / 2010-11-28
Written in Java
Operating system Cross-platform
License LGPL

Qt Jambi is a Java binding of the cross-platform application framework Qt. It enables Java developers to use Qt within Java programming language. In addition, Qt Jambi generator can be used to create Java bindings for other Qt libraries and future versions of Qt.

Qt Jambi supports Linux and other flavours of Unix, as well as Mac OS X and Microsoft Windows.

Official support for Qt Jambi by Nokia ended in March 2010, and the project is now maintained by an open source community[1].

[edit] 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();
    }
}

[edit] References

[edit] External links

Personal tools
Namespaces

Variants
Actions
Navigation
Interaction
Toolbox
Print/export
Languages