Здесь есть список общедоступных свойств: http://doc.qt.io/qt-5/qkeyevent.html
Я пытаюсь получить к ним доступ:
Keys.onPressed: {
console.log("matches: ", event.matches("="));
console.log("text: ", event.text());
console.log("native modifiers: ", event.nativeModifiers());
console.log("native scan code: ", event.nativeScanCode());
console.log("native virtual key: ", event.nativeVirtualKey());
}
Я могу получить доступ к свойству matches
, но не к остальным.
24.317 D: onPressed: matches: false
24.317 W: unknown: ...: TypeError: Property 'text' of object QQuickKeyEvent(0x10e6cad90) is not a function
Почему?