+ wxPoint vPoint(GetClientAreaOrigin());
+ nActualWidth += vPoint.y;
+ nActualHeight += vPoint.x;
+
+ POINTL vPointl;
+
+ vPointl.x = vRect2.xLeft;
+ vPoint.y = vRect2.yTop;
+
+ ::WinSetWindowPos( hWnd
+ ,HWND_TOP
+ ,vPointl.x
+ ,vPointl.y
+ ,nActualWidth
+ ,nActualHeight
+ ,SWP_MOVE | SWP_SIZE | SWP_SHOW
+ );
+
+ wxSizeEvent vEvent( wxSize( nWidth
+ ,nHeight
+ )
+ ,m_windowId
+ );
+ vEvent.SetEventObject(this);
+ GetEventHandler()->ProcessEvent(vEvent);
+} // end of wxFrame::DoSetClientSize
+
+void wxFrame::DoGetSize(
+ int* pWidth
+, int* pHeight
+) const
+{
+ RECTL vRect;