multitouch-keyboard

Display Windows Touch Keyboard

狂风中的少年 提交于 2019-12-23 03:39:11
问题 i am writing an application for windows 8 with Qt and Qml. I want a touch keyboard appears when I set focus to a text input field, such as a search box. Things like textInput.openSoftwareInputPanel(); doesn’t work for a desktop application. Windows 8 have a default touch keyboard, it is possible to display this keyboard. I can’t find any solution for this problem. Can anyone help me? 回答1: Ok i have solved the problem, with: QProcess *process = new QProcess(this); QString program = "explorer

Define input type for Windows 10 touch keyboard from a JavaFX application

若如初见. 提交于 2019-12-06 09:37:09
问题 I have a working JavaFX app running on windows 10. I would like to use the touch-keyboard in a similar to MSDN user input scope to change the touch keyboard HOWEVER there is no way to interact with it. All textfieeds open the Default keyboard. I would like to find the closest to JavaFX as possible solution. Things I have tries so far: Tried to use the WM_MESSAGE to trick the OS, see Here. This is a messy workaround that does not work on windows 10. Encapsulating the WM_MESSAGE or InputScope