Replace usage of deprecated QWheelEvent members

This commit is contained in:
Dale Glass 2022-06-05 13:23:25 +02:00
parent 044f08b931
commit 8a12bf1749
2 changed files with 14 additions and 11 deletions

View file

@ -173,9 +173,13 @@ bool OffscreenSurface::eventFilter(QObject* originalDestination, QEvent* event)
case QEvent::Wheel: {
QWheelEvent* wheelEvent = static_cast<QWheelEvent*>(event);
QPointF transformedPos = mapToVirtualScreen(wheelEvent->pos());
QWheelEvent mappedEvent(transformedPos, wheelEvent->delta(), wheelEvent->buttons(), wheelEvent->modifiers(),
wheelEvent->orientation());
QPointF transformedPos = mapToVirtualScreen(wheelEvent->position());
QWheelEvent mappedEvent(transformedPos, wheelEvent->globalPosition(), wheelEvent->pixelDelta(), wheelEvent->angleDelta(),
wheelEvent->buttons(), wheelEvent->modifiers(), wheelEvent->phase(),
wheelEvent->inverted(), wheelEvent->source());
mappedEvent.ignore();
if (QCoreApplication::sendEvent(_sharedObject->getWindow(), &mappedEvent)) {
return mappedEvent.isAccepted();

View file

@ -31,11 +31,10 @@ WheelEvent::WheelEvent() :
}
WheelEvent::WheelEvent(const QWheelEvent& event) {
x = event.x();
y = event.y();
x = event.position().x();
y = event.position().y();
delta = event.delta();
if (event.orientation() == Qt::Horizontal) {
if (event.angleDelta().x() != 0) {
orientation = "HORIZONTAL";
} else {
orientation = "VERTICAL";