AUI under wxOS2 build fixes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39605 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-06-06 21:07:42 +00:00
parent 092f0ed782
commit 3a7458677b
5 changed files with 235 additions and 91 deletions

View File

@@ -5041,12 +5041,20 @@ wxWindow* wxFindWindowAtPoint(const wxPoint& rPt)
// Get the current mouse position.
wxPoint wxGetMousePosition()
{
POINTL vPt;
POINTL vPt;
::WinQueryPointerPos(HWND_DESKTOP, &vPt);
return wxPoint(vPt.x, vPt.y);
}
wxMouseState wxGetMouseState()
{
wxMouseState ms;
// TODO
return ms;
}
wxWindowOS2* FindWindowForMouseEvent( wxWindow* pWin,
short* WXUNUSED(pnX),
short* WXUNUSED(pnY) )