/**************************************************************************** ** ** Copyright (C) 2015 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 QT_BEGIN_NAMESPACE namespace Qt3DInput { namespace Input { namespace Quick { Quick3DPhysicalDevice::Quick3DPhysicalDevice(QObject *parent) : QObject(parent) { } QQmlListProperty Quick3DPhysicalDevice::axisSettings() { return QQmlListProperty(this, 0, &Quick3DPhysicalDevice::appendAxisSetting, &Quick3DPhysicalDevice::axisSettingsCount, &Quick3DPhysicalDevice::axisSettingAt, &Quick3DPhysicalDevice::clearAxisSettings); } void Quick3DPhysicalDevice::appendAxisSetting(QQmlListProperty *list, QAxisSetting *axisSetting) { Quick3DPhysicalDevice *device = qobject_cast(list->object); device->parentPhysicalDevice()->addAxisSetting(axisSetting); } QAxisSetting *Quick3DPhysicalDevice::axisSettingAt(QQmlListProperty *list, int index) { Quick3DPhysicalDevice *device = qobject_cast(list->object); return device->parentPhysicalDevice()->axisSettings().at(index); } int Quick3DPhysicalDevice::axisSettingsCount(QQmlListProperty *list) { Quick3DPhysicalDevice *device = qobject_cast(list->object); return device->parentPhysicalDevice()->axisSettings().count(); } void Quick3DPhysicalDevice::clearAxisSettings(QQmlListProperty *list) { Quick3DPhysicalDevice *device = qobject_cast(list->object); const auto axisSettings = device->parentPhysicalDevice()->axisSettings(); for (QAxisSetting *axisSetting : axisSettings) device->parentPhysicalDevice()->removeAxisSetting(axisSetting); } } // namespace Quick } // namespace Input } // namespace Qt3DInput QT_END_NAMESPACE