First upload, 18 controller version

This commit is contained in:
2026-04-14 15:23:56 +02:00
commit 8c55001a1c
3810 changed files with 764061 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
// Copyright (C) 2024 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// @snippet qtro-init
PySide::RemoteObjects::init(module);
// @snippet qtro-init
// @snippet node-acquire
auto *typeObject = reinterpret_cast<PyTypeObject*>(%PYARG_1);
if (!PySide::inherits(typeObject, SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectReplica_IDX].fullName)) {
PyErr_SetString(PyExc_TypeError, "First argument must be a type deriving from QRemoteObjectReplica.");
return nullptr;
}
static PyObject *pyConstructWithNode = Shiboken::Enum::newItem(
Shiboken::Module::get(SbkPySide6_QtRemoteObjectsTypeStructs[SBK_QRemoteObjectReplica_ConstructorType_IDX]),
1 /* protected QRemoteObjectReplica::ConstructorType::ConstructWithNode */
);
Shiboken::AutoDecRef args;
if (pyArgs[1])
args.reset(PyTuple_Pack(3, %PYSELF, pyConstructWithNode, pyArgs[1]));
else
args.reset(PyTuple_Pack(2, %PYSELF, pyConstructWithNode));
PyObject *instance = PyObject_CallObject(%PYARG_1, args.object());
if (!instance)
return nullptr; // Propagate the exception
%PYARG_0 = instance;
// @snippet node-acquire