// Copyright (C) 2017 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include "quick3dvertexblendanimation_p.h" QT_BEGIN_NAMESPACE namespace Qt3DAnimation { namespace Quick { QQuick3DVertexBlendAnimation::QQuick3DVertexBlendAnimation(QObject *parent) : QObject(parent) { } QQmlListProperty QQuick3DVertexBlendAnimation::morphTargets() { using qt_size_type = qsizetype; using ListContentType = Qt3DAnimation::QMorphTarget; auto appendFunction = [](QQmlListProperty *list, ListContentType *morphTarget) { QQuick3DVertexBlendAnimation *animation = qobject_cast(list->object); if (animation) animation->parentVertexBlendAnimation()->addMorphTarget(morphTarget); }; auto countFunction = [](QQmlListProperty *list) -> qt_size_type { QQuick3DVertexBlendAnimation *animation = qobject_cast(list->object); if (animation) return animation->parentVertexBlendAnimation()->morphTargetList().size(); return 0; }; auto atFunction = [](QQmlListProperty *list, qt_size_type index) -> ListContentType * { QQuick3DVertexBlendAnimation *animation = qobject_cast(list->object); if (animation) { return qobject_cast( animation->parentVertexBlendAnimation()->morphTargetList().at(index)); } return nullptr; }; auto clearFunction = [](QQmlListProperty *list) { QQuick3DVertexBlendAnimation *animation = qobject_cast(list->object); if (animation) animation->parentVertexBlendAnimation()->setMorphTargets({}); }; return QQmlListProperty(this, nullptr, appendFunction, countFunction, atFunction, clearFunction); } } // namespace Quick } // namespace Qt3DAnimation QT_END_NAMESPACE #include "moc_quick3dvertexblendanimation_p.cpp"