+
+ Notice that this is different from HasModifiers() method which doesn't
+ take e.g. Shift modifier into account. This method is most suitable for
+ mouse events when any modifier, including Shift, can change the
+ interpretation of the event.
+
+ @since 2.9.5
+ */
+ bool HasAnyModifiers() const;
+
+ /**
+ Returns true if Control or Alt are pressed.
+
+ Checks if Control, Alt or, under OS X only, Command key are pressed
+ (notice that the real Control key is still taken into account under OS
+ X too).
+
+ This method returns @false if only Shift is pressed for compatibility
+ reasons and also because pressing Shift usually doesn't change the
+ interpretation of key events, see HasAnyModifiers() if you want to
+ take Shift into account as well.