Lines Matching refs:font
32 import java.awt.font.*;
42 final Font font = new Font(EXTB_FONT, Font.PLAIN, 36);
43 if (!EXTB_FONT.equalsIgnoreCase(font.getFamily(Locale.ENGLISH))) {
51 Component c = new SuppCharComp(font, str);
54 b.setFont(font);
67 GlyphVector gv = font.createGlyphVector(frc, str);
82 if (font.canDisplayUpTo(str) != -1) {
97 Font font = null;
98 public SuppCharComp(Font font, String str) {
99 this.font = font;
113 g2d.setFont(font);
117 GlyphVector gv = font.createGlyphVector(frc, str);
119 TextLayout tl = new TextLayout(str, font, frc);