]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/kbdstate.h
fix for HP aCC
[wxWidgets.git] / interface / wx / kbdstate.h
index 9a99a7c217ce2d255435984eaa23721de718300d..8cfbb9841478d16a50976837c1c5d8494f6d1440 100644 (file)
     information about the modifier keys which were pressed when the event
     occurred.
 
-    This class is implemented entirely inline in @<wx/keystate.h@> and thus has
+    This class is implemented entirely inline in @<wx/kbdstate.h@> and thus has
     no linking requirements.
 
     @category{misc}
+    @nolibrary
 
     @see wxKeyEvent, wxMouseState
  */
@@ -26,21 +27,24 @@ class wxKeyboardState
 {
 public:
     /**
-        Default constructor.
+        Constructor initializes the modifier key settings.
 
         By default, no modifiers are active.
      */
-    wxKeyboardState();
+    wxKeyboardState(bool controlDown = false,
+                    bool shiftDown = false,
+                    bool altDown = false,
+                    bool metaDown = false);
 
     /**
         Return the bit mask of all pressed modifier keys.
-        
+
         The return value is a combination of @c wxMOD_ALT, @c wxMOD_CONTROL,
         @c wxMOD_SHIFT and @c wxMOD_META bit masks. Additionally, @c wxMOD_NONE
         is defined as 0, i.e. corresponds to no modifiers (see HasModifiers())
-        and @c wxMOD_CMD is either @c wxMOD_CONTROL (MSW and Unix) or @c
-        wxMOD_META (Mac), see CmdDown(). See @ref page_keymodifiers for the
-        full list of modifiers.
+        and @c wxMOD_CMD is either @c wxMOD_CONTROL (MSW and Unix) or
+        @c wxMOD_META (Mac), see CmdDown().
+        See ::wxKeyModifier for the full list of modifiers.
 
         Notice that this function is easier to use correctly than, for example,
         ControlDown() because when using the latter you also have to remember to