码迷,mamicode.com
首页 > Windows程序 > 详细

发现以前在Qt4中使用winEvent写的边缘拖动无法通过编译.

时间:2016-08-23 17:22:59      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:qt

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

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

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

1. 加入nativeEvent函数:   


[cpp] view plaincopy技术分享技术分享

  1. bool MainDialog::nativeEvent(const QByteArray &eventType, void *message, long *result)  

  2. {  

  3.     Q_UNUSED(eventType);  

  4.   

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

  6.     return winEvent(msg, result);  

  7. }  



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



[cpp] view plaincopy技术分享技术分享

  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. }  



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


发现以前在Qt4中使用winEvent写的边缘拖动无法通过编译.

标签:qt

原文地址:http://11496263.blog.51cto.com/11486263/1841372

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!