X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7d9f12f3b9f997b6308faf336d5381be591b71f4..2e09dc2dc80d5dd5c42a559c4dd4738ed006a276:/src/common/toplvcmn.cpp diff --git a/src/common/toplvcmn.cpp b/src/common/toplvcmn.cpp index 9cc07cc8d8..6c9f3d89f9 100644 --- a/src/common/toplvcmn.cpp +++ b/src/common/toplvcmn.cpp @@ -45,6 +45,11 @@ END_EVENT_TABLE() // implementation // ============================================================================ +// FIXME: some platforms don't have wxTopLevelWindow yet +#ifdef wxTopLevelWindowNative + IMPLEMENT_DYNAMIC_CLASS(wxTopLevelWindow, wxWindow) +#endif + // ---------------------------------------------------------------------------- // construction/destruction // ---------------------------------------------------------------------------- @@ -53,6 +58,11 @@ wxTopLevelWindowBase::wxTopLevelWindowBase() { } +wxTopLevelWindowBase::~wxTopLevelWindowBase() +{ + // this destructor is required for Darwin +} + bool wxTopLevelWindowBase::Destroy() { // delayed destruction: the frame will be deleted during the next idle @@ -64,31 +74,32 @@ bool wxTopLevelWindowBase::Destroy() } // ---------------------------------------------------------------------------- -// wxTopLevelWindow size management: we exclude the areas taken by menu/status/toolbars -// from the client area, so the client area is what's really available for the -// frame contents +// wxTopLevelWindow size management: we exclude the areas taken by +// menu/status/toolbars from the client area, so the client area is what's +// really available for the frame contents // ---------------------------------------------------------------------------- void wxTopLevelWindowBase::DoScreenToClient(int *x, int *y) const { wxWindow::DoScreenToClient(x, y); - // We may be faking the client origin. - // So a window that's really at (0, 30) may appear - // (to wxWin apps) to be at (0, 0). + // translate the wxWindow client coords to our client coords wxPoint pt(GetClientAreaOrigin()); - *x -= pt.x; - *y -= pt.y; + if ( x ) + *x -= pt.x; + if ( y ) + *y -= pt.y; } void wxTopLevelWindowBase::DoClientToScreen(int *x, int *y) const { - // We may be faking the client origin. - // So a window that's really at (0, 30) may appear - // (to wxWin apps) to be at (0, 0). - wxPoint pt1(GetClientAreaOrigin()); - *x += pt1.x; - *y += pt1.y; + // our client area origin (0, 0) may be really something like (0, 30) for + // wxWindow if we have a toolbar, account for it before translating + wxPoint pt(GetClientAreaOrigin()); + if ( x ) + *x += pt.x; + if ( y ) + *y += pt.y; wxWindow::DoClientToScreen(x, y); } @@ -166,4 +177,3 @@ bool wxTopLevelWindowBase::SendIconizeEvent(bool iconized) return GetEventHandler()->ProcessEvent(event); } -