Changed event type ids to constants instead of enum, for extensibility.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@378 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-07-27 16:17:59 +00:00
parent a97aaabf5c
commit 0757d27c1e
4 changed files with 175 additions and 172 deletions

View File

@@ -643,6 +643,7 @@ void wxWindow::ScreenToClient(int *x, int *y) const
pt.y = *y;
::ScreenToClient(hWnd, &pt);
/*
// We may be faking the client origin.
// So a window that's really at (0, 30) may appear
// (to wxWin apps) to be at (0, 0).
@@ -652,6 +653,8 @@ void wxWindow::ScreenToClient(int *x, int *y) const
pt.x -= pt1.x;
pt.y -= pt1.y;
}
*/
*x = pt.x;
*y = pt.y;
}
@@ -663,6 +666,7 @@ void wxWindow::ClientToScreen(int *x, int *y) const
pt.x = *x;
pt.y = *y;
/*
// We may be faking the client origin.
// So a window that's really at (0, 30) may appear
// (to wxWin apps) to be at (0, 0).
@@ -672,6 +676,7 @@ void wxWindow::ClientToScreen(int *x, int *y) const
pt.x += pt1.x;
pt.y += pt1.y;
}
*/
::ClientToScreen(hWnd, &pt);