На главную

On-line справка по Win32 API

Написать письмо
БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО!
Список всех статей A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z | Скачать Вниз

LOGFONT



The LOGFONT structure defines the attributes of a font.

typedef struct tagLOGFONT { // lf
LONG lfHeight;
LONG lfWidth;
LONG lfEscapement;
LONG lfOrientation;
LONG lfWeight;
BYTE lfItalic;
BYTE lfUnderline;
BYTE lfStrikeOut;
BYTE lfCharSet;
BYTE lfOutPrecision;
BYTE lfClipPrecision;
BYTE lfQuality;
BYTE lfPitchAndFamily;
TCHAR lfFaceName[LF_FACESIZE];
} LOGFONT;


Members

lfHeight

Specifies the height, in logical units, of the font's character cell or character. The character height value (also known as the em height) is the character cell height value minus the internal-leading value. The font mapper interprets the value specified in lfHeight in the following manner:

Value Meaning
> 0 The font mapper transforms this value into device units and matches it against the cell height of the available fonts.
0 The font mapper uses a default height value when it searches for a match.
< 0 The font mapper transforms this value into device units and matches its absolute value against the character height of the available fonts.


For all height comparisons, the font mapper looks for the largest font that does not exceed the requested size.
This mapping occurs when the font is used for the first time.
For the MM_TEXT mapping mode, you can use the following formula to specify a height for a font with a given point size:

lfHeight = -MulDiv(PointSize, GetDeviceCaps(hDC, LOGPIXELSY), 72);


lfWidth

Specifies the average width, in logical units, of characters in the font. If lfWidth is zero, the aspect ratio of the device is matched against the digitization aspect ratio of the available fonts to find the closest match, determined by the absolute value of the difference.

lfEscapement

Specifies the angle, in tenths of degrees, between the escapement vector and the x-axis of the device. The escapement vector is parallel to the base line of a row of text.

Windows NT:

When the graphics mode is set to GM_ADVANCED, you can specify the escapement angle of the string independently of the orientation angle of the string's characters.
When the graphics mode is set to GM_COMPATIBLE, lfEscapement specifies both the escapement and orientation. You should set lfEscapement and lfOrientation to the same value.

Windows 95:

The lfEscapement member specifies both the escapement and orientation. You should set lfEscapement and lfOrientation to the same value.

lfOrientation

Specifies the angle, in tenths of degrees, between each character's base line and the x-axis of the device.

lfWeight

Specifies the weight of the font in the range 0 through 1000. For example, 400 is normal and 700 is bold. If this value is zero, a default weight is used.
The following values are defined for convenience:

Value Weight
FW_DONTCARE 0
FW_THIN 100
FW_EXTRALIGHT 200
FW_ULTRALIGHT 200
FW_LIGHT 300
FW_NORMAL 400
FW_REGULAR 400
FW_MEDIUM 500
FW_SEMIBOLD 600
FW_DEMIBOLD 600
FW_BOLD 700
FW_EXTRABOLD 800
FW_ULTRABOLD 800
FW_HEAVY 900
FW_BLACK 900


lfItalic

Specifies an italic font if set to TRUE.

lfUnderline

Specifies an underlined font if set to TRUE.

lfStrikeOut

Specifies a strikeout font if set to TRUE.

lfCharSet

Specifies the character set. The following values are predefined:



ANSI_CHARSET
DEFAULT_CHARSET
SYMBOL_CHARSET
SHIFTJIS_CHARSET
GB2312_CHARSET
HANGEUL_CHARSET
CHINESEBIG5_CHARSET
OEM_CHARSET

Windows 95 only:

JOHAB_CHARSET
HEBREW_CHARSET
ARABIC_CHARSET
GREEK_CHARSET
TURKISH_CHARSET
THAI_CHARSET
EASTEUROPE_CHARSET
RUSSIAN_CHARSET
MAC_CHARSET
BALTIC_CHARSET

The OEM_CHARSET value specifies a character set that is operating-system dependent.
You can use the DEFAULT_CHARSET value to allow the name and size of a font to fully describe the logical font. If the specified font name does not exist, a font from any character set can be substituted for the specified font, so you should use DEFAULT_CHARSET sparingly to avoid unexpected results.
Fonts with other character sets may exist in the operating system. If an application uses a font with an unknown character set, it should not attempt to translate or interpret strings that are rendered with that font.

This parameter is important in the font mapping process. To ensure consistent results, specify a specific character set. If you specify a typeface name in the lfFaceName member, make sure that the lfCharSet value matches the character set of the typeface specified in lfFaceName.

