Recently, I needed to know which chars (glyphs) are supported by a Windows Mobile font. I looked around for a charmap tool like we have on Windows Desktop PCs, and was unable to find one. So I started this little tool: CharmapCF
.

As you can see, you get a simple charmap
and can verify which glyphs are supported and which are not (square rectangle).
CharmapCF
supports only UCS-2, UTF-16 as used by Microsoft’s Encoding.Unicode
class. So it also only supports the Unicode Basic Multilanguage Plane (BMP).
When you click on a glyph, you will get the Unicode codepoint displayed in the title and the char
is placed in the small text box in the upper right. Using the [c] button, you copy the Unicode char to the clipboard and paste it in another app.

In the above screenshot, you can see that I have copied ARIALUNI.TTF from my desktop PC into the \Windows\Fonts dir of the device and can use the font in CharmapCF
.
What can also be seen here is that the table is zoomed in. You can use the Options menu to zoom the table in or out.

Here you can see that Tahoma does only support some of the glyphs.

Above is simply a Wingdings glyphs char.
There is nothing special in the code. Maybe you will find the font enumeration code useful:
private int EnumFontFamiliesExProc(IntPtr lpelfe, IntPtr lpntme,
EnumFontsType FontType, int lParam)
{
LOGFONT logFont = (LOGFONT)Marshal.PtrToStructure(lpelfe, typeof(LOGFONT));
if (logFont.lfWeight == lfWeightType.FW_REGULAR && logFont.lfItalic==0)
{
if(!fontNames.Contains(logFont.lfFaceName))
fontNames.Add(logFont.lfFaceName);
System.Diagnostics.Debug.WriteLine(logFont.lfFaceName);
}
return 1;
}
private void buildList(){
IntPtr hwnd = GetDesktopWindow();
IntPtr hdc = GetDC(hwnd);
LOGFONT logFont = new LOGFONT();
enumFontDelegate = new EnumFontDelegate(EnumFontFamiliesExProc);
fpEnumProc = Marshal.GetFunctionPointerForDelegate(enumFontDelegate);
EnumFontFamilies(hdc, null, fpEnumProc, IntPtr.Zero);
List<string> fontFamilies = new List<string>();
fontFamilies.AddRange(fontNames);
fontNames.Clear();
foreach(string fontFamily in fontFamilies)
{
EnumFontFamilies(hdc, fontFamily, fpEnumProc, IntPtr.Zero);
}
ReleaseDC(hdc);
foreach(string s in fontNames)
{
}
}
One interesting behavior of the Windows font system is shown when you select the Font “Fantasie
” from the fonts listbox
. You will see Windows chooses another font for you (see label on right of the listbox
showing the active font).
The rest of the code implements some drawing routines. I have used a class based on Panel
, so I can easily move and resize the charmap
.