标签:qt
之前项目的代码从Qt4迁移到Qt5, 发现以前在Qt4中使用winEvent写的边缘拖动无法通过编译.
查了一下原来是在Qt5中已经移除winEvent, 并使用nativeEvent来代替.
那么在工程中只需要略加修改即可使用, 主要改两个地方:
1. 加入nativeEvent函数:
[cpp] view plaincopy
bool MainDialog::nativeEvent(const QByteArray &eventType, void *message, long *result)
{
Q_UNUSED(eventType);
MSG* msg = reinterpret_cast<MSG*>(message);
return winEvent(msg, result);
}
2. winEvent中在原来需要返回给父类处理的地方加个判断:
[cpp] view plaincopy
bool MainDialog::winEvent(MSG *message, long *result)
{
...
if (message->message != WM_NCHITTEST )
{
#if QT_VERSION < 0x050000
return QDialog::winEvent(message, result);
#else
return QDialog::nativeEvent("", message, result);
#endif
}
...
}
这就可以使用了, 并且可以向后兼容.
发现以前在Qt4中使用winEvent写的边缘拖动无法通过编译.
标签:qt
原文地址:http://11496263.blog.51cto.com/11486263/1841372