X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ba7c420af0041f3e8485580a0b18e8927592f758..8300f815fa5f0e9486d14b057ce8fdda5785549b:/src/cocoa/utils.cpp diff --git a/src/cocoa/utils.cpp b/src/cocoa/utils.cpp index 6f0cbfae94..ef9413bec6 100644 --- a/src/cocoa/utils.cpp +++ b/src/cocoa/utils.cpp @@ -13,6 +13,7 @@ #include "wx/utils.h" #include "wx/app.h" #include "wx/apptrait.h" +#include "wx/display.h" #include @@ -22,6 +23,11 @@ #include // Get size of display +size_t wxDisplayBase::GetCount() +{ + return 1; +} + void wxDisplaySize(int *width, int *height) { // TODO @@ -49,13 +55,13 @@ void wxClientDisplayRect(int *x,int *y,int *width,int *height) *height=768; } -int wxGUIAppTraits::GetOSVersion(int *verMaj, int *verMin) +wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo() { - if(verMaj) - *verMaj=0; - if(verMin) - *verMin=0; - return 0; + static wxToolkitInfo info; + info.shortName = _T("cocoa"); + info.name = _T("wxCocoa"); + // TODO: Finish this + return info; } // Return TRUE if we have a colour display @@ -84,7 +90,7 @@ void wxBell() } #if 0 -// DFE: These aren't even implemented by wxGTK, and no wxWindows code calls +// DFE: These aren't even implemented by wxGTK, and no wxWidgets code calls // them. If someone needs them, then they'll get a link error // Consume all events until no more left