added msw.font.no-proof-quality system option as it makes more fonts available (feature request 1617941)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-06-02 12:56:36 +00:00
parent 24d68c95ad
commit 66160760e1
3 changed files with 23 additions and 3 deletions

View File

@@ -39,6 +39,10 @@
#include "wx/fontutil.h"
#include "wx/fontmap.h"
#ifndef __WXWINCE__
#include "wx/sysopt.h"
#endif
#include "wx/tokenzr.h"
#if wxUSE_EXTENDED_RTTI
@@ -453,12 +457,16 @@ void wxNativeFontInfo::Init()
{
wxZeroMemory(lf);
// we get better font quality if we use this instead of DEFAULT_QUALITY
// apparently without any drawbacks
// we get better font quality if we use PROOF_QUALITY instead of
// DEFAULT_QUALITY but some fonts (e.g. "Terminal 6pt") are not available
// then so we allow to set a global option to choose between quality and
// wider font selection
#ifdef __WXWINCE__
lf.lfQuality = CLEARTYPE_QUALITY;
#else
lf.lfQuality = PROOF_QUALITY;
lf.lfQuality = wxSystemOptions::GetOptionInt(_T("msw.font.no-proof-quality"))
? DEFAULT_QUALITY
: PROOF_QUALITY;
#endif
}