lfOutPrecision

Specifies the output precision. The output precision defines how closely the output must match the requested font's height, width, character orientation, escapement, pitch, and font type. It can be one of the following values:

Value Meaning
OUT_CHARACTER_PRECIS Not used.
OUT_DEFAULT_PRECIS Specifies the default font mapper behavior.
OUT_DEVICE_PRECIS Instructs the font mapper to choose a Device font when the system contains multiple fonts with the same name.
OUT_OUTLINE_PRECIS Windows NT: This value instructs the font mapper to choose from TrueType and other outline-based fonts.Windows 95: This value is not used.
OUT_RASTER_PRECIS Instructs the font mapper to choose a raster font when the system contains multiple fonts with the same name.
OUT_STRING_PRECIS This value is not used by the font mapper, but it is returned when raster fonts are enumerated.
OUT_STROKE_PRECIS Windows NT: This value is not used by the font mapper, but it is returned when TrueType, other outline-based fonts, and vector fonts are enumerated. Windows 95: This value is used to map vector fonts, and is returned when TrueType or vector fonts are enumerated.
OUT_TT_ONLY_PRECIS Instructs the font mapper to choose from only TrueType fonts. If there are no TrueType fonts installed in the system, the font mapper returns to default behavior.
OUT_TT_PRECIS Instructs the font mapper to choose a TrueType font when the system contains multiple fonts with the same name.


Applications can use the OUT_DEVICE_PRECIS, OUT_RASTER_PRECIS, and OUT_TT_PRECIS values to control how the font mapper chooses a font when the operating system contains more than one font with a given name. For example, if an operating system contains a font named Symbol in raster and TrueType form, specifying OUT_TT_PRECIS forces the font mapper to choose the TrueType version. Specifying OUT_TT_ONLY_PRECIS forces the font mapper to choose a TrueType font, even if it must substitute a TrueType font of another name.

lfClipPrecision

Specifies the clipping precision. The clipping precision defines how to clip characters that are partially outside the clipping region. It can be one or more of the following values:

Value Meaning
CLIP_DEFAULT_PRECIS Specifies default clipping behavior.
CLIP_CHARACTER_PRECIS Not used.
CLIP_STROKE_PRECIS Not used by the font mapper, but is returned when raster, vector, or TrueType fonts are enumerated.Windows NT: For compatibility, this value is always returned when enumerating fonts.
CLIP_MASK Not used.
CLIP_EMBEDDED You must specify this flag to use an embedded read-only font.
CLIP_LH_ANGLES When this value is used, the rotation for all fonts depends on whether the orientation of the coordinate system is left-handed or right-handed. If not used, device fonts always rotate counterclockwise, but the rotation of other fonts is dependent on the orientation of the coordinate system.For more information about the orientation of coordinate systems, see the description of the nOrientation parameter
CLIP_TT_ALWAYS Not used.


lfQuality

Specifies the output quality. The output quality defines how carefully the graphics device interface (GDI) must attempt to match the logical-font attributes to those of an actual physical font. It can be one of the following values:

Value Meaning
DEFAULT_QUALITY Appearance of the font does not matter.
DRAFT_QUALITY Appearance of the font is less important than when PROOF_QUALITY is used. For GDI raster fonts, scaling is enabled, which means that more font sizes are available, but the quality may be lower. Bold, italic, underline, and strikeout fonts are synthesized if necessary.
PROOF_QUALITY Character quality of the font is more important than exact matching of the logical-font attributes. For GDI raster fonts, scaling is disabled and the font closest in size is chosen. Although the chosen font size may not be mapped exactly when PROOF_QUALITY is used, the quality of the font is high and there is no distortion of appearance. Bold, italic, underline, and strikeout fonts are synthesized if necessary.


lfPitchAndFamily

Specifies the pitch and family of the font. The two low-order bits specify the pitch of the font and can be one of the following values:

DEFAULT_PITCH
FIXED_PITCH
VARIABLE_PITCH
Bits 4 through 7 of the member specify the font family and can be one of the following values:
FF_DECORATIVE
FF_DONTCARE
FF_MODERN
FF_ROMAN
FF_SCRIPT
FF_SWISS
The proper value can be obtained by using the Boolean OR operator to join one pitch constant with one family constant.

Font families describe the look of a font in a general way. They are intended for specifying fonts when the exact typeface desired is not available. The values for font families are as follows:

