X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab826fd86ffd5aadd2246c14337369aa6af9fab5..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/mousestate.h diff --git a/interface/wx/mousestate.h b/interface/wx/mousestate.h index 1088c7de7e..4562f3a3db 100644 --- a/interface/wx/mousestate.h +++ b/interface/wx/mousestate.h @@ -3,8 +3,7 @@ // Purpose: documentation of wxMouseState // Author: wxWidgets team // Created: 2008-09-19 -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /// Symbolic names for the mouse buttons. @@ -50,7 +49,7 @@ enum wxMouseButton has no linking requirements. @nolibrary - @category{misc} + @category{events} @see wxGetMouseState(), wxMouseEvent */ @@ -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); + };