]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/kbdstate.h
added support for wxCAL_SHOW_WEEK_NUMBERS to generic version of wxCalendarCtrl (...
[wxWidgets.git] / interface / wx / kbdstate.h
index 9a99a7c217ce2d255435984eaa23721de718300d..45310d19c5f02cd2f2e51b9874725c8932dcde8b 100644 (file)
@@ -26,15 +26,18 @@ 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())