git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44127
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
virtual bool Show(bool show = true);
protected:
+ virtual void DoGetScreenPosition(int *x, int *y) const;
virtual void DoGetPosition(int *x, int *y) const;
virtual void DoSetClientSize(int width, int height);
virtual void InternalSetMenuBar();
GetEventHandler()->ProcessEvent(event);
}
+// Unlike other wxTopLevelWindowBase, the mdi child's "GetPosition" is not the
+// same as its GetScreenPosition
+void wxMDIChildFrame::DoGetScreenPosition(int *x, int *y) const
+{
+ HWND hWnd = GetHwnd();
+
+ RECT rect;
+ ::GetWindowRect(hWnd, &rect);
+ if (x)
+ *x = rect.left;
+ if (y)
+ *y = rect.top;
+}
+
+
void wxMDIChildFrame::DoGetPosition(int *x, int *y) const
{
RECT rect;