Can we achieve Ctrl+S/ Ctrl+N/ Ctrl+O for saving file / new file / open file behavior with QtVirtualKeyboard? Can we get Key events from QtVirtualKeyboard?
-
I did tried to handle the QEvent::keyPress in eventfilter but in case of qtvirtualkeyboard I dont get any keyPress/keyRelease events for any key pressed from virtual keyboard? can any one help out
I have added Ctrl Key in layout through main.qml this way:
Key {
key: Qt.Key_Control
displayText: "Ctrl"
functionKey: true
uppercased: false
weight: 150
}My understanding is in QtVirtualKeyboard src code keyboard.qml handles the virtual key presses n don't generate any signals or events only modifiers like Alt/Ctrl we can get as they are unhandled. Any pointer will help