从Qt4 迁移到Qt5 winEvent代替为nativeEvent

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

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

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

1. 加入nativeEvent函数:   

[cpp]  view plain copy
  1. bool MainDialog::nativeEvent(const QByteArray &eventType, void *message, long *result)  
  2. {  
  3.     Q_UNUSED(eventType);  
  4.   
  5.     MSG* msg = reinterpret_cast(message);  
  6.     return winEvent(msg, result);  
  7. }  


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

[cpp]  view plain copy
  1. bool MainDialog::winEvent(MSG *message, long *result)  
  2. {  
  3.     ...  
  4.     if (message->message != WM_NCHITTEST )  
  5.     {  
  6. #if QT_VERSION < 0x050000  
  7.         return QDialog::winEvent(message, result);  
  8. #else  
  9.         return QDialog::nativeEvent("", message, result);  
  10. #endif  
  11.     }  
  12.     ...  
  13. }  

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

你可能感兴趣的:(Qt)