X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9e0ed08360448630be00fb1c441fc7f024afeb6a..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/mousestate.h?ds=inline diff --git a/interface/wx/mousestate.h b/interface/wx/mousestate.h index f2c2873e19..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. @@ -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); + };