|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--net.rim.device.api.ui.Font
Encapsulates a specific set of character glyphs.
Font also contains metrics, since rendering characteristics are not
abstracted on small device platforms. Currently, the font system assumes that
all Fonts have roman baselines (characters read horizontally, and bottom
align on the baseline).
Font construction
Characters are layed out as follows. The nearby diagram shows the pixels
consumed by two glyhps ('Ig'). Notice that each glyph consumes pixels that
are never used to draw the glyph itself. A line of one pixel along the top is
used for the line leading (to ensure vertical space between lines of
glyphs). In addtion, each glyph also has one or more columns of empty pixels
to its right reserved to preserve horizontal space between glyphs.
The horizontal space taken up by the glyph itself is called the glyph width. More important is the total width used to display the glyph, called the advance.
The total vertical space used to display the glyph (the block height is equal to the leading plus the ascent (the space reserved to draw the glyph above the baseline) plus the descent (the space reserved to draw the glyph below the baseline). Notice that even glyphs that do not use any descent pixels still reserve them to preserve the baseline position across a line of text.
Font sizes always refer to the font's block height (in the case of the shown example, 10), and are always measured in pixels.
Italic text
Note that the blocks of italic glyphs form a parallelogram, not a
rectangle. The blocks lean over to ensure that italic characters positioned
next to one another kern properly. However, the advance of the glyph is
still the distance between one side of the block and the other (and
not measured from bottom-left across to a vertical line dropped from
top-right corner).
This means that a non-italic glyph rendered just right of an italic glyph may occlude the leaning corner of the italic glyph.
| Field Summary | ||
static int |
APPLICATION
In a global event, check this flag to see if the change was an application or a global one. |
|
static int |
BOLD
Bold font style modifier |
|
static int |
DOTTED_UNDERLINED
Dotted underlined font style modifier (UNDERLINED must be specified as well) |
|
static long |
GUID_FONT_CHANGED
The GUID for the global event sent when the system font changes. |
|
static int |
ITALIC
Italic font style modifier |
|
static int |
PLAIN
Plain font style |
|
static int |
UNDERLINED
Underlined font style modifier |
|
| Method Summary | ||
Font |
derive(int style)
Derives a font with a given style and the current size. |
|
Font |
derive(int style,
int height)
Derives a font of a given style and size. |
|
abstract int |
getAdvance(char ch)
Determines particular glyph advance. |
|
abstract int |
getAdvance(char[] text,
int offset,
int length)
Determines width of a character array's substring. |
|
int |
getAdvance(String text)
Determines advance of a text string. |
|
abstract int |
getAdvance(StringBuffer text,
int offset,
int length)
Determines width of a string buffer's substring. |
|
abstract int |
getAdvance(String text,
int offset,
int length)
Determines width of a text string's substring. |
|
int |
getAscent()
Retrieves this font's ascent height. |
|
int |
getBaseline()
Retrieve this font's baseline position. |
|
static Font |
getDefault()
Retrieves the default font. |
|
int |
getDescent()
Retrieves this font's descender height. |
|
FontFamily |
getFontFamily()
Retrieves the font family containing this font. |
|
int |
getHeight()
Retrieves this font's height. |
|
int |
getLeading()
Retrieve this font's leading. |
|
int |
getStyle()
Retrieves this font's style. |
|
boolean |
isBold()
Indicates if this font is bold. |
|
boolean |
isItalic()
Indicates if this font is italic. |
|
boolean |
isPlain()
Indicates if this font is plain. |
|
boolean |
isUnderlined()
Indicates if this font is underlined. |
|
static void |
setDefaultFont(Font defaultFont)
Sets the default font for this application. |
|
String |
toString()
Retrieves font name as a string. |
|
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final int DOTTED_UNDERLINED
public static final long GUID_FONT_CHANGED
public static final int APPLICATION
| Method Detail |
public Font derive(int style)
Use derive to retrieve a new font derived
from this font. For isntance, if this font is a plain
font, you can retrieve the bold version with
derive(this.BOLD).
This method doesn't make up new fonts out of whole cloth: if the font doesn't already exist in the system, then this method simply returns this font.
style - New style desired.public Font derive(int style, int height)
Like derive(int), except you can also
specify a new font size as well as style.
style - New style desired.height - New height desired.derive(int)public int getAscent()
Use this method to retrieve the height, in pixels, reserved for drawing glyphs above the baseline.
public int getBaseline()
Use this method to retrieve the position of this font's baseline, in pixels from the top of the font.
Notice that
this.getBaseline - this.getAscent
produces the amount of leading at the top of this font.
public static Font getDefault()
If the current application doesn't have a default font, it automatically inherits (and this method returns) the current system font.
public int getDescent()
Use this method to retrieve the height, in pixels, reserved for drawing glyphs below the baseline.
public FontFamily getFontFamily()
public int getHeight()
Use this method to retrieve this font's "block" height (the drawing area for glyphs plus the leading).
public int getLeading()
Use this method to retrieve this font's leading (pixels in font blocks reserved for inter-line spacing). In our font system, a font's leading height is drawn at the top of the font "block" height.
public int getStyle()
Use this method to retrieve a bitfield formed from a
combination of font style modifiers (BOLD,
ITALIC, PLAIN,
UNDERLINED).
isBold(),
isItalic(),
isPlain()public abstract int getAdvance(char ch)
Use this method to determine the advance (in pixels) of a specified glyph in this font's character set.
ch - Character glyph for which to calculate width.public final int getAdvance(String text)
Use this method to calculate the advance (in pixels) of a provided string drawn with this font.
text - String for which to calculate width (may be null).public abstract int getAdvance(String text, int offset, int length) throws IllegalArgumentException
Use this method to calculate the advance (in pixels) of a substring drawn with this font.
text - String for which to calculate a width (may be null).offset - Character offset into the string to use as
start of substring.length - Length of substring.IllegalArgumentException - If substring specified with
offset/length parameters wouldn't fit in provided string.public abstract int getAdvance(StringBuffer text, int offset, int length) throws IllegalArgumentException
Use this method to calculate the width (in pixels) of a substring of a string buffer in this font's character set.
Subclasses must implement this method as appropriate for their
glyphs. Implementations should throw
ArrayIndexOutOfBoundsException for substrings that violate the
length of the string buffer.
text - String buffer for which to calculate a width (may be null).offset - Character offset into the string buffer to use as start of
substring.length - Length of substring.IllegalArgumentException - If substring specified with
offset/length parameters wouldn't fit in provided string.
public abstract int getAdvance(char[] text,
int offset,
int length)
throws IllegalArgumentException
Use this method to calculate the width (in pixels) of a substring of a character array in this font's character set.
Subclasses must implement this method as appropriate for their
glyphs. Implementations should throw
ArrayIndexOutOfBoundsException for substrings that violate the
length of the string buffer.
text - Character arry for which to calculate a width (may be null).offset - Array element to use as start of substring.length - Length of substring.IllegalArgumentException - If substring specified with
offset/length parameters wouldn't fit in provided string.public boolean isBold()
public boolean isItalic()
public boolean isUnderlined()
public boolean isPlain()
public static void setDefaultFont(Font defaultFont)
defaultFont - Font to set as default; if null, application inherits
the default system font.public String toString()
You should not use this method to compare two fonts, particularly because the style value is internationalized and therefore changes from locale to locale.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
Copyright 1999-2002 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.