Positioning fixes to compsate for wxWindow's use of the MS backwards standard.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2001-04-19 22:30:15 +00:00
parent 475031bb37
commit 45bfc84b20
2 changed files with 33 additions and 7 deletions

View File

@@ -329,6 +329,7 @@ bool wxWindow::Create(
)
{
HWND hParent = NULLHANDLE;
wxPoint vPos = rPos; // The OS/2 position
wxCHECK_MSG(pParent, FALSE, wxT("can't create wxWindow without parent"));
@@ -346,9 +347,19 @@ bool wxWindow::Create(
{
pParent->AddChild(this);
hParent = GetWinHwnd(pParent);
//
// OS2 uses normal coordinates, no bassackwards Windows ones
//
vPos.y = pParent->GetSize().y - (vPos.y + rSize.y);
}
else
hParent = HWND_DESKTOP;
{
RECTL vRect;
::WinQueryWindowRect(HWND_DESKTOP, &vRect);
hParent = HWND_DESKTOP;
vPos.y = vRect.yTop - (vPos.y + rSize.y);
}
ULONG ulCreateFlags = 0L;
@@ -382,8 +393,8 @@ bool wxWindow::Create(
,(PSZ)wxCanvasClassName
,rName.c_str()
,ulCreateFlags
,rPos.x
,rPos.y
,vPos.x
,vPos.y
,WidthDefault(rSize.x)
,HeightDefault(rSize.y)
,NULLHANDLE