3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-22 07:05:54 +00:00
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

40 lines
712 B
C++

/*
SPDX-FileCopyrightText: 2014 Eike Hein <hein@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "wheelinterceptor.h"
#include <QCoreApplication>
WheelInterceptor::WheelInterceptor(QQuickItem *parent)
: QQuickItem(parent)
{
}
WheelInterceptor::~WheelInterceptor()
{
}
QObject *WheelInterceptor::destination() const
{
return m_destination;
}
void WheelInterceptor::setDestination(QObject *destination)
{
if (m_destination != destination) {
m_destination = destination;
Q_EMIT destinationChanged();
}
}
void WheelInterceptor::wheelEvent(QWheelEvent *event)
{
if (m_destination) {
QCoreApplication::sendEvent(m_destination, event);
}
}