]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/mousestate.h
Don't specialize std::numeric_limits<> for wxLongLong when using VC6.
[wxWidgets.git] / interface / wx / mousestate.h
index 2bfb76e6aebac721a236cbefdf91620b02bb703c..62ff0e39ac43f96c43b82b9c85c76f8215dd9375 100644 (file)
@@ -104,6 +104,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);
+    
 };