Added Mouse Scrolling/Keyboard Implementation#304
Added Mouse Scrolling/Keyboard Implementation#304MaxXor merged 7 commits intoremote-desktopfrom unknown repository
Conversation
Added Keyboard/Mouse hook to server to access mouse data and for future keyboard integration to RDP
|
Only thing left to do for keyboard handling is forwarding ALT and Windows key presses to client by setting hotkeys, setting an image for the |
|
Thanks for your work! You mean, when pressing the windows key or alt, it's processed on both computers, but we only need it on the client. So we are registering an hotkey for it in the Server Remote Desktop Window, right? |
|
@MaxXor, Basically, the form needs to be in focus to send input to the client machine, so if you want to send for example Windows key + R to open a run dialog, we don't want our start menu to come up on the host machine so it will only send it to the client. Alt + tab as well :D. I've found a better way other than registering the hotkey. The solution was right in front of my eyes lol. I will send another pull request when I've cleaned up a bit :) |
|
@d3agle Okay, I understand. Hehe thanks man! |
Added Keyboard/Mouse hook to server's RDP form to access mouse data (scroll wheel) and implemented keyboard handling