aboutsummaryrefslogtreecommitdiff
path: root/libs/plugin_python/src/pybind11-qt/include/pybind11_qt/pybind11_qt_objects.h
blob: e16b5ea566cb5a4d23f42766b41584f98b3b2ad3 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef PYTHON_PYBIND11_QT_OBJECTS_HPP
#define PYTHON_PYBIND11_QT_OBJECTS_HPP

#include <pybind11/pybind11.h>

#include <QByteArray>
#include <QDateTime>
#include <QDir>
#include <QFileInfo>
#include <QIcon>
#include <QMainWindow>
#include <QPixmap>
#include <QSize>
#include <QUrl>
#include <QWidget>

#include "details/pybind11_qt_sip.h"
#include "details/pybind11_qt_utils.h"

#define PYQT_CLASS(QModule, QClass)                                                    \
    namespace pybind11::detail {                                                       \
        namespace qt {                                                                 \
            template <>                                                                \
            struct MetaData<QClass> {                                                  \
                constexpr static const auto class_name = #QClass;                      \
                constexpr static const auto python_name =                              \
                    const_name("PyQt6.") + const_name(#QModule) + const_name(".") +    \
                    const_name(#QClass);                                               \
            };                                                                         \
        }                                                                              \
        template <>                                                                    \
        struct type_caster<QClass*>                                                    \
            : std::conditional_t<std::is_copy_constructible_v<QClass>,                 \
                                 type_caster_generic, qt::qt_type_caster<QClass*>> {}; \
        template <>                                                                    \
        struct type_caster<QClass>                                                     \
            : std::conditional_t<std::is_copy_constructible_v<QClass>,                 \
                                 qt::qt_type_caster<QClass>, type_caster<QClass*>> {}; \
    }

// add declarations below to create bindings - the first argument is simply
// the name of the PyQt6 package containing the class, and is only used for
// the python signature

PYQT_CLASS(QtCore, QByteArray);
PYQT_CLASS(QtCore, QDateTime);
PYQT_CLASS(QtCore, QDir);
PYQT_CLASS(QtCore, QFileInfo);
PYQT_CLASS(QtCore, QObject);
PYQT_CLASS(QtCore, QSize);
PYQT_CLASS(QtCore, QUrl);

PYQT_CLASS(QtGui, QColor);
PYQT_CLASS(QtGui, QIcon);
PYQT_CLASS(QtGui, QPixmap);

PYQT_CLASS(QtWidgets, QMainWindow);
PYQT_CLASS(QtWidgets, QWidget);

#undef METADATA

#endif