1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>JGoodies Looks :: User's Guide :: Font Settings</title>
<link rel="stylesheet" type="text/css" href="../style.css" >
<meta name="description" content="The JGoodies Looks make your Swing apps and applets look better.">
<meta name="author" content="Karsten Lentzsch">
<meta name="keywords" content="JGoodies Looks Java Look Feel Swing UI Design Usability Lentzsch Kiel">
<meta name="robots" content="index, follow">
<meta name="date" content="2003-07-31">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0" bottommargin="0" >
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td colspan="3" bgcolor="DDDCDC"><a href="../../README.html"><img
src="../images/banner.gif" width="436" height="46" alt=":: JGOODIES Looks :: Professional Swing Look&Feels" border="0"></a></td>
</tr>
<tr>
<td colspan="3" height="1" bgcolor="C9C8C8"></td>
</tr>
<tr>
<td width="160" height="500" valign="top" bgcolor="F4f3f3" class="nav" nowrap="nowrap">
<div style="margin-left: 17px; margin-top: 17px; margin-right: 10px; ; margin-bottom: 17px; line-height: 18px;">
<!-- ************ Anfang der Seitennavigation **************************** -->
<b>General</b>
<br>:: <a class="nav" href="../../README.html">Readme</a>
<br>:: <a class="nav" href="../../RELEASE-NOTES.txt">Release Notes</a>
<br>:: <a class="nav" href="../../LICENSE.txt">License</a>
<br>:: <a class="nav" href="../examples.html">Examples</a>
<br>:: <a class="nav" href="../quickstart.html">Quick Start</a>
<br>:: <a class="nav" href="../tips.html">Tips & Tricks</a>
<br>:: <a class="nav" href="http://www.jgoodies.com/freeware/libraries/looks/faq/">FAQ</a>
<p>
<b>User's Guide</b>
<br>:: <a class="nav" href="../guide/index.html">Introduction</a>
<br>:: <a class="nav" href="../guide/lookandtheme.html">Look and Theme</a>
<br>:: <a class="nav" href="../guide/fonts.html"><b>Font Settings</b></a>
<br>:: <a class="nav" href="../guide/bars.html">Menu- & Tool Bar</a>
<br>:: <a class="nav" href="../guide/3d.html">Plastic 3D Effects</a>
<br>:: <a class="nav" href="../guide/plastic.html">Plastic Options</a>
<br>:: <a class="nav" href="../guide/other.html">Other Options</a>
<p>
<a class="nav" href="../api/index.html"><b>API Docs</b></a>
<p>
<b>Web Pages</b>
<br>:: <a class="nav" href="http://java.net/projects/looks/">Project Home</a>
<br>:: <a class="nav" href="http://www.jgoodies.com/downloads/libraries/">Download</a>
<br>:: <a class="nav" href="http://www.jgoodies.com/downloads/archive/">Archive</a>
<br>:: <a class="nav" href="http://java.net/projects/looks/lists">Mailing Lists</a>
<br>:: <a class="nav" href="http://java.net/jira/browse/LOOKS">Issue Tracker</a>
<!-- *********** Ende der Seitennavigation ******************************* -->
</div>
</td>
<td width="1" bgcolor="E7E5E5"><img src="/images/banner.gif" width="1" height="1" alt=""></td>
<td width="90%" valign="top" >
<div style="margin-left: 20px; margin-top: 17px; margin-bottom: 17px">
<!-- ************ Anfang des Inhalts ***************************************** -->
<table width="530" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<h1>:: Font Settings ::</h1>
The JGoodies Looks 2.0 use a completely overhauled font lookup.
On Windows this mechanism aims to use the native originals.
On other platforms it uses the logical fonts defined by the Java environment.
It is recommended to use the fonts suggested by the JGoodies Looks
- at least on Windows.
<p>
You can customize the fonts used by the JGoodies Windows L&f and
the Plastic L&f family. You can set a fixed control and menu fonts,
provide a set of fonts, or replace the default font lookup with a
custom font policy.
<h2>Setting the Control and Menu Font</h2>
If you just want to set a specific font for the components and menu,
set it in the system properties, either as a runtime argument
or during the application start.
<pre>
java -DWindows.controlFont="Segoe UI-plain-15"
-DPlastic.controlFont="Segoe UI-plain-15"
...
java -DWindows.controlFont=Tahoma-plain-11
-DWindows.menuFont=Tahoma-plain-12
-DPlastic.controlFont=Tahoma-plain-11
-DPlastic.menuFont=Tahoma-bold-11
...
System.setProperty("Windows.controlFont", "Segoe UI-plain-15");
System.setProperty("Plastic.controlFont", "Segoe UI-plain-15");
</pre>
<h2>FontSet and FontSets</h2>
The JGoodies L&fs use instances of
<a href="../api/com/jgoodies/looks/FontSet.html"><code>FontSet</code></a>
to describe the fonts used for the components, menus, tool tips, etc.
The class
<a href="../api/com/jgoodies/looks/FontSets.html"><code>FontSets</code></a>
vends predefined FontSet instances.
Here's an example how to use a custom FontSet:
<pre>
FontSet fontSet = FontSets.createDefaultFontSet(
new Font("Tahoma", Font.PLAIN, 11), // control font
new Font("Tahoma", Font.PLAIN, 12), // menu font
new Font("Tahoma", Font.BOLD, 11), // title font
);
FontPolicy fixedPolicy = FontPolicies.createFixedPolicy(fontSet);
PlasticLookAndFeel.setFontPolicy(fixedPolicy);
</pre>
<h2>FontPolicy and FontPolicies</h2>
The JGoodies Windows L&f and the Plastic L&f family
use a
<a href="../api/com/jgoodies/looks/FontPolicy.html"><code>FontPolicy</code></a>
to determine the <code>FontSet</code>
to be used. Typically a FontPolicy returns a FontSet
that varies with the L&f, locale, platform, and platform settings
such as the software display resolution or user desktop settings.
Class
<a href="../api/com/jgoodies/looks/FontPolicies.html"><code>FontPolicies</code></a>
vends predefined FontPolicy instances.
Here's an example for a custom FontPolicy that sets custom fonts
on a special platform:
<pre>
public final class MyPlasticFontPolicy implements FontPolicy {
public FontSet getFontSet(String lafName, UIDefaults table) {
if (MyFontUtils.IS_TAHOMA_AVAILABE) {
Font controlFont = MyFonts.getTahoma();
return FontSets.createDefaultFontSet(controlFont);
}
if (MySystemUtils.IS_OS_LINUX_UBUNTU) {
return MyFontSets.getUbuntuFontSet();
}
FontPolicy default = FontPolicies.getDefaultPlasticFontPolicy().
return default.getFontSet(lafName, table);
}
}
// Instantiate my Plastic font policy.
FontPolicy myPlasticFontPolicy = new MyPlasticFontPolicy();
// Wrap the above to honor the System properties (Plastic.controlFont, etc).
FontPolicy myFontPolicy = FontPolicies.customSettingsPolicy(
myPlasticFontPolicy);
// Set the wrapped policy.
PlasticLookAndFeel.setFontPolicy(myFontPolicy);
</pre>
<h2>Fonts</h2>
The
<a href="../api/com/jgoodies/looks/Fonts.html"><code>Fonts</code></a>
class provides fonts and font names For popular Windows fonts.
For example <tt>Fonts.WINDOWS_XP_96DPI_NORMAL</tt>
is the default font on Windows XP with a 96dpi software resolution
and a desktop font size <i>Normal</i>.
This can be used to preview how your application looks
in different environments:
<pre>
Font controlFont = Fonts.WINDOWS_VISTA_96DPI_NORMAL;
FontSet fontSet = FontSets.createDefaultFontSet(controlFont);
FontPolicy fontPolicy = FontPolicies.createFixedPolicy(fontSet);
WindowsLookAndFeel.setFontPolicy(fontPolicy);
</pre>
<h2>Visual Backward Compatibility</h2>
The JGoodies Looks 2.0 include
<a href="../api/com/jgoodies/looks/FontPolicies.html"><code>FontPolicies</code></a>
that mimic the
font lookup of the JGoodies Looks 1.x and one that can be used
during a transition from 1.x to 2.0:
<pre>
WindowsLookAndFeel.setFontPolicy(FontPolicies.getLooks1xWindowsPolicy());
PlasticLookAndFeel.setFontPolicy(FontPolicies.getLooks1xPlasticPolicy());
PlasticLookAndFeel.setFontPolicy(FontPolicies.getTransitionalPlasticPolicy());
</pre>
</td>
</tr>
</table>
<!-- ************ Ende des Inhalts ************************************** -->
</div>
</td>
</tr>
<tr>
<td nowrap="nowrap" bgcolor="F4f3f3">
<div style="font-size: 10px; margin-left: 17px; margin-top: 20px; margin-right: 10px; margin-bottom: 4px;">
(c) 2012 JGoodies
</div>
</td>
<td width="1" bgcolor="E7E5E5"></td>
<td> </td>
</tr>
<tr>
<td colspan="2" height="1" bgcolor="E7E5E5"></td>
<td></td>
</tr>
</table>
</body>
</html>
|