QKeyEvent#
QKeyEvent
event type send by KeyBoardHandler. More…
Synopsis#
Functions#
def
count
()def
isAccepted
()def
isAutoRepeat
()def
key
()def
modifiers
()def
nativeScanCode
()def
setAccepted
(accepted)def
text
()def
type
()
Detailed Description#
Contains parameters that describe a key event
- class PySide6.Qt3DInput.Qt3DInput.QKeyEvent(type, key, modifiers[, text=""[, autorep=false[, count=1]]])#
- Parameters
count –
ushort
key – int
autorep – bool
modifiers –
KeyboardModifiers
type –
Type
text – str
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.count()#
- Return type
int
Holds the number of keys involved in this event. If text
is not empty, this is simply the length of the string.
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.isAccepted()#
- Return type
bool
Setting accepted to true
prevents the key event from being propagated to the item’s parent.
Generally, if the item acts on the key event then it should be accepted so that ancestor items do not also respond to the same event.
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.isAutoRepeat()#
- Return type
bool
Holds whether this event comes from an auto-repeating key.
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.key()#
- Return type
int
This property holds the code of the key that was pressed or released.
See Key
for the list of keyboard codes.
See also key()
.
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.matches(key_)#
- Parameters
key –
StandardKey
- Return type
bool
Returns true
if the key event matches the given standard key key_
; otherwise returns false
.
See also
StandardKey
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.modifiers()#
- Return type
int
This property holds the keyboard modifier flags that existed immediately before the event occurred.
See also modifiers()
.
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.nativeScanCode()#
- Return type
int
This property contains the native scan code of the key that was pressed. It is passed through from QKeyEvent
unchanged.
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.setAccepted(accepted)#
- Parameters
accepted – bool
Setting accepted to true
prevents the key event from being propagated to the item’s parent.
Generally, if the item acts on the key event then it should be accepted so that ancestor items do not also respond to the same event.
- PySide6.Qt3DInput.Qt3DInput.QKeyEvent.text()#
- Return type
str
This property holds the Unicode text that the key generated. The text returned can be an empty string in cases where modifier keys, such as Shift, Control, Alt, and Meta, are being pressed or released. In such cases key
will contain a valid value.
Returns the type of the event.