
cute4j
Overview
Cute4j is a set of Qt libraries packed for Java developers.
No additional knowledge of Qt is necessary. This is not a port nor a binding of Qt to Java. There are APIs similar to Swing and other common APIs in Java.
Here is an example how to use Cute4j Swing:
``` import com.cute4j.swing.Label; import com.cute4j.swing.Swing;
public class HelloWorld {
public static void main(String[] args) { Label label = new Label("Hello World!"); label.setVisible(true); Swing.startEventLoop(); }
} ```
and you will get this:
For more information visit www.cute4j.com.
Project Information
- License: GNU Lesser GPL
- hg-based source control