]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/kbdstate.h
Merge in from trunk r68626 - r68683
[wxWidgets.git] / interface / wx / kbdstate.h
index 8cfbb9841478d16a50976837c1c5d8494f6d1440..27060a379a96212d2579fe8ef0ee216e81808f3c 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      wxWidgets team
 // Created:     2008-09-19
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -18,8 +18,8 @@
     This class is implemented entirely inline in @<wx/kbdstate.h@> and thus has
     no linking requirements.
 
-    @category{misc}
     @nolibrary
+    @category{events}
 
     @see wxKeyEvent, wxMouseState
  */
@@ -130,5 +130,12 @@ public:
         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);
+
 };