]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/utils.cpp
added wxEVT_MOUSE_CAPTURE_LOST event and code for correctly handling capture loss...
[wxWidgets.git] / src / mgl / utils.cpp
index 503914f8a236ad7021a98ee00bccb79157b289a0..c6dad8291a9c999e7e5ebd5d544f167c9f81a281 100644 (file)
@@ -168,7 +168,23 @@ wxPoint wxGetMousePosition()
 wxMouseState wxGetMouseState()
 {
     wxMouseState ms;
-    // TODO
+    int x, y;
+
+    wxGetMousePosition(&x, &y);
+
+    ms.SetX(x);
+    ms.SetY(y);
+
+    extern unsigned long g_buttonState;
+    ms.SetLeftDown(g_buttonState & EVT_LEFTBUT);
+    ms.SetMiddleDown(g_buttonState & EVT_MIDDLEBUT);
+    ms.SetRightDown(g_buttonState & EVT_RIGHTBUT);
+
+    ms.SetControlDown(EVT_isKeyDown(KB_leftCtrl) || EVT_isKeyDown(KB_rightCtrl));
+    ms.SetShiftDown(EVT_isKeyDown(KB_leftShift) || EVT_isKeyDown(KB_rightShift));
+    ms.SetAltDown(EVT_isKeyDown(KB_leftAlt));
+    ms.SetMetaDown(EVT_isKeyDown(KB_rightAlt));
+
     return ms;
 }