public static final int MONO = 100;
public static final int CHARCELL = 110;
+ /* Special glyph codes. */
+ public static final int FONT_INVALID_CODE = 0xFFFFFFFF;
+
+\f
+
public static class FontSpec
{
/* The fields below mean the same as they do in enum
}
};
+\f
+
/* These mean the same as they do in struct font_driver. */
public abstract FontEntity[] list (FontSpec fontSpec);
public abstract FontEntity match (FontSpec fontSpec);
public abstract String[] listFamilies ();
public abstract FontObject openFont (FontEntity fontEntity, int pixelSize);
- public abstract int hasChar (FontSpec font, char charCode);
+ public abstract int hasChar (FontSpec font, int charCode);
public abstract void textExtents (FontObject font, int code[],
FontMetrics fontMetrics);
- public abstract int encodeChar (FontObject fontObject, char charCode);
+ public abstract int encodeChar (FontObject fontObject, int charCode);
public abstract int draw (FontObject fontObject, EmacsGC gc,
EmacsDrawable drawable, int[] chars,
int x, int y, int backgroundWidth,
@Override
public int
- hasChar (FontSpec font, char charCode)
+ hasChar (FontSpec font, int charCode)
{
Sdk7FontObject fontObject;
Paint paint;
else
paint = ((Sdk7FontEntity) font).typeface.typefacePaint;
- return paint.hasGlyph (String.valueOf (charCode)) ? 1 : 0;
+ /* If the character falls within the confines of the BMP, return
+ 1. */
+ if (charCode < 65536)
+ return paint.hasGlyph (String.valueOf ((char) charCode)) ? 1 : 0;
+
+ /* Otherwise return 0. */
+ return 0;
}
};
@Override
public int
- hasChar (FontSpec font, char charCode)
+ hasChar (FontSpec font, int charCode)
{
float missingGlyphWidth, width;
Rect rect1, rect2;
Paint paint;
Sdk7FontObject fontObject;
+ /* Ignore characters outside the BMP. */
+
+ if (charCode > 65535)
+ return 0;
+
if (font instanceof Sdk7FontObject)
{
fontObject = (Sdk7FontObject) font;
paint.setTextSize (10);
- if (Character.isWhitespace (charCode))
+ if (Character.isWhitespace ((char) charCode))
return 1;
missingGlyphWidth = paint.measureText (TOFU_STRING);
paint.getTextBounds (TOFU_STRING, 0, TOFU_STRING.length (),
rect1);
- paint.getTextBounds ("" + charCode, 0, 1, rect2);
+ paint.getTextBounds ("" + (char) charCode, 0, 1, rect2);
return rect1.equals (rect2) ? 0 : 1;
}
@Override
public int
- encodeChar (FontObject fontObject, char charCode)
+ encodeChar (FontObject fontObject, int charCode)
{
+ if (charCode > 65535)
+ return FONT_INVALID_CODE;
+
return charCode;
}
FIND_METHOD (open_font, "openFont", "(Lorg/gnu/emacs/EmacsFontDriver$Font"
"Entity;I)Lorg/gnu/emacs/EmacsFontDriver$FontObject;");
FIND_METHOD (has_char, "hasChar", "(Lorg/gnu/emacs/EmacsFontDriver$Font"
- "Spec;C)I");
+ "Spec;I)I");
FIND_METHOD (text_extents, "textExtents", "(Lorg/gnu/emacs/EmacsFontDriver"
"$FontObject;[ILorg/gnu/emacs/EmacsFontDriver$FontMetrics;)V");
FIND_METHOD (encode_char, "encodeChar", "(Lorg/gnu/emacs/EmacsFontDriver"
- "$FontObject;C)I");
+ "$FontObject;I)I");
FIND_METHOD (draw, "draw", "(Lorg/gnu/emacs/EmacsFontDriver$FontObject;"
"Lorg/gnu/emacs/EmacsGC;Lorg/gnu/emacs/EmacsDrawable;[IIIIZ)I");