我编写了当窗口未聚焦时检测按键的代码:

// MainHamsterDlg.cpp : implementation file

#include "stdafx.h"
#include "MainHamsterDlg.h"

// MainHamsterDlg dialog
IMPLEMENT_DYNAMIC(MainHamsterDlg, CDialogEx)

MainHamsterDlg::MainHamsterDlg(CWnd* pParent)
    : CDialogEx(MainHamsterDlg::IDD, pParent)
    {}

void MainHamsterDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
}


BEGIN_MESSAGE_MAP(MainHamsterDlg, CDialogEx)
   ON_WM_TIMER()
END_MESSAGE_MAP()

HHOOK _hook;
KBDLLHOOKSTRUCT kbdStruct;

LRESULT __stdcall HookCallback(int nCode, WPARAM wParam, LPARAM lParam)
{
   if (nCode >= 0)
   {
      if (wParam == WM_KEYUP)
      {
          kbdStruct = *((KBDLLHOOKSTRUCT*)lParam);
          if (kbdStruct.vkCode == VK_INSERT)
          {
              //I want start timer there
          }
       }
    }
return CallNextHookEx(_hook, nCode, wParam, lParam);
}

void SetHook()
{
   if (!(_hook = SetWindowsHookEx(WH_KEYBOARD_LL, HookCallback, NULL, 0)))
   {
      MessageBox(NULL, "Failed to install hook!", "Error", MB_ICONERROR);
   }
}

void ReleaseHook()
{
   UnhookWindowsHookEx(_hook);
}

BOOL MainHamsterDlg::OnInitDialog()
{
   SetHook();
   //SetTimer(0, 0, NULL); <<<------- this starts timer
   CDialogEx::OnInitDialog();
   return TRUE;
}

void MainHamsterDlg::OnTimer(UINT nIDEvent)
{
    //do something
CDialog::OnTimer(nIDEvent);
}


当窗口未聚焦时,我想在按键时启动计时器。我是否需要使用一些指针或从该函数调用SetTimer的对象。我想知道,如果在应用程序没有重点关注的情况下,使计时器在按键上工作还有更好的问题。

最佳答案

SetTimer(MSDN)的文档指出,您需要传递HWND,以便获得OnTimer通知。因此,您将必须以某种方式使CDialo-> m_hWnd成为全局win32 SetTimer函数。

另一种选择是在按键时从窗口挂钩函数调用MainHamsterDlg的成员函数,对话框可以在SetTimer(CWnd :: SetTimer)上调用它。 HookCallback仍然需要以某种方式了解对话框对象引用。

我不知道将键盘消息发送到非焦点窗口的任何其他方法。

10-05 22:30