Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

A font chooser dialog for the Pocket PC

0.00/5 (No votes)
16 Aug 2003 1  
Implementing a font chooser dialog with preview and ClearType support.

Sample Image - CeChooseFont.jpg

Introduction

This article describes the implementation of a font chooser dialog for the Pocket PC, with the following features:

  • Font rendering preview
  • ClearType support
  • Property page implementation

The dialog layout was based on Pocket Excel's, and allows you to use the dialog with the SIP up.

Implementation

The dialog was implemented as a property page so you can use it in your own property sheets without change. The demo project uses my own CCePropertySheet class to encapsulate it.

The class uses two public members for interfacing with the user:

  • m_logFont: a LOGFONT variable that receives and returns the font definition. You can use it immediately in CreateFontIndirect.
  • m_strPreview: a CString variable that receives the text you want to render on the preview. By default it is "AaBbCcXxYyZz".

Font enumeration

Font families are enumerated through a call to EnumFontFamilies. This function receives a callback function pointer that will fill up the font combo box. When the dialog is initialized, it tries to match the font specified in m_logFont with the contents of the combo boxes. If it cannot match the font name and size, the dialog will set both name and size in the proper combo boxes. The dialog is not prepared to receive a clean m_logFont, you must fill it in before using the dialog.

ClearType

ClearType support depends on your system supporting it. Please check with your vendor if your device supports ClearType.

Creating a font with the ClearType property is as simple as specifying 5 as the lfQuality member of the LOGFONT structure.

Using the dialog

Using the dialog is very straightforward:

void CChildView::OnChooseFont() 
{
    CCePropertySheet    sheet(_T("Choose Font"));
    CChooseFontPage        page;

    //
    // Create the default font
    //
    page.m_logFont.lfHeight            = -11;
    page.m_logFont.lfWidth            = 0;
    page.m_logFont.lfEscapement        = 0;
    page.m_logFont.lfOrientation    = 0;
    page.m_logFont.lfWeight            = FW_NORMAL;
    page.m_logFont.lfItalic            = FALSE;
    page.m_logFont.lfUnderline        = FALSE;
    page.m_logFont.lfStrikeOut        = 0;
    page.m_logFont.lfCharSet        = ANSI_CHARSET;
    page.m_logFont.lfOutPrecision    = OUT_DEFAULT_PRECIS;
    page.m_logFont.lfClipPrecision    = CLIP_DEFAULT_PRECIS;
    page.m_logFont.lfQuality        = DEFAULT_QUALITY;
    page.m_logFont.lfPitchAndFamily = DEFAULT_PITCH | FF_SWISS;
    _tcscpy(page.m_logFont.lfFaceName, TEXT("Tahoma"));

    sheet.AddPage(&page);

    sheet.DoModal();
}

On exit, the m_logFont variable will have the new font definition, ready to be used.

Adding new fonts

Adding new fonts to your device is simple: just copy the desktop TrueType font files you wish to the device's \Windows\Fonts folder. They will be readily available.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here