]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/mousestate.h
Ensure that the overall table border doesn't get overdrawn by cell borders with a...
[wxWidgets.git] / interface / wx / mousestate.h
index 2bfb76e6aebac721a236cbefdf91620b02bb703c..4562f3a3db34dd3aa7737440acb63146dc061bd0 100644 (file)
@@ -3,7 +3,6 @@
 // Purpose:     documentation of wxMouseState
 // Author:      wxWidgets team
 // Created:     2008-09-19
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -104,6 +103,20 @@ public:
         Returns @true if the second extra button mouse button is currently down.
     */
     bool Aux2IsDown() const;
+
+
+    void SetX(wxCoord x);
+    void SetY(wxCoord y);
+    void SetPosition(wxPoint pos);
+    
+    void SetLeftDown(bool down);
+    void SetMiddleDown(bool down);
+    void SetRightDown(bool down);
+    void SetAux1Down(bool down);
+    void SetAux2Down(bool down);
+
+    void SetState(const wxMouseState& state);
+    
 };