]> git.saurik.com Git - wxWidgets.git/commitdiff
added wxMouseState::GetPosition(), for consistency with wxMouseEvent
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 18 Apr 2008 01:51:04 +0000 (01:51 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 18 Apr 2008 01:51:04 +0000 (01:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/utils.h
interface/utils.h

index 2fd8ed4284bb9f7bed4fc78e858922d87d2570f1..0458210efdb2787eeb97c5c437239a179e7e0fab 100644 (file)
@@ -224,6 +224,7 @@ public:
 
     wxCoord GetX() const { return m_x; }
     wxCoord GetY() const { return m_y; }
+    wxPoint GetPosition() const { return wxPoint(m_x, m_y); }
 
     bool LeftDown()    const { return m_leftDown; }
     bool MiddleDown()  const { return m_middleDown; }
index 806a04a88ac39512ee597a07f4c67278c7a9d67c..ff2a1f8ec895f87688ae430773f352e6bbcd295e 100644 (file)
@@ -104,9 +104,10 @@ class wxMouseState
 public:
     /// Returns X coordinate of the physical mouse event position.
     wxCoord GetX() const;
-
     /// Returns Y coordinate of the physical mouse event position.
     wxCoord GetY() const;
+    /// Returns the physical mouse position.
+    wxPoint GetPosition() const;
 
     /// Returns @true if the left mouse button changed to down.
     bool LeftDown() const;