Value Meaning
FF_DECORATIVE Novelty fonts. Old English is an example.
FF_DONTCARE Don't care or don't know.
FF_MODERN Fonts with constant stroke width (monospace), with or without serifs. Monospace fonts are usually modern. Pica, Elite, and CourierNew® are examples.
FF_ROMAN Fonts with variable stroke width (proportional) and with serifs. MS® Serif is an example.
FF_SCRIPT Fonts designed to look like handwriting. Script and Cursive are examples.
FF_SWISS Fonts with variable stroke width (proportional) and without serifs. MS® Sans Serif is an example.


lfFaceName

A null-terminated string that specifies the typeface name of the font. The length of this string must not exceed 32 characters, including the null terminator. The EnumFontFamilies function can be used to enumerate the typeface names of all currently available fonts. If lfFaceName is an empty string, GDI uses the first font that matches the other specified attributes.



See Also

CreateFont, CreateFontIndirect, EnumFontFamilies


Пригласи друзей и счет твоего мобильника всегда будет положительным!
Предыдущая статья
 
Сайт Народ.Ру Интернет
Следующая статья
Пригласи друзей и счет твоего мобильника всегда будет положительным!

LOGFONT



Структура LOGFONT определяет атрибуты шрифта.

typedef struct tagLOGFONT { // lf ДОЛГО (ДЛИНОЙ) lfHeight;
ДОЛГО (ДЛИНОЙ) lfWidth;
ДЛИННЫЙ lfEscapement;
ДОЛГО (ДЛИНОЙ) lfOrientation;
ДОЛГО (ДЛИНОЙ) lfWeight;
БАЙТ lfItalic;
БАЙТ lfUnderline;
БАЙТ lfStrikeOut;
БАЙТ lfCharSet;
БАЙТ lfOutPrecision;
БАЙТ lfClipPrecision;
БАЙТОВЫЙ lfQuality;
БАЙТ lfPitchAndFamily;
TCHAR lfFaceName[LF_FACESIZE];
} LOGFONT;


Участники

lfHeight

Определяет высоту, на логических устройствах, шрифтовой символьной ячейки или символа. Символьная величина высоты (также узнанное как em высота), - величина высоты символьной ячейки минус внутреннюю подачу величины. Шрифтовое mapper интерпретирует величину определенную в lfHeight в следующем способе:

Значение Величины
> 0 Шрифтовое mapper превращает эту величину на устройства устройства и соответствует это против высоты ячейки доступных шрифтов.
0 Шрифтовое mapper использует встроенную величину высоты когда это ищет спичку.
< 0 Шрифтовое mapper превращает эту величину на устройства устройства и соответствует своей абсолютной величине против символьной высоты доступных шрифтов.


Для всех сравнений высоты, шрифтовое mapper ищет самый большой шрифт, что не превышает попрошенный размер.
Это распределение происходит когда шрифт используется впервые.
Для MM_TEXT, отображающий способ, Вы можете использовать следующую формулу, чтобы определять высоту для шрифта с данным размером точки:

lfHeight = -MulDiv(PointSize, GetDeviceCaps(hDC, LOGPIXELSY), 72);


lfWidth

Определяет среднюю ширину, на логических устройствах, символов в шрифте. Если lfWidth - нуль, отношение свободной длины к высоте устройства соответствовало против отношения свободной длины к высоте оцифровки доступных шрифтов, чтобы находить ближайшую спичку, решительную абсолютной величиной различия.

lfEscapement

Определяет угол, в десятых градусов, между вектором escapement и x-axis устройства. Вектор escapement параллельный на базовой линии колонки текста.

Окно NT:

Когда графический способ установлен на GM_ADVANCED, Вы можете определить угол escapement строки независимо угла ориентации символов строки.
Когда графический способ установлен на GM_COMPATIBLE, lfEscapement определяет как escapement так и ориентацию. Вы должны устанавливать lfEscapement и lfOrientation в ту же величину.

Окно 95:

Член lfEscapement определяет как escapement так и ориентацию. Вы должны устанавливать lfEscapement и lfOrientation в ту же величину.

lfOrientation

Определяет угол, в десятых градусов, между каждой символьной базовой линией и x-axis устройства.

lfWeight

Определяет вес шрифта в дипазоне 0 по 1000. Например, 400 нормальное и 700 смелое. Если эта величина является нулем, встроенный вес использован.
Следующие величины определены для удобства:

Вес Величины FW_DONTCARE 0 FW_THIN 100 FW_EXTRALIGHT 200 FW_ULTRALIGHT 200 FW_LIGHT 300 FW_NORMAL 400 FW_REGULAR 400 FW_MEDIUM 500 FW_SEMIBOLD 600 FW_DEMIBOLD 600 FW_BOLD 700 FW_EXTRABOLD 800 FW_ULTRABOLD 800 FW_HEAVY 900 FW_BLACK 900


