Represents the mouse state.
This class is used as a base class by wxMouseEvent and so its methods may be used to obtain information about the mouse state for the mouse events. It also inherits from wxKeyboardState and so carries information about the keyboard state and not only the mouse one.
This class is implemented entirely inline in <wx/mousestate.h> and thus has no linking requirements.
Library: None; this class implementation is entirely header-based.
- See Also
- wxGetMouseState(), wxMouseEvent
|
| wxMouseState () |
| Default constructor.
|
|
wxCoord | GetX () const |
| Returns X coordinate of the physical mouse event position.
|
|
wxCoord | GetY () const |
| Returns Y coordinate of the physical mouse event position.
|
|
bool | LeftIsDown () const |
| Returns true if the left mouse button is currently down.
|
|
bool | MiddleIsDown () const |
| Returns true if the middle mouse button is currently down.
|
|
bool | RightIsDown () const |
| Returns true if the right mouse button is currently down.
|
|
bool | Aux1IsDown () const |
| Returns true if the first extra button mouse button is currently down.
|
|
bool | Aux2IsDown () const |
| Returns true if the second extra button mouse button is currently down.
|
|
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) |
|
|
wxPoint | GetPosition () const |
| Returns the physical mouse position.
|
|
void | GetPosition (int *x, int *y) const |
| Returns the physical mouse position.
|
|
| wxKeyboardState (bool controlDown=false, bool shiftDown=false, bool altDown=false, bool metaDown=false) |
| Constructor initializes the modifier key settings.
|
|
int | GetModifiers () const |
| Return the bit mask of all pressed modifier keys.
|
|
bool | HasAnyModifiers () const |
| Returns true if any modifiers at all are pressed.
|
|
bool | HasModifiers () const |
| Returns true if Control or Alt are pressed.
|
|
bool | ControlDown () const |
| Returns true if the Control key or Apple/Command key under OS X is pressed.
|
|
bool | RawControlDown () const |
| Returns true if the Control key (also under OS X).
|
|
bool | ShiftDown () const |
| Returns true if the Shift key is pressed.
|
|
bool | MetaDown () const |
| Returns true if the Meta/Windows/Apple key is pressed.
|
|
bool | AltDown () const |
| Returns true if the Alt key is pressed.
|
|
bool | CmdDown () const |
| Returns true if the key used for command accelerators is pressed.
|
|
void | SetControlDown (bool down) |
|
void | SetRawControlDown (bool down) |
|
void | SetShiftDown (bool down) |
|
void | SetAltDown (bool down) |
|
void | SetMetaDown (bool down) |
|