// Author: wxWidgets team
// Created: 2008-09-19
// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/// Symbolic names for the mouse buttons.
has no linking requirements.
@nolibrary
- @category{misc}
+ @category{events}
@see wxGetMouseState(), wxMouseEvent
*/
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);
+
};