X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b594d7f7d83785262c4a104a3e1bca6400923562..716a5baa6ecd0d5d0c31914567e4da3165ca6ff0:/src/msw/settings.cpp diff --git a/src/msw/settings.cpp b/src/msw/settings.cpp index af0dfa0adb..a9b58c8a35 100644 --- a/src/msw/settings.cpp +++ b/src/msw/settings.cpp @@ -40,9 +40,8 @@ #include "wx/module.h" #include "wx/fontutil.h" -#ifdef __WXWINCE__ // for SM_CXCURSOR and SM_CYCURSOR -#include "wx/msw/wince/missing.h" -#endif // __WXWINCE__ +// for SM_CXCURSOR, SM_CYCURSOR, SM_TABLETPC +#include "wx/msw/missing.h" // ---------------------------------------------------------------------------- // private classes @@ -172,7 +171,7 @@ wxColour wxSystemSettingsNative::GetColour(wxSystemColour index) index = wxSYS_COLOUR_MENU ; } } - } + } if ( useDefault ) { @@ -225,6 +224,13 @@ wxFont wxCreateFontFromStockObject(int index) { wxNativeFontInfo info; info.lf = lf; +#ifndef __WXWINCE__ + // We want Windows 2000 or later to have new fonts even MS Shell Dlg + // is returned as default GUI font for compatibility + int verMaj; + if(index == DEFAULT_GUI_FONT && wxGetOsVersion(&verMaj) == wxWINDOWS_NT && verMaj >= 5) + wxStrcpy(info.lf.lfFaceName, wxT("MS Shell Dlg 2")); +#endif // 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. @@ -412,6 +418,9 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index) case wxSYS_CAN_DRAW_FRAME_DECORATIONS: return true; + case wxSYS_TABLET_PRESENT: + return ::GetSystemMetrics(SM_TABLETPC) != 0; + default: wxFAIL_MSG( _T("unknown system feature") );