enum MapFontFlags { MFF_Original = 0x0010, MFF_NoAutoFit = 0x0020, MFF_Normal = 0x0000, MFF_Italic = 0x0001, MFF_Bold = 0x0002, MFF_BoldItalic = MFF_Italic|MFF_Bold, MFF_FauxItalic = 0x0004, MFF_FauxBold = 0x0008, MFF_FauxBoldItalic = MFF_FauxItalic|MFF_FauxBold };
Apart from MFF_Original which is the default state, the other font flag combinations indicate that a specific font type will be looked up. These flags must match with constants in Font.
Members |
Description |
MFF_Original = 0x0010 |
Default State. |
MFF_NoAutoFit = 0x0020 |
Flag set to disable automatic glyph fitting per font type and per language. |
MFF_Normal = 0x0000 |
Flag set to indicate a normal font style. |
MFF_Italic = 0x0001 |
Flag set to indicate an italic font style. |
MFF_Bold = 0x0002 |
Flag set to indicate a bold font style. |
MFF_BoldItalic = MFF_Italic|MFF_Bold |
Flag set to indicate a bold and an italic font style. |
MFF_FauxItalic = 0x0004 |
Flag set to indicate an artificail italic style. |
MFF_FauxBold = 0x0008 |
Flag set to indicate an artificial bold font style. |
MFF_FauxBoldItalic = MFF_FauxItalic|MFF_FauxBold |
Flag set to indicate an artificial bold and italic font style. |
GFx_Loader.h