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