Qt Jambi

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
Qt Jambi
Stable release 4.8.7 / 13 June 2015; 8 years ago (2015-06-13)
Written in Java
Operating system Cross-platform
License LGPL
Website qtjambi.org

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. Unlike GTK there are no Swing LAF implementations that use Qt for rendering.

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

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

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

References

  1. Lua error in package.lua at line 80: module 'strict' not found.

External links