Software:Qt Jambi

From HandWiki
Short description: Java bindings for Qt framework
Qt Jambi
QtJambi logo 2021.svg
Stable release
6.2.2 / 18 January 2022; 2 years ago (2022-01-18)
Written inJava
Operating systemCross-platform
LicenseLGPL
Websitegithub.com/OmixVisualization/qtjambi/wiki

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 such as macOS, as well as Microsoft Windows.

Qt Jambi was originally developed by TrollTech (currently known as "The Qt Company") until March 2009, but it didn't continue after being bought by Nokia, official support for Qt Jambi by Nokia ended in March 2010.[1] The project was spun off into the open source project, which was later adopted by Omix Visualization.

Qt Jambi hello world

package org.wikipedia.qt;

import io.qt.widgets.*;
public class Test {
	public static void main(String[] args) {
		QApplication.initialize(args);
		QMessageBox.information(null, "QtJambi", "Hello World!");
		QApplication.shutdown();
	}
}

References

External links