Troubleshoot Qt nativeEvent 不响应 :SendMessage
环境: Qt5.12.7 + vs2017
前言
两个exe采用window api 进行通信,
发端A.exe:
#pragma comment (lib, "User32.lib");
HWND m_wnd = ::FindWindow(NULL,("B"));
COPYDATASTRUCT data;
::SendMessage(m_wnd, WM_COPYDATA, (WPARAM)wid, (LPARAM)&data);
接收端:
bool nativeEvent(const QByteArray &eventType, void *message, long *result)
{
if (eventType == "windows_generic_MSG") //windows平台
{
//WId wid = this->winId(); //这个窗口的winid
MSG* msg = reinterpret_cast<MSG*>(message); //
if(msg->message == WM_COPYDATA)//消息类型
{
}
}
一、问题描述
接收端B.exe 主界面为QWidget 子类,重写nativeEvent函数接收消息,B.exe 启动后 setHide(true),隐藏界面,软件托盘显示,B.exe出现无法接收消息情况
二、问题分析
调试发现B.exe在隐藏显示时,A.exe成功::senMessage,但B.exe 并未进入nativeEvent 函数,故并未进入Qt Event循环
问题修改
《1》消息接收端类B 继承 QAbstractNativeEventFilter
实现virtual bool nativeEventFilter(const QByteArray &eventType, void *message, long *) Q_DECL_OVERRIDE;
在nativeEventFilter中进行消息处理
《2》main.cpp 中:
QApplication a(argc, argv);
B receiver;
a.installNativeEventFilter(&receiver);