File: extension_api.rst

package info (click to toggle)
python-qt4 4.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 40,300 kB
  • ctags: 6,185
  • sloc: python: 125,988; cpp: 13,291; xml: 292; makefile: 246; php: 27; sh: 2
file content (208 lines) | stat: -rw-r--r-- 8,243 bytes parent folder | download | duplicates (2)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
The PyQt4 Extension API
=======================

.. versionadded:: 4.12

An important feature of PyQt4 (and SIP generated modules in general) is the
ability for other extension modules to build on top of it.
`QScintilla <http://www.riverbankcomputing.com/software/qscintilla/>`__ is
such an example.

PyQt4 provides an extension API that can be used by other modules.  This has
the advantage of sharing code and also enforcing consistent behaviour.  Part of
the API is accessable from Python and part from C++.


Python API
----------

The Python part of the API is accessible via the :mod:`~PyQt4.QtCore` module
and is typically used by an extension module's equivalent of PyQt4's
:program:`configure.py`.

The API consists of :attr:`PyQt4.QtCore.PYQT_CONFIGURATION` which is a dict
that describes how PyQt4 was configured.  At the moment it contains a single
value called ``sip_flags`` which is a string containing the ``-t`` and ``-x``
flags that were passed to the :program:`sip` executable by
:program:`configure.py`.  Other extension modules must use the same flags in
their configuration.

This information is also provided by SIP v4's :mod:`~sip.sipconfig` module.
However this module will not be implemented by SIP v5.


C++ API
-------

The C++ API is a set of functions.  The addresses of each function is obtained
by calling SIP's :c:func:`sipImportSymbol` function with the name of the
function required.

Several of the functions are provided as a replacement for SIP v4 features
(i.e. ``SIP_ANYSLOT``, ``SIP_QOBJECT``, ``SIP_RXOBJ_CON``, ``SIP_RXOBJ_DIS``,
``SIP_SIGNAL``, ``SIP_SLOT``, ``SIP_SLOT_CON`` and ``SIP_SLOT_DIS``) that are
not supported by SIP v5.

The functions exported by PyQt4 are as follows:

.. cpp:function:: char **pyqt4_from_argv_list(PyObject *argv_list, int &argc)

    Convert a Python list to a standard C array of command line arguments and
    an argument count.

    :param argv_list:
        is the Python list of arguments.
    :param argc:
        is updated with the number of arguments in the list.
    :return:
        an array of pointers to the arguments on the heap.


.. cpp:function:: PyObject *pyqt4_from_qvariant_by_type(QVariant &value, PyObject *type)

    Convert a :class:`~PyQt4.QtCore.QVariant` to a Python object according to
    an optional Python type.

    :param value:
        is the value to convert.
    :param type:
        is the Python type.
    :return:
        the converted value.  If it is ``0`` then a Python exception will have
        been raised.


.. cpp:function:: sipErrorState pyqt4_get_connection_parts(PyObject *slot, QObject *transmitter, const char *signal_signature, bool single_shot, QObject **receiver, QByteArray &slot_signature)

    Get the receiver object and slot signature to allow a signal to be
    connected to an optional transmitter.

    :param slot:
        is the slot and should be a callable or a bound signal.
    :param transmitter:
        is the optional :class:`~PyQt4.QtCore.QObject` transmitter.
    :param signal_signature:
        is the signature of the signal to be connected.
    :param single_shot:
        is ``true`` if the signal will only ever be emitted once.
    :param receiver:
        is updated with the :class:`~PyQt4.QtCore.QObject` receiver.  This may
        be a proxy if the slot requires it.
    :param slot_signature:
        is updated with the signature of the slot.
    :return:
        the error state.  If this is :c:data:`sipErrorFail` then a Python
        exception will have been raised.


