之前项目的代码从Qt4迁移到Qt5, 发现以前在Qt4中使用winEvent写的边缘拖动无法通过编译.

查了一下原来是在Qt5中已经移除winEvent, 并使用nativeEvent来代替.

那么在工程中只需要略加修改即可使用, 主要改两个地方:

1. 加入nativeEvent函数:


[cpp]view plaincopy

boolMainDialog::nativeEvent(constQByteArray&eventType,void*message,long*result)

{

Q_UNUSED(eventType);

MSG*msg=reinterpret_cast<MSG*>(message);

returnwinEvent(msg,result);

}



2. winEvent中在原来需要返回给父类处理的地方加个判断:



[cpp]view plaincopy

boolMainDialog::winEvent(MSG*message,long*result)

{

...

if(message->message!=WM_NCHITTEST)

{

#ifQT_VERSION<0x050000

returnQDialog::winEvent(message,result);

#else

returnQDialog::nativeEvent("",message,result);

#endif

}

...

}



这就可以使用了, 并且可以向后兼容.