MFC中非模态对话框不响应PreTranslateMessage函数的解决方法

来源:https://blog.csdn.net/lqlblog/article/details/49430721

这篇贴子很好,帮了我大忙

 

 

    程序员真心不容易啊,为了一个好的用户体验真可谓是操碎了心。今天由于项目需要,需要在非模态对话框上,当鼠标处于某个位置的时候有提示框显示。实现这个功能本来很简单,但是却遇到了一个郁闷的问题:PreTranslateMessage函数没响应。于是各种度娘,可惜度娘非谷歌,找了一个小时终于在一个隐蔽的地方找到了解决方法。

    首先我介绍下当鼠标处于特定位置的时候有提示信息显示的实现方法。

    需要使用MFC的CToolTipCtrl控件。

    1.首先在Dialog类中添加一个成员对象

    

  1.  //消息提示框
  2.  CToolTipCtrl m_toolTip;

    2.在OnInitDialog()函数中创建消息提示框

  1.  //创建消息提示框
  2.  EnableToolTips(TRUE);//enable use it
  3.  BOOL bRet = m_toolTip.Create(this, TTS_ALWAYSTIP | WS_CHILD | WS_VISIBLE);
  4.  m_toolTip.AddTool(this);
  5.  m_toolTip.Activate(TRUE);
  6.  m_toolTip.SetDelayTime(150);</span></span>


    3.捕获鼠标的移动消息OnMouseMove,当鼠标处在某一特定区域的时候,弹出消息提示框。切换消息内容使用CToolTipCtrl::UpdateTipText函数。

  1.  void CDisplayPicDlg::OnMouseMove(UINT nFlags, CPoint point)
  2.  {
  3.  //如果鼠标在矩形所在区域,需要把箭头鼠标变成手型的
  4.  int iSel = GetSelectCameraNo(point);
  5.  if(-1 != iSel)
  6.  {
  7.  SetCursor(LoadCursor(NULL, IDC_HAND));
  8.  m_toolTip.UpdateTipText(m_stMonitorCamera[iSel].szCamereName, this);
  9.  }
  10.  else//还原成箭头鼠标形式
  11.  {
  12.  SetCursor(LoadCursor(NULL, IDC_ARROW));
  13.  m_toolTip.UpdateTipText("", this);
  14.  }
  15.  if(-1 != m_lCameraIdPre)
  16.  {
  17.  SetCursor(LoadCursor(NULL, IDC_ARROW) );
  18.  }
  19.  //.....................
  20.  }

     4.重写基类的PreTranslateMessage函数

  1.  BOOL CDisplayPicDlg::PreTranslateMessage(MSG* pMsg)
  2.  {
  3.  m_toolTip.RelayEvent(pMsg);
  4.  return CDialog::PreTranslateMessage(pMsg);
  5.  }
  6.  

     好了,做到这四部就基本完成了。当自己满怀信息一运行发现根本没有弹出提示信息。经过调试发现,PreTranslateMessage函数并没有被调用,于是引出了重要的主题,非模态对话框如何响应PreTranslateMessage函数的问题。经过一番百度,终于找到了解决方法。

在MFC的App类中需要用Hook来勾取消息,需要注意的是GetMessageProc是个回调函数,所以我们需要将它设成类的静态成员函数。

即:

  1.  class CStaticMapGPSApp : public COleControlModule
  2.  {
  3.  public:
  4.  BOOL InitInstance();
  5.  int ExitInstance();
  6.  static LRESULT CALLBACK GetMessageProc(int nCode, WPARAM wParam, LPARAM lParam);
  7.   
  8.  HHOOK m_hHook;
  9.  protected:
  10.   
  11.  };

 

    1.  LRESULT CALLBACK CStaticMapGPSApp::GetMessageProc(int nCode, WPARAM wParam, LPARAM lParam)
    2.  {
    3.  AFX_MANAGE_STATE(AfxGetStaticModuleState( ));
    4.  LPMSG lpMsg = (LPMSG) lParam;
    5.   
    6.  if(AfxGetApp()->PreTranslateMessage(lpMsg))
    7.  {
    8.  lpMsg->message = WM_NULL;
    9.  lpMsg->lParam = 0L;
    10.  lpMsg->wParam = 0;
    11.  }
    12.   
    13.  // Passes the hook information to the next hook procedure in
    14.  // the current hook chain.
    15.  return ::CallNextHookEx(theApp.m_hHook, nCode, wParam, lParam);
    16.  }
    17.   
    18.  // CStaticMapGPSApp::InitInstance - DLL initialization
    19.   
    20.  BOOL CStaticMapGPSApp::InitInstance()
    21.  {
    22.  BOOL bInit = COleControlModule::InitInstance();
    23.   
    24.  if (bInit)
    25.  {
    26.  // TODO: Add your own module initialization code here.
    27.  m_hHook = ::SetWindowsHookEx(
    28.  WH_GETMESSAGE,
    29.  GetMessageProc,
    30.  AfxGetInstanceHandle(),
    31.  GetCurrentThreadId());
    32.   
    33.  ASSERT (hHook);
    34.  return CWinApp::InitInstance();
    35.  }
    36.   
    37.  return bInit;
    38.  }
    39.   
    40.   
    41.   
    42.  // CStaticMapGPSApp::ExitInstance - DLL termination
    43.   
    44.  int CStaticMapGPSApp::ExitInstance()
    45.  {
    46.  // TODO: Add your own module termination code here.
    47.  UnhookWindowsHookEx((HHOOK)m_hHook);
    48.  return COleControlModule::ExitInstance();
    49.  }

 

上一篇:Vue 实现在文本溢出后浮现Tooltip、及文本展开收起效果


下一篇:echarts图 hover出来的背景尺寸大小设置