I need to setup LookAndFeel Files in JDK 1.6. I have two files:
napkinlaf-swingset2.jar
napkinlaf.jar
How can I set this up and use it?
I would like a GTK look and feel OR Qt look and feel, Are they available?
|
I need to setup LookAndFeel Files in JDK 1.6. I have two files:
How can I set this up and use it? I would like a GTK look and feel OR Qt look and feel, Are they available? |
||||
|
|
The class name for Naplin is java -Dswing.defaultlaf=net.sourceforge.napkinlaf.NapkinLookAndFeel To install it add swing.installedlafs=napkin swing.installedlaf.napkin.name=Napkin swing.installedlaf.napkin.class=net.sourceforge.napkinlaf.NapkinLookAndFeel to See the Napkin wiki page |
|||
|
|
|
This page explains how the work with Look&Feels: http://java.sun.com/docs/books/tutorial/uiswing/lookandfeel/plaf.html You can do it commandline:
Or in code:
You need to make sure the jars containing the look&feel are on the application classpath. How this works depends on the application. A typical way would be to put it in a lib folder. Look&Feels that are available by default in the JDK are:
Quioting the link above:
|
||||
|
The Qt look and feel is available from Trolltech as the product Jambi, which IS Qt for Java. |
|||
|
|