lfItalic

Определяет шрифт курсива если установлено в ИСТИНУ.

lfUnderline

Определяет подчеркнутый шрифт если установлено в ИСТИНУ.

lfStrikeOut

Определяет шрифт разрядки если установлено в ИСТИНУ.

lfCharSet

Определяет набор символов. Следующие величины встроенные:



ANSI_CHARSET DEFAULT_CHARSET SYMBOL_CHARSET SHIFTJIS_CHARSET GB2312_CHARSET HANGEUL_CHARSET CHINESEBIG5_CHARSET OEM_CHARSET

Окно 95 только:

JOHAB_CHARSET HEBREW_CHARSET ARABIC_CHARSET GREEK_CHARSET TURKISH_CHARSET THAI_CHARSET EASTEUROPE_CHARSET RUSSIAN_CHARSET MAC_CHARSET BALTIC_CHARSET

Величина OEM_CHARSET определяет набор символов, который - операционная система зависимая.
Вы можете использовать величину DEFAULT_CHARSET, чтобы допускать имя и размер шрифта, чтобы полностью описывать логический шрифт. Если определенное шрифтовое имя не существует, шрифт из любого набора символов может быть заменен определенным шрифтом, так что Вы должны использовать DEFAULT_CHARSET умеренно, чтобы избегать неожиданных результатов.
Шрифты с другими наборами символов могут просуществовать в операционной системе. Если приложение использует шрифт с неизвестным набором символов, оно не должно пытаться переводиться или интерпретировать строки, которые предоставляют этим шрифтом.

Этот параметр важный в шрифте, отображающем процесс. Для того, чтобы гарантировать последовательные результаты, определите специфический набор символов. Если Вы определяете тип шрифта имени на члене lfFaceName, убедитесь, что спички величины lfCharSet набор символов типа шрифта определялся в lfFaceName.

lfOutPrecision

Определяет выходную точность. Выходная точность определяет как тесно выход должен соответствовать попрошенной шрифтовой высоте, ширине, символьной ориентации, escapement, шаг, и шрифтовому типу. Это может быть одним из следующего величин:

Значение Величины
OUT_CHARACTER_PRECIS Не использован.
OUT_DEFAULT_PRECIS Определяет встроенное шрифтовое mapper поведение.
OUT_DEVICE_PRECIS Указывает шрифтовое mapper, чтобы выбирать шрифт Устройства когда система содержит многочисленные шрифты с тем же именем.
OUT_OUTLINE_PRECIS Windows NT: Эта величина указывает шрифтовое mapper, чтобы выбираться из TrueType и других базирующихся структурированных шрифтов.Окно 95: Эта величина не использована.
OUT_RASTER_PRECIS Указывает шрифтовое mapper, чтобы выбирать растровый шрифт когда система содержит многочисленные шрифты с тем же именем.
OUT_STRING_PRECIS Этой величины не использована шрифтовым mapper, но возвращано когда растровые шрифты перечислены.
OUT_STROKE_PRECIS Windows NT: Эта величина не использована шрифтовым mapper, но возвращано когда TrueType, другие базирующиеся структурированные шрифты, и векторные шрифты перечислены. Окно 95: Эта величина использована, чтобы отображать векторные шрифты и быть возвращан когда TrueType или векторные шрифты перечислены.
OUT_TT_ONLY_PRECIS Указывает шрифтовое mapper, чтобы выбираться из только шрифтов TrueType. Если нет шрифтов TrueType устанавливался бы в системе, шрифтовое mapper возвращается, чтобы нарушать обязательства поведение.
OUT_TT_PRECIS Указывает шрифтовое mapper, чтобы выбирать шрифт TrueType когда система содержит многочисленные шрифты с тем же именем.


Приложения могут использовать OUT_DEVICE_PRECIS, OUT_RASTER_PRECIS, и величины OUT_TT_PRECIS, чтобы управлять как шрифтовое mapper выбирает шрифт когда операционная система содержит более, чем один шрифт с данным именем. Например, если операционная система содержит шрифт назвавший Символ в растре и форма TrueType, определяющая, что OUT_TT_PRECIS заставляет шрифтовое mapper, чтобы выбирать версию TrueType. Определение OUT_TT_ONLY_PRECIS заставляет шрифтовое mapper, чтобы выбирать шрифт TrueType, даже если бы оно должно заменить шрифт TrueType другого имени.

