[PR #306] [MERGED] Improved Remote Desktop #1086

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

📋 Pull Request Information

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

Base: masterHead: remote-desktop


📝 Commits (10+)

📊 Changes

69 files changed (+3346 additions, -205 deletions)

View changed files

📝 Client/Client.csproj (+1 -1)
📝 Client/Core/Commands/CommandHandler.cs (+0 -1)
📝 Client/Core/Commands/SurveillanceHandler.cs (+47 -66)
📝 Client/Core/Helper/NativeMethodsHelper.cs (+20 -7)
📝 Client/Core/Packets/ClientPackets/GetDesktopResponse.cs (+1 -1)
📝 Client/Core/Packets/PacketHandler.cs (+4 -0)
Client/Core/Packets/ServerPackets/DoKeyboardEvent.cs (+30 -0)
📝 Client/Core/Packets/ServerPackets/GetDesktop.cs (+1 -6)
📝 Client/Core/Utilities/NativeMethods.cs (+4 -1)
📝 Client/Enums/MouseAction.cs (+2 -0)
Client/Enums/RemoteDesktopAction.cs (+0 -8)
📝 Client/Program.cs (+1 -1)
📝 Server/Controls/RapidPictureBox.cs (+1 -1)
📝 Server/Core/Commands/SurveillanceHandler.cs (+17 -8)
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)

...and 49 more files

📄 Description

  • Supports Mouse Scrolling
  • Supports Keyboard Input

🔄 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/306 **Author:** [@MaxXor](https://github.com/MaxXor) **Created:** 7/29/2015 **Status:** ✅ Merged **Merged:** 7/29/2015 **Merged by:** [@MaxXor](https://github.com/MaxXor) **Base:** `master` ← **Head:** `remote-desktop` --- ### 📝 Commits (10+) - [`834dd12`](https://github.com/quasar/Quasar/commit/834dd12592245e8cb955c63d8712eb01ffa1bb1b) Old Remote Desktop - [`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 - [`72c4815`](https://github.com/quasar/Quasar/commit/72c4815ad64828db7d4716be4673f3cde5089128) Added Icons to keyboard input button - [`c3f9b67`](https://github.com/quasar/Quasar/commit/c3f9b6793883583ba64260ec4fdf80e8258632fe) Merge pull request #305 from MaxXor/pr/304 ### 📊 Changes **69 files changed** (+3346 additions, -205 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+1 -1) 📝 `Client/Core/Commands/CommandHandler.cs` (+0 -1) 📝 `Client/Core/Commands/SurveillanceHandler.cs` (+47 -66) 📝 `Client/Core/Helper/NativeMethodsHelper.cs` (+20 -7) 📝 `Client/Core/Packets/ClientPackets/GetDesktopResponse.cs` (+1 -1) 📝 `Client/Core/Packets/PacketHandler.cs` (+4 -0) ➕ `Client/Core/Packets/ServerPackets/DoKeyboardEvent.cs` (+30 -0) 📝 `Client/Core/Packets/ServerPackets/GetDesktop.cs` (+1 -6) 📝 `Client/Core/Utilities/NativeMethods.cs` (+4 -1) 📝 `Client/Enums/MouseAction.cs` (+2 -0) ➖ `Client/Enums/RemoteDesktopAction.cs` (+0 -8) 📝 `Client/Program.cs` (+1 -1) 📝 `Server/Controls/RapidPictureBox.cs` (+1 -1) 📝 `Server/Core/Commands/SurveillanceHandler.cs` (+17 -8) ➕ `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) _...and 49 more files_ </details> ### 📄 Description - Supports Mouse Scrolling - Supports Keyboard Input --- <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:03 +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#1086
No description provided.