blob: 875369c27103b0054b8359c00a1af7abe1ec7584 (
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
32
33
34
35
36
37
38
39
40
|
// Copyright (C) 2024 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
#ifndef PYSIDEQSLOTOBJECT_P_H
#define PYSIDEQSLOTOBJECT_P_H
#include "pysidemacros.h"
#include <sbkpython.h>
#include <QtCore/QObject>
#include <QtCore/qobjectdefs.h>
#include <memory>
namespace PySide
{
class DynamicSlot;
class PySideQSlotObject : public QtPrivate::QSlotObjectBase
{
Q_DISABLE_COPY_MOVE(PySideQSlotObject)
public:
explicit PySideQSlotObject(PyObject *callable, const QByteArrayList ¶meterTypes,
const char *returnType = nullptr);
~PySideQSlotObject();
private:
static void impl(int which, QSlotObjectBase *this_, QObject *receiver, void **args, bool *ret);
void call(void **args);
std::unique_ptr<DynamicSlot> m_dynamicSlot;
const QByteArrayList m_parameterTypes;
const char *m_returnType;
};
} // namespace PySide
#endif // PYSIDEQSLOTOBJECT_P_H
|