blob: 88d585892ee197a050625a6d51a11a2dbbc61224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
|