Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How To Calculate Dialog Base Units with Non-System-Based Font


View products that this article applies to.

Summary

This article demonstrates how to calculate the dialog base unit for the dialog box using a font other than System Font in Windows 95. You can use this calculation to build dialog box templates in memory or calculate dialog box dimensions.

↑ Back to the top


More information

Each dialog box template contains measurements that specify the position, width, and height of the dialog box and the controls it contains. These measurements are device-independent, so an application can use a single template to create the same dialog box for all types of display devices. This ensures that a dialog box will have the same proportions and appearance on all screens despite differing resolutions and aspect ratios between screens.

Further, dialog box measurements are given in dialog base units. One horizontal base unit is equal to one-fourth of the average character width for the system font. One vertical base unit is equal to one-eighth of the average character height for the system font. An application can retrieve the number of pixels per base unit for the current display by using the GetDialogBaseUnits function. The low-order word of the return value, from the GetDialogBaseUnits function, contains the horizontal base units and the high-order word of the return value, from the GetDialogBaseUnits function, contains the vertical base units.

Using this information, you can compute the dialog base units for a dialog box using font other than system font:
horz pixels == 2 * horz dialog units * (average char width  of dialog font
                        / average char width of system font)
vert pixels == 2 * vert dialog units * (average char height of dialog font
                        / average char height of system font)
				
As the font of a dialog box changes, the actual size and position of a control also changes.

One dialog box base unit is equivalent to the number of pixels per dialog box unit as follows:
1 horz dialog base unit == (2 * average char width  dialog font / 
                                average char width  system font) pixels
1 vert dialog base unit == (2 * average char height dialog font / 
                                average char height system font) pixels
				
Average character width and height of a font can be computed as follows:
hFontOld = SelectObject(hdc,hFont);
GetTextMetrics(hdc,&tm);
GetTextExtentPoint32(hdc,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrst"
            "uvwxyz",52,&size);
avgWidth = (size.cx/26+1)/2;
avgHeight = (WORD)tm.tmHeight;
				
The tmAveCharWidth field of the TEXTMETRIC structure only approximates the actual average character width (usually it gives the width of the letter "x") and so the true average character width must be calculated to match the value used by the system.

You can use the MapDialogRect function to convert dialog box units into pixels, but there is no function that will convert pixels into dialog box units. You can use the formulas shown here to perform this conversion.

↑ Back to the top


References

For more information on this topic, please see the following article in the Microsoft Knowledge Base:
145994 How To Calculate Dialog Units When Not Using the System Font

↑ Back to the top


Keywords: kbdlg, kbhowto, KB125681

↑ Back to the top

Article Info
Article ID : 125681
Revision : 5
Created on : 7/11/2005
Published on : 7/11/2005
Exists online : False
Views : 382