]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/kbdstate.h
fix wxBitmapComboBox Gtk-CRITICAL assertion `GTK_IS_ENTRY (entry)' failed
[wxWidgets.git] / include / wx / kbdstate.h
index b50c2a4fce8eeb003baf79bf727a0c756cc78b81..71e196db3c1374667441ea3ad900ae9f0bd8edb4 100644 (file)
@@ -28,6 +28,9 @@ public:
           m_shiftDown(shiftDown),
           m_altDown(altDown),
           m_metaDown(metaDown)
           m_shiftDown(shiftDown),
           m_altDown(altDown),
           m_metaDown(metaDown)
+#ifdef __WXOSX__
+          ,m_rawControlDown(false)
+#endif
     {
     }
 
     {
     }
 
@@ -52,7 +55,14 @@ public:
     }
 
     // returns true if any modifiers at all are pressed
     }
 
     // returns true if any modifiers at all are pressed
-    bool HasModifiers() const { return GetModifiers() != wxMOD_NONE; }
+    bool HasAnyModifiers() const { return GetModifiers() != wxMOD_NONE; }
+
+    // returns true if any modifiers changing the usual key interpretation are
+    // pressed, notably excluding Shift
+    bool HasModifiers() const
+    {
+        return ControlDown() || RawControlDown() || AltDown();
+    }
 
     // accessors for individual modifier keys
     bool ControlDown() const { return m_controlDown; }
 
     // accessors for individual modifier keys
     bool ControlDown() const { return m_controlDown; }