InputChord QML Type
Interfaz QML para la clase C++ Qt3DInput::QInputChord. Más...
| Import Statement: | import Qt3D.Input 2.11 |
| In C++: | QInputChord |
| Inherits: | |
| Status: | Deprecated |
Propiedades
Descripción detallada
Representa un conjunto de QAbstractActionInput's que deben ser disparados a la vez.
El siguiente ejemplo muestra una secuencia que será disparada presionando las teclas G, D, y J en ese orden con un tiempo máximo entre presiones de tecla de 1 segundo y un tiempo máximo total de entrada de 3 segundos.
InputChord { interval: 1000 timeout: 3000 chords: [ ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_G] }, ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_D] }, ActionInput { sourceDevice: keyboardSourceDevice keys: [Qt.Key_J] } ] }
Documentación de propiedades
chords : list<AbstractActionInput>
La lista de AbstractActionInput que deben activarse para activar esta entrada agregada.
timeout : int
© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.