2003/11/22 06:44:38
[org.ibex.core.git] / src / org / xwt / Font.java
index 19c1a5c..0de8204 100644 (file)
@@ -63,7 +63,7 @@ public class Font {
             if (g.p == null) {
                 glyphsToBeRendered.prepend(g);
                 encounteredUnrenderedGlyph = true;
-            } else {
+            } else if (!encounteredUnrenderedGlyph) {
                 if (pb != null && g.p != null)
                     pb.drawPictureAlphaOnly(g.p, x + width, y + g.font.max_ascent - g.baseline, cx1, cy1, cx2, cy2, textcolor);
                 width += g.advance;
@@ -78,9 +78,14 @@ public class Font {
             }
             callback.perform();
         }});
-        if (!latinCharsPreloaded) for(int i=32; i<128; i++) glyphsToBeRendered.append(glyphs[i] = new Glyph((char)i, this));
+        if (!latinCharsPreloaded) {
+            for(int i=48; i<57; i++) glyphsToBeRendered.append(glyphs[i] = new Glyph((char)i, this));
+            for(int i=32; i<47; i++) glyphsToBeRendered.append(glyphs[i] = new Glyph((char)i, this));
+            for(int i=57; i<128; i++) glyphsToBeRendered.append(glyphs[i] = new Glyph((char)i, this));
+        }
         if (!latinCharsPreloaded || encounteredUnrenderedGlyph) Scheduler.add(glyphRenderingTask);
         latinCharsPreloaded = true;
+        if (encounteredUnrenderedGlyph) return -1;
         return ((((long)width) << 32) | (long)(height & 0xffffffffL));
     }