Imported GNU Classpath 0.19 + gcj-import-20051115.
[official-gcc.git] / libjava / classpath / java / awt / FontMetrics.java
blob91866462fee6cba84064a7a3103e647165d4ac23
1 /* FontMetrics.java -- Information about about a fonts display characteristics
2 Copyright (C) 1999, 2002, 2005 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package java.awt;
41 import java.awt.font.FontRenderContext;
42 import java.awt.font.LineMetrics;
43 import java.awt.geom.Rectangle2D;
44 import java.text.CharacterIterator;
46 // FIXME: I leave many methods basically unimplemented. This
47 // should be reviewed.
49 /**
50 * This class returns information about the display characteristics of
51 * a font. It is abstract, and concrete subclasses should implement at
52 * least the following methods:
54 * <ul>
55 * <li>getAscent()</li>
56 * <li>getDescent()</li>
57 * <li>getLeading()</li>
58 * <li>getMaxAdvance()</li>
59 * <li>charWidth(char)</li>
60 * <li>charsWidth(char[], int, int)</li>
61 * </ul>
63 * @author Aaron M. Renn (arenn@urbanophile.com)
65 public abstract class FontMetrics implements java.io.Serializable
67 // Serialization constant.
68 private static final long serialVersionUID = 1681126225205050147L;
70 /**
71 * This is the font for which metrics will be returned.
73 protected Font font;
75 /**
76 * Initializes a new instance of <code>FontMetrics</code> for the
77 * specified font.
79 * @param font The font to return metric information for.
81 protected FontMetrics(Font font)
83 this.font = font;
86 /**
87 * Returns the font that this object is creating metric information fo.
89 * @return The font for this object.
91 public Font getFont()
93 return font;
96 /**
97 * Returns the leading, or spacing between lines, for this font.
99 * @return The font leading.
101 public int getLeading()
103 return 0;
107 * Returns the ascent of the font, which is the distance from the base
108 * to the top of the majority of characters in the set. Some characters
109 * can exceed this value however.
111 * @return The font ascent.
113 public int getAscent()
115 return 1;
119 * Returns the descent of the font, which is the distance from the base
120 * to the bottom of the majority of characters in the set. Some characters
121 * can exceed this value however.
123 * @return The font descent.
125 public int getDescent()
127 return 1;
131 * Returns the height of a line in this font. This will be the sum
132 * of the leading, the ascent, and the descent.
134 * @return The height of the font.
136 public int getHeight()
138 return getAscent() + getDescent() + getLeading();
142 * Returns the maximum ascent value. This is the maximum distance any
143 * character in the font rised above the baseline.
145 * @return The maximum ascent for this font.
147 public int getMaxAscent()
149 return getAscent();
153 * Returns the maximum descent value. This is the maximum distance any
154 * character in the font extends below the baseline.
156 * @return The maximum descent for this font.
158 public int getMaxDescent()
160 return getMaxDecent();
164 * Returns the maximum descent value. This is the maximum distance any
165 * character in the font extends below the baseline.
167 * @return The maximum descent for this font.
169 * @deprecated This method is deprecated in favor of
170 * <code>getMaxDescent()</code>.
172 public int getMaxDecent()
174 return getDescent();
178 * Returns the width of the widest character in the font.
180 * @return The width of the widest character in the font.
182 public int getMaxAdvance()
184 return -1;
188 * Returns the width of the specified character.
190 * @param ch The character to return the width of.
192 * @return The width of the specified character.
194 public int charWidth(int ch)
196 char[] chars = Character.toChars(ch);
197 return charsWidth(chars, 0, chars.length);
201 * Returns the width of the specified character.
203 * @param ch The character to return the width of.
205 * @return The width of the specified character.
207 public int charWidth(char ch)
209 return 1;
213 * Returns the total width of the specified string
215 * @param str The string to return the width of.
217 * @return The width of the string.
219 public int stringWidth(String str)
221 char[] buf = new char[str.length()];
222 str.getChars(0, str.length(), buf, 0);
224 return charsWidth(buf, 0, buf.length);
228 * Returns the total width of the specified character array.
230 * @param buf The character array containing the data.
231 * @param offset The offset into the array to start calculating from.
232 * @param len The total number of bytes to process.
234 * @return The width of the requested characters.
236 public int charsWidth(char[] buf, int offset, int len)
238 int total_width = 0;
239 int endOffset = offset + len;
240 for (int i = offset; i < endOffset; i++)
241 total_width += charWidth(buf[i]);
242 return total_width;
246 * Returns the total width of the specified byte array.
248 * @param buf The byte array containing the data.
249 * @param offset The offset into the array to start calculating from.
250 * @param len The total number of bytes to process.
252 * @return The width of the requested characters.
254 public int bytesWidth(byte[] buf, int offset, int len)
256 int total_width = 0;
257 for (int i = offset; i < len; i++)
258 total_width = charWidth((char) buf[i]);
260 return total_width;
264 * Returns the widths of the first 256 characters in the font.
266 * @return The widths of the first 256 characters in the font.
268 public int[] getWidths()
270 int[] result = new int[256];
271 for (char i = 0; i < 256; i++)
272 result[i] = charWidth(i);
273 return result;
277 * Returns a string representation of this object.
279 * @return A string representation of this object.
281 public String toString()
283 return (this.getClass() + "[font=" + font + ",ascent=" + getAscent()
284 + ",descent=" + getDescent() + ",height=" + getHeight() + "]");
287 // Generic FontRenderContext used when getLineMetrics is called with a
288 // plain Graphics object.
289 private static final FontRenderContext gRC = new FontRenderContext(null,
290 false,
291 false);
294 * Returns a {@link LineMetrics} object constructed with the
295 * specified text and the {@link FontRenderContext} of the Graphics
296 * object when it is an instance of Graphics2D or a generic
297 * FontRenderContext with a null transform, not anti-aliased and not
298 * using fractional metrics.
300 * @param text The string to calculate metrics from.
301 * @param g The Graphics object that will be used.
303 * @return A new {@link LineMetrics} object.
305 public LineMetrics getLineMetrics(String text, Graphics g)
307 return getLineMetrics(text, 0, text.length(), g);
311 * Returns a {@link LineMetrics} object constructed with the
312 * specified text and the {@link FontRenderContext} of the Graphics
313 * object when it is an instance of Graphics2D or a generic
314 * FontRenderContext with a null transform, not anti-aliased and not
315 * using fractional metrics.
317 * @param text The string to calculate metrics from.
318 * @param begin Index of first character in <code>text</code> to measure.
319 * @param limit Index of last character in <code>text</code> to measure.
320 * @param g The Graphics object that will be used.
322 * @return A new {@link LineMetrics} object.
324 * @throws IndexOutOfBoundsException if the range [begin, limit] is
325 * invalid in <code>text</code>.
327 public LineMetrics getLineMetrics(String text, int begin, int limit,
328 Graphics g)
330 FontRenderContext rc;
331 if (g instanceof Graphics2D)
332 rc = ((Graphics2D) g).getFontRenderContext();
333 else
334 rc = gRC;
335 return font.getLineMetrics(text, begin, limit, rc);
339 * Returns a {@link LineMetrics} object constructed with the
340 * specified text and the {@link FontRenderContext} of the Graphics
341 * object when it is an instance of Graphics2D or a generic
342 * FontRenderContext with a null transform, not anti-aliased and not
343 * using fractional metrics.
345 * @param chars The string to calculate metrics from.
346 * @param begin Index of first character in <code>text</code> to measure.
347 * @param limit Index of last character in <code>text</code> to measure.
348 * @param g The Graphics object that will be used.
350 * @return A new {@link LineMetrics} object.
352 * @throws IndexOutOfBoundsException if the range [begin, limit] is
353 * invalid in <code>text</code>.
355 public LineMetrics getLineMetrics(char[] chars, int begin, int limit,
356 Graphics g)
358 FontRenderContext rc;
359 if (g instanceof Graphics2D)
360 rc = ((Graphics2D) g).getFontRenderContext();
361 else
362 rc = gRC;
363 return font.getLineMetrics(chars, begin, limit, rc);
367 * Returns the bounds of the largest character in a Graphics context.
368 * @param context the Graphics context object.
369 * @return a <code>Rectangle2D</code> representing the bounds
371 public Rectangle2D getMaxCharBounds(Graphics context)
373 if( context instanceof Graphics2D )
374 return font.getMaxCharBounds(((Graphics2D)context).getFontRenderContext());
375 return font.getMaxCharBounds( gRC );
379 * Returns a {@link LineMetrics} object constructed with the
380 * specified text and the {@link FontRenderContext} of the Graphics
381 * object when it is an instance of Graphics2D or a generic
382 * FontRenderContext with a null transform, not anti-aliased and not
383 * using fractional metrics.
385 * @param ci An iterator over the string to calculate metrics from.
386 * @param begin Index of first character in <code>text</code> to measure.
387 * @param limit Index of last character in <code>text</code> to measure.
388 * @param g The Graphics object that will be used.
390 * @return A new {@link LineMetrics} object.
392 * @throws IndexOutOfBoundsException if the range [begin, limit] is
393 * invalid in <code>text</code>.
395 public LineMetrics getLineMetrics(CharacterIterator ci, int begin,
396 int limit, Graphics g)
398 FontRenderContext rc;
399 if (g instanceof Graphics2D)
400 rc = ((Graphics2D) g).getFontRenderContext();
401 else
402 rc = gRC;
403 return font.getLineMetrics(ci, begin, limit, rc);
406 public Rectangle2D getStringBounds(String str, Graphics context)
408 return font.getStringBounds(str, getFontRenderContext(context));
411 public Rectangle2D getStringBounds(String str, int beginIndex, int limit,
412 Graphics context)
414 return font.getStringBounds(str, beginIndex, limit,
415 getFontRenderContext(context));
418 public Rectangle2D getStringBounds(char[] chars, int beginIndex, int limit,
419 Graphics context)
421 return font.getStringBounds(chars, beginIndex, limit,
422 getFontRenderContext(context));
425 public Rectangle2D getStringBounds(CharacterIterator ci, int beginIndex,
426 int limit, Graphics context)
428 return font.getStringBounds(ci, beginIndex, limit,
429 getFontRenderContext(context));
432 private FontRenderContext getFontRenderContext(Graphics context)
434 if (context instanceof Graphics2D)
435 return ((Graphics2D) context).getFontRenderContext();
437 return gRC;
441 * Returns if the font has uniform line metrics.
442 * @see Font#hasUniformLineMetrics()
444 public boolean hasUniformLineMetrics()
446 return font.hasUniformLineMetrics();