X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ef344ff86223f1f0961f025c0b249c898529c095..d728116a27b358e5b002337d96268fb51be128eb:/src/mgl/settings.cpp diff --git a/src/mgl/settings.cpp b/src/mgl/settings.cpp index bca51ecd13..4e6b6d28f8 100644 --- a/src/mgl/settings.cpp +++ b/src/mgl/settings.cpp @@ -24,7 +24,7 @@ wxColour wxSystemSettings::GetSystemColour(int WXUNUSED(index)) wxFont wxSystemSettings::GetSystemFont(int WXUNUSED(index)) { // FIXME_MGL - return wxFont(9, wxSWISS, wxNORMAL, wxNORMAL); + return wxFont(10, wxSWISS, wxNORMAL, wxNORMAL, FALSE, "Arial"); } int wxSystemSettings::GetSystemMetric(int WXUNUSED(index)) @@ -32,3 +32,16 @@ int wxSystemSettings::GetSystemMetric(int WXUNUSED(index)) // FIXME_MGL return 1; } + +bool wxSystemSettings::GetCapability(int index) +{ + switch (index) + { + case wxSYS_CAN_ICONIZE_FRAME: + return FALSE; break; + case wxSYS_CAN_DRAW_FRAME_DECORATIONS: + return FALSE; break; + default: + return FALSE; + } +}