Package com.inductiveautomation.snap.gfx
Class SnapFontFile
java.lang.Object
com.inductiveautomation.snap.gfx.SnapFontFile
This class represents all the information about a font that is independent of size. This allows SnapFont to be
lighter weight (essentially just a font file at a given size).
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canDisplay
(char aChar) Returns if this font can display the given char.double
charAdvance
(char aChar) Returns the char advance for the given char.double
charKern
(char aChar1, char aChar2) Returns the kerning for the given pair of characters (no way to do this in Java!).getBold()
Returns the bold version of this font.Returns the family name of this font.Returns the family name of this font in English.static SnapFontFile
getFontFile
(String aName) Returns a font file for a given font name.Returns the name of this font.Returns the name of this font in English.double
Returns the height of this font file.Returns the italic version of this font.double
Returns the default distance between lines for this font.double
Returns the distance from the top of a line of text to the to top of a successive line of text.double
Returns the height of a line of text in this font.double
Returns the max advance of characters in this font.double
Returns the max distance above the baseline that this font goes.double
Returns the max distance below the baseline that this font goes.Returns the PostScript name of this font.double
Returns the distance above the baseline that a strikethrough should be drawn.double
Returns the distance below the baseline that an underline should be drawn.double
Returns the default thickness that an underline should be drawn.boolean
isBold()
Returns whether this font is considered bold.boolean
isItalic()
Returns whether this font is considered italic.toString()
Returns the font name of this font file.
-
Method Details
-
getFontFile
Returns a font file for a given font name. -
getFontName
Returns the name of this font. -
getFontNameEnglish
Returns the name of this font in English. -
getFamily
Returns the family name of this font. -
getFamilyEnglish
Returns the family name of this font in English. -
getPSName
Returns the PostScript name of this font. -
charAdvance
public double charAdvance(char aChar) Returns the char advance for the given char. -
charKern
public double charKern(char aChar1, char aChar2) Returns the kerning for the given pair of characters (no way to do this in Java!). -
getMaxAscent
public double getMaxAscent()Returns the max distance above the baseline that this font goes. -
getMaxDescent
public double getMaxDescent()Returns the max distance below the baseline that this font goes. -
getLeading
public double getLeading()Returns the default distance between lines for this font. -
getHeight
public double getHeight()Returns the height of this font file. -
getLineHeight
public double getLineHeight()Returns the height of a line of text in this font. -
getLineAdvance
public double getLineAdvance()Returns the distance from the top of a line of text to the to top of a successive line of text. -
getMaxAdvance
public double getMaxAdvance()Returns the max advance of characters in this font. -
getUnderlineOffset
public double getUnderlineOffset()Returns the distance below the baseline that an underline should be drawn. -
getUnderlineThickness
public double getUnderlineThickness()Returns the default thickness that an underline should be drawn. -
getStrikethroughOffset
public double getStrikethroughOffset()Returns the distance above the baseline that a strikethrough should be drawn. -
isBold
public boolean isBold()Returns whether this font is considered bold. -
isItalic
public boolean isItalic()Returns whether this font is considered italic. -
canDisplay
public boolean canDisplay(char aChar) Returns if this font can display the given char. -
getBold
Returns the bold version of this font. -
getItalic
Returns the italic version of this font. -
toString
Returns the font name of this font file.
-