lfClipPrecision

Определяет вырезать точность. Вырезать точность определяет как, чтобы вырезать символы, которые - частично за пределами вырезать региона. Это может быть одно или более из следующего величин:

Значение Величины
CLIP_DEFAULT_PRECIS Определяет встроенный, вырезать поведение.
CLIP_CHARACTER_PRECIS Не использован.
CLIP_STROKE_PRECIS Не использовался шрифтовым mapper но был возвращан когда растр, вектор, или шрифты TrueType перечислены.Окно NT: Для совместимости, эта величина всегда возвращана перечисляя шрифты.
CLIP_MASK Не использован.
CLIP_EMBEDDED Вы должны определить этот флаг, чтобы использовать вложенный только для чтения шрифт.
CLIP_LH_ANGLES Когда эта величина использована, вращение для всех шрифтов зависит от является ориентация системы координат левосторонним или правшой. Если не использовано, шрифты устройства всегда вращаются против часовой стрелки, но вращение других шрифтов зависимое от ориентации системы координат.Более подробно об ориентации систем координат, смотри описание параметра nOrientation CLIP_TT_ALWAYS Не использованного.


lfQuality

Определяет выходное качество. Выходное качество определяет как тщательно графический интерфейс устройства (GDI), должно пытаться соответствовать логическим-шрифтовым атрибутам к фактического физического шрифта. Это может быть одним из следующего величин:

Значение Величины
Появление DEFAULT_QUALITY шрифта не имеет значения.
Появление DRAFT_QUALITY шрифта менее важное чем когда PROOF_QUALITY использован. Для растровых шрифтов GDI, масштабирование приспособлено, который означает, что более шрифтовые размеры доступны, но качество может быть более низким. Жирный шрифт, курсив, подчеркивание, и шрифты разрядки синтезированы если необходимо.
качество Символа PROOF_QUALITY шрифта более важное чем точное сопоставление логического-шрифта приписывается. Для растровых шрифтов GDI, масштабирование выведено из строя и шрифтовой ближайший по величине выбран. Хотя выбранный шрифтовой размер не может отображаться точно когда PROOF_QUALITY использован, качество шрифта - высокое и нет искажения появления. Жирный шрифт, курсив, подчеркивание, и шрифты разрядки синтезированы если необходимо.


lfPitchAndFamily

Определяет шаг и семейство шрифта. Два младших бита определяют шаг шрифта и может быть одним из следующего величин:

DEFAULT_PITCH FIXED_PITCH VARIABLE_PITCH
Кусает 4 по 7 члена определять шрифтовое семейство и может быть одним из следующего величин: FF_DECORATIVE FF_DONTCARE FF_MODERN FF_ROMAN FF_SCRIPT FF_SWISS
Точное значение может быть получено использованием Логический ИЛИ оператор, чтобы присоединяться к один константа шага с одной семейной константой.

Шрифтовые семейства описывают взгляд шрифта обычным путем. Они предназначены для определяющих шрифтов когда желаемый точный тип шрифта не доступен. Величины для шрифтовых семейств - следующим образом:

Значение Величины
шрифты Новизны FF_DECORATIVE. Старый Английский является примером.
FF_DONTCARE Все равно или не знать.
Шрифты FF_MODERN с постоянной штриховой шириной (интервал), с или без шрифтов с засечками. Шрифты Интервала обычно современные. Пика, Элитная, и CourierNew - примеры.
Шрифты FF_ROMAN с переменной штриховой шириной (пропорциональной) и с шрифтами с засечками. MS Засечка является примером.
Шрифты FF_SCRIPT разработанные, чтобы выглядеть похожим на почерк. Сценарий и Курсив - примеры.
Шрифты FF_SWISS с переменной штриховой шириной (пропорциональной) и без шрифтов с засечками. MS Засечка Sans является примером.


lfFaceName

Недействительный расторгнутая строка, которая определяет тип шрифта имени шрифта. Длина этой строки не должна превышать 32 символа, включая недействительный терминатор. Функция EnumFontFamilies может быть использована, чтобы перечислять тип шрифта имен всех к настоящему времени доступных шрифтов. Если lfFaceName - пустая строка, GDI использует первый шрифт, который соответствует другое определившее атрибуты.



Смотри Также

CreateFont, CreateFontIndirect, EnumFontFamilies


Вверх Version 1.3, Oct 26 2010 © 2007, 2010, mrhx Вверх
 mrhx software  Русский перевод OpenGL  Русский перевод Win32 API
 
Используются технологии uCoz