void InitializeOneFont (HFONT * theFont, const TCHAR FontRegKey[] , LOGFONT autoLogFont, LOGFONT * LogFontUsed) { LOGFONT logfont; if (GetObjectType(*theFont) == OBJ_FONT) { DeleteObject(*theFont); // RLD the EditFont screens use the Delete } memset ((char *)&logfont, 0, sizeof (LOGFONT)); if (UseCustomFonts) { propGetFontSettings((TCHAR * )FontRegKey, &logfont); if (!IsNullLogFont(logfont)) { *theFont = CreateFontIndirect (&logfont); if (GetObjectType(*theFont) == OBJ_FONT) { if (LogFontUsed != NULL) *LogFontUsed = logfont; // RLD save for custom font GUI } } } if (GetObjectType(*theFont) != OBJ_FONT) { if (!IsNullLogFont(autoLogFont)) { ApplyClearType(&autoLogFont); ApplyFontSize(&autoLogFont); *theFont = CreateFontIndirect (&autoLogFont); if (GetObjectType(*theFont) == OBJ_FONT) { if (LogFontUsed != NULL) *LogFontUsed = autoLogFont; // RLD save for custom font GUI } } } }
void InitializeOneFont (LKFont& theFont, LOGFONT logfont) { theFont.Release(); ApplyClearType(&logfont); ApplyFontSize(&logfont); theFont.Create(&logfont); }