Package com.inductiveautomation.snap.gfx
Class SnapFontFile
- java.lang.Object
- 
- com.inductiveautomation.snap.gfx.SnapFontFile
 
- 
 public class SnapFontFile extends java.lang.ObjectThis 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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanDisplay(char aChar)Returns if this font can display the given char.doublecharAdvance(char aChar)Returns the char advance for the given char.doublecharKern(char aChar1, char aChar2)Returns the kerning for the given pair of characters (no way to do this in Java!).SnapFontFilegetBold()Returns the bold version of this font.java.lang.StringgetFamily()Returns the family name of this font.java.lang.StringgetFamilyEnglish()Returns the family name of this font in English.static SnapFontFilegetFontFile(java.lang.String aName)Returns a font file for a given font name.java.lang.StringgetFontName()Returns the name of this font.java.lang.StringgetFontNameEnglish()Returns the name of this font in English.doublegetHeight()Returns the height of this font file.SnapFontFilegetItalic()Returns the italic version of this font.doublegetLeading()Returns the default distance between lines for this font.doublegetLineAdvance()Returns the distance from the top of a line of text to the to top of a successive line of text.doublegetLineHeight()Returns the height of a line of text in this font.doublegetMaxAdvance()Returns the max advance of characters in this font.doublegetMaxAscent()Returns the max distance above the baseline that this font goes.doublegetMaxDescent()Returns the max distance below the baseline that this font goes.java.lang.StringgetPSName()Returns the PostScript name of this font.doublegetStrikethroughOffset()Returns the distance above the baseline that a strikethrough should be drawn.doublegetUnderlineOffset()Returns the distance below the baseline that an underline should be drawn.doublegetUnderlineThickness()Returns the default thickness that an underline should be drawn.booleanisBold()Returns whether this font is considered bold.booleanisItalic()Returns whether this font is considered italic.java.lang.StringtoString()Returns the font name of this font file.
 
- 
- 
- 
Method Detail- 
getFontFilepublic static SnapFontFile getFontFile(java.lang.String aName) Returns a font file for a given font name.
 - 
getFontNamepublic java.lang.String getFontName() Returns the name of this font.
 - 
getFontNameEnglishpublic java.lang.String getFontNameEnglish() Returns the name of this font in English.
 - 
getFamilypublic java.lang.String getFamily() Returns the family name of this font.
 - 
getFamilyEnglishpublic java.lang.String getFamilyEnglish() Returns the family name of this font in English.
 - 
getPSNamepublic java.lang.String getPSName() Returns the PostScript name of this font.
 - 
charAdvancepublic double charAdvance(char aChar) Returns the char advance for the given char.
 - 
charKernpublic double charKern(char aChar1, char aChar2)Returns the kerning for the given pair of characters (no way to do this in Java!).
 - 
getMaxAscentpublic double getMaxAscent() Returns the max distance above the baseline that this font goes.
 - 
getMaxDescentpublic double getMaxDescent() Returns the max distance below the baseline that this font goes.
 - 
getLeadingpublic double getLeading() Returns the default distance between lines for this font.
 - 
getHeightpublic double getHeight() Returns the height of this font file.
 - 
getLineHeightpublic double getLineHeight() Returns the height of a line of text in this font.
 - 
getLineAdvancepublic double getLineAdvance() Returns the distance from the top of a line of text to the to top of a successive line of text.
 - 
getMaxAdvancepublic double getMaxAdvance() Returns the max advance of characters in this font.
 - 
getUnderlineOffsetpublic double getUnderlineOffset() Returns the distance below the baseline that an underline should be drawn.
 - 
getUnderlineThicknesspublic double getUnderlineThickness() Returns the default thickness that an underline should be drawn.
 - 
getStrikethroughOffsetpublic double getStrikethroughOffset() Returns the distance above the baseline that a strikethrough should be drawn.
 - 
isBoldpublic boolean isBold() Returns whether this font is considered bold.
 - 
isItalicpublic boolean isItalic() Returns whether this font is considered italic.
 - 
canDisplaypublic boolean canDisplay(char aChar) Returns if this font can display the given char.
 - 
getBoldpublic SnapFontFile getBold() Returns the bold version of this font.
 - 
getItalicpublic SnapFontFile getItalic() Returns the italic version of this font.
 - 
toStringpublic java.lang.String toString() Returns the font name of this font file.- Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-