From: Julian Smart Date: Tue, 12 Feb 2002 14:16:54 +0000 (+0000) Subject: Status bar positioned correctly, but no sign of the X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/418d4918a23299c13c9d8236dbeaccedf663a68d Status bar positioned correctly, but no sign of the menubar as yet. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14154 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/x11/toplevel.cpp b/src/x11/toplevel.cpp index 101ef8e446..03dfa0dfef 100644 --- a/src/x11/toplevel.cpp +++ b/src/x11/toplevel.cpp @@ -401,18 +401,24 @@ bool wxMWMIsRunning(Window w) // smaller wxPoint wxTopLevelWindowX11::GetClientAreaOrigin() const { + // In fact wxFrame::GetClientAreaOrigin + // does the required calculation already. +#if 0 if (this->IsKindOf(CLASSINFO(wxFrame))) { wxFrame* frame = (wxFrame*) this; if (frame->GetMenuBar()) return wxPoint(0, frame->GetMenuBar()->GetSize().y); } +#endif return wxPoint(0, 0); } void wxTopLevelWindowX11::DoGetClientSize( int *width, int *height ) const { wxWindowX11::DoGetClientSize(width, height); + // Done by wxTopLevelWindow +#if 0 if (this->IsKindOf(CLASSINFO(wxFrame))) { wxFrame* frame = (wxFrame*) this; @@ -421,11 +427,11 @@ void wxTopLevelWindowX11::DoGetClientSize( int *width, int *height ) const if (frame->GetStatusBar()) (*height) -= frame->GetStatusBar()->GetSize().y; } +#endif } void wxTopLevelWindowX11::DoSetClientSize(int width, int height) { - // TODO - take menubar and status line into account wxWindowX11::DoSetClientSize(width, height); #if 0 if (!GetMainWindow())