#endif
#include "wx/fontenum.h"
+#include "wx/fontmap.h"
#include "wx/msw/private.h"
// if != -1, enum only fonts which have this encoding
int m_charset;
+ // if not empty, enum only the fonts with this facename
+ wxString m_facename;
+
// if TRUE, enum only fixed fonts
bool m_fixedOnly;
};
bool wxFontEnumeratorHelper::SetEncoding(wxFontEncoding encoding)
{
- bool exact;
- m_charset = wxCharsetFromEncoding(encoding, &exact);
-#ifdef __WIN32__
- if ( !exact )
+ wxNativeEncodingInfo info;
+ if ( !wxGetNativeFontEncoding(encoding, &info) )
{
- m_charset = DEFAULT_CHARSET;
+ if ( !wxTheFontMapper->GetAltForEncoding(encoding, &info) )
+ {
+ // no such encodings at all
+ return FALSE;
+ }
}
-#endif // Win32
+ m_charset = info.charset;
+ m_facename = info.facename;
- return exact;
+ return TRUE;
}
+#if defined(__GNUWIN32__)
+ #if defined(__MINGW32__) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
+ #define wxFONTENUMPROC int(*)(const LOGFONTA *, const TEXTMETRICA *, long unsigned int, LPARAM)
+ #else
+ #define wxFONTENUMPROC int(*)(ENUMLOGFONTEX *, NEWTEXTMETRICEX*, int, LPARAM)
+ #endif
+#else
+ #define wxFONTENUMPROC FONTENUMPROC
+#endif
+
void wxFontEnumeratorHelper::DoEnumerate()
{
HDC hDC = ::GetDC(NULL);
#ifdef __WIN32__
LOGFONT lf;
lf.lfCharSet = m_charset;
- lf.lfFaceName[0] = _T('\0');
+ wxStrncpy(lf.lfFaceName, m_facename, WXSIZEOF(lf.lfFaceName));
lf.lfPitchAndFamily = 0;
- ::EnumFontFamiliesEx(hDC, &lf, (FONTENUMPROC)wxFontEnumeratorProc,
+ ::EnumFontFamiliesEx(hDC, &lf, (wxFONTENUMPROC)wxFontEnumeratorProc,
(LPARAM)this, 0 /* reserved */) ;
#else // Win16
::EnumFonts(hDC, (LPTSTR)NULL, (FONTENUMPROC)wxFontEnumeratorProc,
- (LPARAM) (void*) this) ;
+ #ifdef STRICT
+ (LPARAM)
+ #else
+ (LPSTR)
+ #endif
+ this);
#endif // Win32/16
::ReleaseDC(NULL, hDC);
}
}
- return m_fontEnum->OnFontFamily(lf->lfFaceName);
+ return m_fontEnum->OnFacename(lf->lfFaceName);
}
// ----------------------------------------------------------------------------
// wxFontEnumerator
// ----------------------------------------------------------------------------
-bool wxFontEnumerator::EnumerateFamilies(wxFontEncoding encoding,
- bool fixedWidthOnly)
+bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding,
+ bool fixedWidthOnly)
{
wxFontEnumeratorHelper fe(this);
if ( fe.SetEncoding(encoding) )