如果窗口未激活则获取输入 (Windows)

发布于 2024-09-07 06:50:50 字数 353 浏览 1 评论 0原文

简短版本:

当窗口未激活时,如何使用 C++/C 在 Windows 中接收输入消息?

背景信息:

我目前正在开发一个不应该依赖于任何窗口的输入系统,因此它也可以在控制台中使用。

我的想法是创建一个仅接收消息的不可见窗口,这可以使用 HWND_MESSAGE 作为 hWndParent 。它仅在活动时接收输入消息,但我不希望这样。它应该始终接收输入(除非应用程序请求它不再这样做,例如因为它失去了焦点)。

我知道这是可能的,许多应用程序支持全局快捷方式(例如媒体播放器(播放控制)或即时消息(打开联系人列表)),我只是不知道如何。你知道吗?

Short version:

How can I receive input messages in Windows with C++/C when the window is not active?

Background information:

I'm currently working on an Input System that should not depend on any window, so it can e.g. be used in the console as well.

My idea is to create an invisible window only receiving messages, which is possible using HWND_MESSAGE as hWndParent. It only receives input messages when it's active though, and I don't want this. It should always receive input (unless the application requests it no longer does so, e.g. because it lost focus).

I know this is possible somehow, many applications support global shortcuts (e.g. media players (playback control) or instant messengers (opening the contact list)), I just don't know how. Do you know?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜警司 2024-09-14 06:50:50

选项:

  • RegisterHotKey(如果您只需要注册)一个或几个热键
  • SetWindowsHookEx 与 WH_KEYBOARD / WH_KEYBOARD_LL。当您需要过滤许多或所有键盘事件时使用。然而,钩子代码需要在DLL中实现(被加载到其他进程中)。您需要单独的 32 位和 64 位版本的 DLL

Options:

  • RegisterHotKey if you need to register just one or a few hotkeys
  • SetWindowsHookEx with WH_KEYBOARD / WH_KEYBOARD_LL. Use when you need to filter many or all keyboard events. However, the hook code needs to be implemented in a DLL (which is loaded into other processes). You need separate 32 bit and 64 bit versions of the DLL
画中仙 2024-09-14 06:50:50

您需要设置 Windows 键盘输入挂钩。 这里是一个示例做吧;用 C++ 更容易做到

You need to setup windows keyboard input hook. Here is an example how to do it; it is even easier to do in C++

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文