The QKeySequence class encapsulates a key sequence as used by shortcuts. .
This class is a JS wrapper around Qt's QKeySequence class
QKeySequence inherits from Component
Example
const { QKeySequence } = require("@nodegui/nodegui");const keySequence = new QKeySequence(`Ctrl+L`);
new QKeySequence(sequence?)
sequencestring (optional). String representation of the key sequence. For example:Ctrl+M
Static Methods
QKeySequence can access all the static methods defined in Component
Instance Properties
QKeySequence can access all the instance properties defined in Component
Instance Methods
QKeySequence can access all the instance methods defined in Component Additionally it also has the following instance methods:
keySequence.count()
Returns the number of keys in the key sequence. The maximum is 4. It calls the native method QKeySequence: count.