[PR #304] [MERGED] Added Mouse Scrolling/Keyboard Implementation #1083

Closed
opened 2026-02-27 15:53:02 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/304
Author: @ghost
Created: 7/29/2015
Status: Merged
Merged: 7/29/2015
Merged by: @MaxXor

Base: remote-desktopHead: remote-desktop


📝 Commits (7)

📊 Changes

56 files changed (+3260 additions, -36 deletions)

View changed files

📝 Client/Client.csproj (+1 -0)
📝 Client/Core/Commands/SurveillanceHandler.cs (+12 -1)
📝 Client/Core/Helper/NativeMethodsHelper.cs (+17 -4)
📝 Client/Core/Packets/PacketHandler.cs (+4 -0)
Client/Core/Packets/ServerPackets/DoKeyboardEvent.cs (+30 -0)
📝 Client/Core/Utilities/NativeMethods.cs (+4 -1)
📝 Client/Enums/MouseAction.cs (+2 -0)
📝 Client/Program.cs (+1 -0)
Server/Core/Helper/MouseKeyHook/Hook.cs (+38 -0)
Server/Core/Helper/MouseKeyHook/HotKeys/HotKeyArgs.cs (+33 -0)
Server/Core/Helper/MouseKeyHook/HotKeys/HotKeySet.cs (+287 -0)
Server/Core/Helper/MouseKeyHook/HotKeys/HotKeySetCollection.cs (+48 -0)
Server/Core/Helper/MouseKeyHook/HotKeys/HotKeySetsListener.cs (+4 -0)
Server/Core/Helper/MouseKeyHook/HotKeys/ReadMe.txt (+85 -0)
Server/Core/Helper/MouseKeyHook/IKeyboardEvents.cs (+43 -0)
Server/Core/Helper/MouseKeyHook/IKeyboardMouseEvents.cs (+15 -0)
Server/Core/Helper/MouseKeyHook/IMouseEvents.cs (+73 -0)
Server/Core/Helper/MouseKeyHook/Implementation/AppEventFacade.cs (+19 -0)
Server/Core/Helper/MouseKeyHook/Implementation/AppKeyListener.cs (+27 -0)
Server/Core/Helper/MouseKeyHook/Implementation/AppMouseListener.cs (+21 -0)

...and 36 more files

📄 Description

Added Keyboard/Mouse hook to server's RDP form to access mouse data (scroll wheel) and implemented keyboard handling


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/quasar/Quasar/pull/304 **Author:** [@ghost](https://github.com/ghost) **Created:** 7/29/2015 **Status:** ✅ Merged **Merged:** 7/29/2015 **Merged by:** [@MaxXor](https://github.com/MaxXor) **Base:** `remote-desktop` ← **Head:** `remote-desktop` --- ### 📝 Commits (7) - [`08a7415`](https://github.com/quasar/Quasar/commit/08a74151850981d1ee7d277c4f770c41513fe01d) Added Mouse Scrolling to RDP - [`0f82ba9`](https://github.com/quasar/Quasar/commit/0f82ba9322580364212cb4621047560be0f822cf) Removed unused namespace - [`6f307b2`](https://github.com/quasar/Quasar/commit/6f307b210b9f58e59843b500e6124427be2d7409) Keyboard implementation for RDP - [`45742d2`](https://github.com/quasar/Quasar/commit/45742d234d43a8b99f74f93f97953947c3c5bd17) Small fix - [`efc4463`](https://github.com/quasar/Quasar/commit/efc44632a7aaadaac25d23e2887718bdca96afa9) Format fix - [`f01b555`](https://github.com/quasar/Quasar/commit/f01b5550afb33e1d1936cbddcd1210bb6b9ddbc4) Improved Keyboard handling - [`9416b22`](https://github.com/quasar/Quasar/commit/9416b22f4690e197a71d8be840db6e402b962172) Small fixes and prep for hotkeys ### 📊 Changes **56 files changed** (+3260 additions, -36 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+1 -0) 📝 `Client/Core/Commands/SurveillanceHandler.cs` (+12 -1) 📝 `Client/Core/Helper/NativeMethodsHelper.cs` (+17 -4) 📝 `Client/Core/Packets/PacketHandler.cs` (+4 -0) ➕ `Client/Core/Packets/ServerPackets/DoKeyboardEvent.cs` (+30 -0) 📝 `Client/Core/Utilities/NativeMethods.cs` (+4 -1) 📝 `Client/Enums/MouseAction.cs` (+2 -0) 📝 `Client/Program.cs` (+1 -0) ➕ `Server/Core/Helper/MouseKeyHook/Hook.cs` (+38 -0) ➕ `Server/Core/Helper/MouseKeyHook/HotKeys/HotKeyArgs.cs` (+33 -0) ➕ `Server/Core/Helper/MouseKeyHook/HotKeys/HotKeySet.cs` (+287 -0) ➕ `Server/Core/Helper/MouseKeyHook/HotKeys/HotKeySetCollection.cs` (+48 -0) ➕ `Server/Core/Helper/MouseKeyHook/HotKeys/HotKeySetsListener.cs` (+4 -0) ➕ `Server/Core/Helper/MouseKeyHook/HotKeys/ReadMe.txt` (+85 -0) ➕ `Server/Core/Helper/MouseKeyHook/IKeyboardEvents.cs` (+43 -0) ➕ `Server/Core/Helper/MouseKeyHook/IKeyboardMouseEvents.cs` (+15 -0) ➕ `Server/Core/Helper/MouseKeyHook/IMouseEvents.cs` (+73 -0) ➕ `Server/Core/Helper/MouseKeyHook/Implementation/AppEventFacade.cs` (+19 -0) ➕ `Server/Core/Helper/MouseKeyHook/Implementation/AppKeyListener.cs` (+27 -0) ➕ `Server/Core/Helper/MouseKeyHook/Implementation/AppMouseListener.cs` (+21 -0) _...and 36 more files_ </details> ### 📄 Description Added Keyboard/Mouse hook to server's RDP form to access mouse data (scroll wheel) and implemented keyboard handling --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:53:02 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#1083
No description provided.