// Author: wxWidgets team
// Created: 2008-09-19
// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
This class is implemented entirely inline in @<wx/kbdstate.h@> and thus has
no linking requirements.
- @category{misc}
@nolibrary
+ @category{events}
@see wxKeyEvent, wxMouseState
*/
Notice that GetModifiers() should usually be used instead of this one.
*/
bool CmdDown() const;
+
+
+ void SetControlDown(bool down);
+ void SetShiftDown(bool down);
+ void SetAltDown(bool down);
+ void SetMetaDown(bool down);
+
};