wx.KeyboardState¶
Provides methods for testing the state of the keyboard modifier keys.
This class is used as a base class of wx.KeyEvent and wx.MouseState and, hence, indirectly, of wx.MouseEvent, so its methods may be used to get information about the modifier keys which were pressed when the event occurred.
This class is implemented entirely inline in </kbdstate.h > and thus has no linking requirements.
See also
Class Hierarchy¶
Known Subclasses¶
Methods Summary¶
Constructor initializes the modifier key settings. |
|
Returns |
|
Returns |
|
Returns |
|
Return the bit mask of all pressed modifier keys. |
|
Returns |
|
Returns |
|
Returns |
|
Returns |
|
Returns |
Properties Summary¶
See |
|
See |
|
See |
|
See |
|
See |
|
See |
Class API¶
- class wx.KeyboardState(object)¶
Possible constructors:
KeyboardState(controlDown=False, shiftDown=False, altDown=False, metaDown=False) -> None
Provides methods for testing the state of the keyboard modifier keys.
Methods¶
- __init__(self, controlDown=False, shiftDown=False, altDown=False, metaDown=False)¶
Constructor initializes the modifier key settings.
By default, no modifiers are active.
- Parameters:
controlDown (bool)
shiftDown (bool)
altDown (bool)
metaDown (bool)
- Return type:
None
- AltDown(self)¶
Returns
Trueif the Alt key is pressed.Notice that
GetModifiersshould usually be used instead of this one.- Return type:
bool
- CmdDown(self)¶
Returns
Trueif the key used for command accelerators is pressed.Same as
ControlDown. Deprecated.Notice that
GetModifiersshould usually be used instead of this one.- Return type:
bool
- ControlDown(self)¶
Returns
Trueif the Control key or Apple/Command key under macOS is pressed.This function doesn’t distinguish between right and left control keys.
Notice that
GetModifiersshould usually be used instead of this one.- Return type:
bool
- GetModifiers(self)¶
Return the bit mask of all pressed modifier keys.
The return value is a combination of
MOD_ALT,MOD_CONTROL,MOD_SHIFTandMOD_METAbit masks. Additionally,MOD_NONEis defined as 0, i.e. corresponds to no modifiers (seeHasAnyModifiers) andMOD_CMDis eitherMOD_CONTROL(MSW and Unix) orMOD_META(Mac), seeCmdDown. See wx.KeyModifier for the full list of modifiers.Notice that this function is easier to use correctly than, for example,
ControlDownbecause when using the latter you also have to remember to test that none of the other modifiers is pressed:if ControlDown() and not AltDown() and not ShiftDown() and not MetaDown(): # handle Ctrl-XXX ... HandleControl()
and forgetting to do it can result in serious program bugs (e.g. program not working with European keyboard layout where
AltGrkey which is seen by the program as combination ofCTRLandALTis used). On the other hand, you can simply write:if GetModifiers() == wx.MOD_CONTROL: # handle Ctrl-XXX ... HandleControl()
with this function.
- Return type:
int
- HasAnyModifiers(self)¶
Returns
Trueif any modifiers at all are pressed.This is equivalent to
GetModifiers!=MOD_NONE.Notice that this is different from
HasModifiersmethod 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.- Return type:
bool
Added in version 2.9.5.
- HasModifiers(self)¶
Returns
Trueif Control or Alt are pressed.Checks if Control, Alt or, under macOS only, Command key are pressed (notice that the real Control key is still taken into account under OS X too).
This method returns
Falseif only Shift is pressed for compatibility reasons and also because pressing Shift usually doesn’t change the interpretation of key events, seeHasAnyModifiersif you want to take Shift into account as well.- Return type:
bool
- MetaDown(self)¶
Returns
Trueif the Meta/Windows/Apple key is pressed.This function tests the state of the key traditionally called Meta under Unix systems, Windows keys under MSW Notice that
GetModifiersshould usually be used instead of this one.- Return type:
bool
See also
- RawControlDown(self)¶
Returns
Trueif the Control key (also under macOS).This function doesn’t distinguish between right and left control keys.
Notice that
GetModifiersshould usually be used instead of this one.- Return type:
bool
- SetAltDown(self, down)¶
- Parameters:
down (bool)
- Return type:
None
- SetControlDown(self, down)¶
- Parameters:
down (bool)
- Return type:
None
- SetMetaDown(self, down)¶
- Parameters:
down (bool)
- Return type:
None
- SetRawControlDown(self, down)¶
- Parameters:
down (bool)
- Return type:
None
- SetShiftDown(self, down)¶
- Parameters:
down (bool)
- Return type:
None
- ShiftDown(self)¶
Returns
Trueif the Shift key is pressed.This function doesn’t distinguish between right and left shift keys.
Notice that
GetModifiersshould usually be used instead of this one.- Return type:
bool
Properties¶
- altDown¶
See
AltDownandSetAltDown
- controlDown¶
See
ControlDownandSetControlDown
- metaDown¶
See
MetaDownandSetMetaDown
- rawControlDown¶
See
RawControlDownandSetRawControlDown
- shiftDown¶
See
ShiftDownandSetShiftDown