.. cpp:function:: const char *pyqt4_get_pyqtsignal_parts(PyObject *signal, QObject **transmitter)

    Get the signal signature (and, optionally, the transmitter object) from a
    signal.

    :param signal:
        is the signal.
    :param transmitter:
        if it is a non-zero value it is updated with the
        :class:`~PyQt4.QtCore.QObject` transmitter.
    :return:
        the signature of the signal.  This will be zero if the signal not a
        bound signal (if the transmitter was requested) or an unbound signal.

.. cpp:function:: sipErrorState pyqt4_get_pyqtslot_parts(PyObject *slot, QObject **receiver, QByteArray &slot_signature)

    Get the receiver object and slot signature from a callable decorated with
    :func:`~PyQt4.QtCore.pyqtSlot`.

    :param slot:
        is the callable slot.
    :param receiver:
        is updated with the :class:`~PyQt4.QtCore.QObject` receiver.
    :param slot_signature:
        is updated with the signature of the slot.
    :return:
        the error state.  If this is :c:data:`sipErrorFail` then a Python
        exception will have been raised.


.. cpp:function:: const char *pyqt4_get_signal(PyObject *signal)

    Check that a Python object was returned by ``SIGNAL()`` or a signal object
    and return the string.

    :param signal:
        is the signal.
    :return:
        the string.  It will be 0 if the object does not refer to a signal.


.. cpp:function:: const char *pyqt4_get_slot(PyObject *slot)

    Check that a Python object was returned by ``SLOT()`` or ``SIGNAL()`` and
    return the string.

    :param slot:
        is the slot.
    :return:
        the slot.  It will be 0 if the object does not refer to a slot.


.. cpp:function:: void pyqt4_register_from_qvariant_convertor(bool (*convertor)(const QVariant *, PyObject **))

    Register a convertor function that converts a
    :class:`~PyQt4.QtCore.QVariant` value to a Python object.

    :param convertor:
        is the convertor function.  This takes two arguments.  The first
        argument is the :class:`~PyQt4.QtCore.QVariant` value to be converted.
        The second argument is updated with a reference to the result of the
        conversion and it will be ``0``, and a Python exception raised, if
        there was an error.  The convertor will return ``true`` if the value
        was handled so that no other convertor will be tried.


.. cpp:function:: void pyqt4_register_to_qvariant_convertor(bool (*convertor)(PyObject *, QVariant *, bool *))

    Register a convertor function that converts a Python object to a
    :class:`~PyQt4.QtCore.QVariant` value.

    :param convertor:
        is the convertor function.  This takes three arguments.  The first
        argument is the Python object to be converted. The second argument is a
        pointer to :class:`~PyQt4.QtCore.QVariant` value that is updated with
        the result of the conversion.  The third argument is updated with an
        error flag which will be ``false``, and a Python exception raised, if
        there was an error.  The convertor will return ``true`` if the value
        was handled so that no other convertor will be tried.


.. cpp:function:: void pyqt4_register_to_qvariant_data_convertor(bool (*convertor)(PyObject *, void *, int, bool *))

    Register a convertor function that converts a Python object to the
    pre-allocated data of a :class:`~PyQt4.QtCore.QVariant` value.

    :param convertor:
        is the convertor function.  This takes four arguments.  The first
        argument is the Python object to be converted. The second argument is a
        pointer to the pre-allocated data of a :class:`~PyQt4.QtCore.QVariant`
        value that is updated with the result of the conversion.  The third
        argument is the meta-type of the value.  The fourth argument is updated
        with an error flag which will be ``false``, and a Python exception
        raised, if there was an error.  The convertor will return ``true`` if
        the value was handled so that no other convertor will be tried.


.. cpp:function:: void pyqt4_update_argv_list(PyObject *argv_list, int argc, char **argv)

    Update a Python list from a standard C array of command line arguments and
    an argument count.  This is used in conjunction with
    :cpp:func:`pyqt4_from_argv_list` to handle the updating of argument lists
    after calling constructors of classes such as
    :class:`~PyQt4.QtCore.QCoreApplication`.

    :param argv_list:
        is the Python list of arguments that will be updated.
    :param argc:
        is the number of command line arguments.
    :param argv:
        is the array of pointers to the arguments on the heap.