ch.randelshofer.quaqua.package.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Quaqua Show documentation
Show all versions of Quaqua Show documentation
A Mavenisation of the Quaqua Mac OSX Swing Look and Feel (Java library)
Quaqua Look and Feel (C) 2003-2010, Werner Randelshofer.
Mavenisation by Matt Gumbley, DevZendo.org - for problems with
Mavenisation, see Matt; for issues with Quaqua, see the Quaqua home page.
For full license details, see http://randelshofer.ch/quaqua/license.html
The newest version!
Provides fixes and enhancements for Apple's implementation of the Aqua Look and Feel.
See comments of the LookAndFeel
classes for detailed descriptions.
To activate the QuaquaLookAndFeel
for a Java Application it is
recommended to use the following code snippet:
javax.swing.UIManager.setLookAndFeel(
ch.randelshofer.quaqua.QuaquaManager.getLookAndFeelClassName()
);
For a Java applet, use the following code snippet please:
javax.swing.UIManager.put("ClassLoader", getClass().getClassLoader());
javax.swing.UIManager.setLookAndFeel(
ch.randelshofer.quaqua.QuaquaManager.getLookAndFeel()
);
The Quaqua Look and Feel can
be
customized
using
system
properties
and
client
properties. For details see the description of class QuaquaManager.
@see ch.randelshofer.quaqua.QuaquaManager
Native libraries
Quaqua uses JNI to do function calls to Mac OS X Carbon and Cocoa.
Make sure that the files libquaqua.jnilib
and libquaqua64.jnilib
are
in the library path of your application. If this file is missing, or could not be loaded due
to security restrictions, Quaqua will work with a reduced set of functionality.
© 2015 - 2024 Weber Informatics LLC | Privacy Policy