Lines Matching refs:PhysicalFont

164     private ConcurrentHashMap<String, PhysicalFont>
165 physicalFonts = new ConcurrentHashMap<String, PhysicalFont>();
166 private ConcurrentHashMap<String, PhysicalFont>
167 registeredFonts = new ConcurrentHashMap<String, PhysicalFont>();
183 private PhysicalFont defaultPhysicalFont;
607 PhysicalFont oldFont = oldComp.getSlotFont(0);
617 if (!(newFont instanceof PhysicalFont)) {
620 PhysicalFont physicalFont = (PhysicalFont)newFont;
743 protected PhysicalFont addToFontList(PhysicalFont f, int rank) {
772 PhysicalFont newFont = f;
773 PhysicalFont oldFont = physicalFonts.get(fontName);
868 PhysicalFont[] physFonts = getPhysicalFonts();
876 protected PhysicalFont[] getPhysicalFonts() {
877 return physicalFonts.values().toArray(new PhysicalFont[0]);
953 /*private*/ PhysicalFont findJREDeferredFont(String name, int style) {
955 PhysicalFont physicalFont;
1026 private PhysicalFont findOtherDeferredFont(String name, int style) {
1036 PhysicalFont physicalFont = initialiseDeferredFont(fileName);
1047 private PhysicalFont findDeferredFont(String name, int style) {
1049 PhysicalFont physicalFont = findJREDeferredFont(name, style);
1071 PhysicalFont initialiseDeferredFont(String fileNameKey) {
1081 PhysicalFont physicalFont;
1107 physicalFont = (PhysicalFont)(handle.font2D);
1117 public PhysicalFont getRegisteredFontFile(String name) {
1125 public PhysicalFont registerFontFile(String fileName,
1131 PhysicalFont regFont = registeredFonts.get(fileName);
1136 PhysicalFont physicalFont = null;
1148 PhysicalFont pf = addToFontList(ttf, fontRank);
1209 public PhysicalFont getDefaultPhysicalFont() {
1218 defaultPhysicalFont = (PhysicalFont)
1221 defaultPhysicalFont = (PhysicalFont)
1233 defaultPhysicalFont = (PhysicalFont)i.next();
1537 PhysicalFont f = registerFontFile(getPathName(pathFile));
1766 PhysicalFont pf =
1871 private PhysicalFont registerFontFile(String file) {
2027 PhysicalFont physicalFont = null;
2552 PhysicalFont[] physFonts = getPhysicalFonts();
2570 * crashing This code assumes a PhysicalFont parameter as it doesn't
2574 if (!(font2D instanceof PhysicalFont)) {
2582 replaceFont((PhysicalFont)font2D, getDefaultPhysicalFont());
2590 public synchronized void replaceFont(PhysicalFont oldFont,
2591 PhysicalFont newFont) {
2606 PhysicalFont[] physFonts = getPhysicalFonts();