/**************************************************************************** ** ** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB). ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt3D module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ****************************************************************************/ #include "mouseeventdispatcherjob_p.h" #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE namespace Qt3DInput { namespace Input { class MouseEventDispatcherJobPrivate : public Qt3DCore::QAspectJobPrivate { public: MouseEventDispatcherJobPrivate() { } ~MouseEventDispatcherJobPrivate() override { } void postFrame(Qt3DCore::QAspectManager *manager) override; Qt3DCore::QNodeId m_mouseInput; QList m_mouseEvents; #if QT_CONFIG(wheelevent) QList m_wheelEvents; #endif }; MouseEventDispatcherJob::MouseEventDispatcherJob(Qt3DCore::QNodeId input, const QList &mouseEvents #if QT_CONFIG(wheelevent) , const QList &wheelEvents #endif ) : QAspectJob(*new MouseEventDispatcherJobPrivate) , m_inputHandler(nullptr) { Q_D(MouseEventDispatcherJob); d->m_mouseInput = input; d->m_mouseEvents = mouseEvents; #if QT_CONFIG(wheelevent) d->m_wheelEvents = wheelEvents; #endif SET_JOB_RUN_STAT_TYPE(this, JobTypes::MouseEventDispatcher, 0) } void MouseEventDispatcherJob::setInputHandler(InputHandler *handler) { m_inputHandler = handler; } void MouseEventDispatcherJob::run() { // NOP } void MouseEventDispatcherJobPrivate::postFrame(Qt3DCore::QAspectManager *manager) { QMouseHandler *node = qobject_cast(manager->lookupNode(m_mouseInput)); if (!node) return; QMouseHandlerPrivate *dnode = static_cast(QMouseHandlerPrivate::get(node)); for (const QT_PREPEND_NAMESPACE(QMouseEvent) &e : m_mouseEvents) dnode->mouseEvent(QMouseEventPtr::create(e)); #if QT_CONFIG(wheelevent) for (const QT_PREPEND_NAMESPACE(QWheelEvent) &e : m_wheelEvents) { QWheelEvent we(e); emit node->wheel(&we); } #endif } } // namespace Input } // namespace Qt3DInput QT_END_NAMESPACE