CCharSetBtn Control
Environment: VC6 SP4, NT4 SP3
I needed a control to choose a character from a specific charset and the options to use bold and/or italic font. Therefore I derived an ownerdrawn control from CButton based on the work of Shekar Narayanan and S. D. Rajan which opens a popup dialog as a drop-down window. The Dialog itself holds a ComboBox derived font-ComboBox (which includes some code-snippets of Norm Almond) and a custom control which performs the character selection.
To use the control, do the following:
- Import the header files (including in the attached source code) and add the .cpp files (also attached to this article) from the section CharSetBtn.
- Import the resources IDB_GLYPHS (printer-images) and IDD_CHARSET_DLG (the popup-window including the CharSetCtrl).
- On your dialog insert a button (set style-flag ownerdraw).
- Add a CButton control-member-variable in the class-wizard. Change the CButton class in the dialog-header-file to CCharSetBtn and that's it.
The class CCharSetBtn has got the member-variables
int m_nChar; CString m_strFaceName; BOOL m_bItalic; BOOL m_bBold;
which perform the data-exchange.
With a little modification you can also use the complete LOFGONT structure.
If you decide to use this code please do not remove copyright notices from the source and header files and give me a short e-mail.
Downloads
Download demo project - 40 KbDownload source - 29 Kb

Comments
very good
Posted by Legacy on 12/21/2001 12:00amOriginally posted by: hhk
i m so glad to read this article
ReplyA tip for you
Posted by Legacy on 09/26/2001 12:00amOriginally posted by: Rui Lopes
You don't need to declare a new windowproc. You can handle the WM_ACTIVATE message in the CCharSetDlg message-map.
Rui Lopes
ReplyPS: Relpy also to my email.
thanx, I learned something new :-)
Posted by Legacy on 09/20/2001 12:00amOriginally posted by: Dieter Hammer
the way to close a dialog, when the user clicks outside, with the >NewWndProc< is super. I used SetCapture for this, but this way is better and easier. Good idea!
Reply