Article ID: 145994 - Last Review: November 21, 2006 - Revision: 4.1 How to calculate dialog box units based on the current font in Visual C++This article was previously published under Q145994 Note Microsoft Visual C++ .NET (2002) supports both the managed code
model that is provided by the Microsoft .NET Framework and the unmanaged native
Microsoft Windows code model. The information in this article applies only to
unmanaged Visual C++ code. On This PageSUMMARY GetDialogBaseUnits() always assumes the system font when
calculating dialog units. If you are using any font other than the system font,
the return value may not be correct for your dialog box. This article offers
two alternatives you can use to calculate dialog box units based on the current
font. MORE INFORMATION The horizontal base unit is equal to the average width (in
pixels) of the characters in the system font. The Help for GetDialogBaseUnits()
suggests the following code for calculating the correct units: However, if you aren't using the system font, you need to do some additional calculations to get the right coordinates. Here are two methods: Method OneThe vertical dialog box unit is equivalent to the character height. The horizontal dialog box unit is equivalent to the average character width of the dialog box's font. The average character width is calculated by finding the average text extent of the alphabetic character set. This is necessary because tmAveCharWidth is not precise. Use this code:Method TwoThe alternative is even easier. Using MapDialogRect() with a coordinate of x = 4, y = 8 will return the dialog box base units regardless of the dialog box's font. However, in most situations, the programmer doesn't need to know the dialog box base units. MapDialogRect() can be used directly to convert any dialog box units directly to device coordinates. The following sample code shows how it can be used to find the dialog box base units:REFERENCES For additional information, please see the following
article in the Microsoft Knowledge Base: 125681
(http://support.microsoft.com/kb/125681/EN-US/
)
How To Calculate Dialog Base Units with Non-System-Based Font
APPLIES TO
| Article Translations
|
Back to the top
