您好,登錄后才能下訂單哦!
之前項(xiàng)目的代碼從Qt4遷移到Qt5, 發(fā)現(xiàn)以前在Qt4中使用winEvent寫的邊緣拖動無法通過編譯.
查了一下原來是在Qt5中已經(jīng)移除winEvent, 并使用nativeEvent來代替.
那么在工程中只需要略加修改即可使用, 主要改兩個地方:
1. 加入nativeEvent函數(shù):
[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
}
...
}
這就可以使用了, 并且可以向后兼容.
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。