X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3211838bf578eb8ada5a608b66626a6bde6846a..24ce4c1875bf69d896a16c82e879544d86f8c120:/src/msw/settings.cpp diff --git a/src/msw/settings.cpp b/src/msw/settings.cpp index 133c23ab95..9c52e55569 100644 --- a/src/msw/settings.cpp +++ b/src/msw/settings.cpp @@ -40,6 +40,7 @@ #include "wx/window.h" #include "wx/msw/private.h" #include "wx/module.h" +#include "wx/fontutil.h" // ---------------------------------------------------------------------------- // private classes @@ -117,16 +118,8 @@ wxColour wxSystemSettings::GetSystemColour(int index) } } -wxFont wxSystemSettings::GetSystemFont(int index) +wxFont wxCreateFontFromStockObject(int index) { - // wxWindow ctor calls GetSystemFont(wxSYS_DEFAULT_GUI_FONT) so we're - // called fairly often - this is why we cache this particular font - bool isDefaultRequested = index == wxSYS_DEFAULT_GUI_FONT; - if ( isDefaultRequested && gs_fontDefault ) - { - return *gs_fontDefault; - } - wxFont font; HFONT hFont = (HFONT) ::GetStockObject(index); @@ -135,7 +128,16 @@ wxFont wxSystemSettings::GetSystemFont(int index) LOGFONT lf; if ( ::GetObject(hFont, sizeof(LOGFONT), &lf) != 0 ) { - font = wxCreateFontFromLogFont(&lf); + wxNativeFontInfo info; + info.lf = lf; + // Under MicroWindows we pass the HFONT as well + // because it's hard to convert HFONT -> LOGFONT -> HFONT + // It's OK to delete stock objects, the delete will be ignored. +#ifdef __WXMICROWIN__ + font.Create(info, (WXHFONT) hFont); +#else + font.Create(info); +#endif } else { @@ -146,6 +148,20 @@ wxFont wxSystemSettings::GetSystemFont(int index) { wxFAIL_MSG( _T("stock font not found") ); } + return font; +} + +wxFont wxSystemSettings::GetSystemFont(int index) +{ + // wxWindow ctor calls GetSystemFont(wxSYS_DEFAULT_GUI_FONT) so we're + // called fairly often - this is why we cache this particular font + bool isDefaultRequested = index == wxSYS_DEFAULT_GUI_FONT; + if ( isDefaultRequested && gs_fontDefault ) + { + return *gs_fontDefault; + } + + wxFont font = wxCreateFontFromStockObject(index); if ( isDefaultRequested ) { @@ -159,6 +175,10 @@ wxFont wxSystemSettings::GetSystemFont(int index) // Get a system metric, e.g. scrollbar size int wxSystemSettings::GetSystemMetric(int index) { +#ifdef __WXMICROWIN__ + // TODO: probably use wxUniv themes functionality + return 0; +#else switch ( index) { #ifdef __WIN32__ @@ -250,6 +270,8 @@ int wxSystemSettings::GetSystemMetric(int index) default: return 0; } +#endif + // __WXMICROWIN__ } // Option functions (arbitrary name/value mapping)