]> git.saurik.com Git - wxWidgets.git/commitdiff
Add wx.KeyEvent.GetModifiers
authorRobin Dunn <robin@alldunn.com>
Fri, 10 Feb 2006 18:32:41 +0000 (18:32 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 10 Feb 2006 18:32:41 +0000 (18:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_event.i

index ce01fce0c949a97818220411d529e91127dd384f..3a0d4194e4515815b8104c2db6a3e86231b02b96 100644 (file)
@@ -1219,6 +1219,17 @@ public:
     * ", "");
 
 
+    DocDeclStr(
+        int, GetModifiers() const,
+        "Returns a bitmask of the current modifier settings.  Can be used to
+check if the key event has exactly the given modifiers without having
+to explicitly check that the other modifiers are not down.  For
+example::
+
+    if event.GetModifers() == wx.MOD_CONTROL:
+        DoSomething()
+", "");
+
     DocDeclStr(
         bool , ControlDown() const,
         "Returns ``True`` if the Control key was down at the time of the event.", "");