Select the product you need help with
How To Calculate Dialog Base Units with Non-System-Based FontArticle ID: 125681 - View products that this article applies to. This article was previously published under Q125681 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.
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)
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
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. REFERENCES
For more information on this topic, please see the following article in the Microsoft Knowledge Base:
145994
(http://support.microsoft.com/kb/145994/EN-US/
)
How To Calculate Dialog Units When Not Using the System Font
Properties | Article Translations |


Back to the top








