// Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QT3DANIMATION_QCHANNELMAPPING_H #define QT3DANIMATION_QCHANNELMAPPING_H #include #include #include QT_BEGIN_NAMESPACE namespace Qt3DAnimation { class QChannelMappingPrivate; class Q_3DANIMATIONSHARED_EXPORT QChannelMapping : public QAbstractChannelMapping { Q_OBJECT Q_PROPERTY(QString channelName READ channelName WRITE setChannelName NOTIFY channelNameChanged) Q_PROPERTY(Qt3DCore::QNode *target READ target WRITE setTarget NOTIFY targetChanged) Q_PROPERTY(QString property READ property WRITE setProperty NOTIFY propertyChanged) public: explicit QChannelMapping(Qt3DCore::QNode *parent = nullptr); ~QChannelMapping(); QString channelName() const; Qt3DCore::QNode *target() const; QString property() const; public Q_SLOTS: void setChannelName(const QString &channelName); void setTarget(Qt3DCore::QNode *target); void setProperty(const QString &property); Q_SIGNALS: void channelNameChanged(QString channelName); void targetChanged(Qt3DCore::QNode *target); void propertyChanged(QString property); protected: explicit QChannelMapping(QChannelMappingPrivate &dd, Qt3DCore::QNode *parent = nullptr); private: Q_DECLARE_PRIVATE(QChannelMapping) }; } // namespace Qt3DAnimation QT_END_NAMESPACE #endif // QT3DANIMATION_QCHANNELMAPPING_H