Help with virtual keyboard
-
Hi i am doing one virtual key board but i have some questions.
Source: https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspxIt's only because i will include this controls and will be in different languages. In my case doesnt show message
Code:
switch (wParam) { case VK_CONTROL: qDebug() << "test"; break; default: break; }
-
Hi
it's very unclear where you have this code.
Unless its in a native windows event handler im not sure what you are trying? -
Hi
it's very unclear where you have this code.
Unless its in a native windows event handler im not sure what you are trying?@mrjj ups sorry i was very unclear i am trying to show my virtual keys to show in my terminal qdebug, Because i will need to implement in my virtual keyboard for windows thx!. I did wparam to capture and then show but seems not to work. virtual keyboard for windows*
-
Hi
it's very unclear where you have this code.
Unless its in a native windows event handler im not sure what you are trying? -
"seems not to work."
In what way?
If you are using Qt to get the key, it wont be the win API codes for the key.
http://doc.qt.io/qt-5/qt.html#Key-enumunless u show more code, its impossible to guess what u are doing and why u even have
wParam....