aboutsummaryrefslogtreecommitdiffstats
path: root/doc/extras/PySide.QtCore.Slot.rst
blob: 27791d03654c497a2f473a66a6e437d8dd3ccac9 (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
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
.. module:: PySide.QtCore
.. _Slot:

Slot
****

Detailed Description
--------------------

    PySide adopt PyQt's new signal and slot syntax as-is. The PySide implementation is functionally compatible with the PyQt 4.5 one, with the exceptions listed bellow.

    .. note:: Parts of the documentation bellow are from the `PyQt4 documentation <http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/pyqt4ref.html#new-style-signal-and-slot-support>`_ public available on the internet Copyright (c) 2010 Riverbank Computing Limited just modified to fit the PySide implementation.

    Although PySide allows any Python callable to be used as a slot when connecting signals, it is sometimes necessary to explicitly mark a Python method as being a Qt slot and to provide a C++ signature for it. PySide provides the QtCore.Slot() function decorator to do this.

    All of the non-keyword arguments to the decorator are interpreted as the types of the corresponding C++ arguments. A type is either a Python type object or a string that specifies a C++ type. The decorator also takes two optional keywords arguments: name and result. name is the name of the slot that will be seen by C++. If ommitted the name of the Python method being decorated will be used. result is the type of the result and may also be a Python type object or a string that specifies a C++ type.

    For example:

    ::

        @QtCore.Slot()
        def foo(self):
            """ C++: void foo() """

        @QtCore.Slot(int, unicode)
        def foo(self, arg1, arg2):
            """ C++: void foo(int, QString) """

        @QtCore.Slot(int, name='bar')
        def foo(self, arg1):
            """ C++: void bar(int) """

        @QtCore.Slot(int, result=int)
        def foo(self, arg1):
            """ C++: int foo(int) """

        @QtCore.Slot(int, QtGui.QWidget)
        def foo(self, arg1):
            """ C++: int foo(int, QWidget*) """

    It is also possible to chain the decorators in order to define a Python method several times with different signatures.

    For example:

    ::

        @QtCore.Slot(int)
        @QtCore.Slot('QString')
        def valueChanged(self, value):
            """ Two slots will be defined in the QMetaObject. """

Connecting Slots By Name
------------------------

    PySide supports the QtCore.QMetaObject.connectSlotsByName() function that is most commonly used by pyside-uic generated Python code to automatically connect signals to slots that conform to a simple naming convention besides the QtCore.Slot decoration.

    For example the :class:`PySide.QtGui.QSpinBox` class has the following signals:

    ::

        void valueChanged(int i);
        void valueChanged(const QString& text);

    For example, if you were interested in the integer variant of the signal then your slot definition would look like the following:

    ::

        @QtCore.Slot(int)
        def on_spinbox_valueChanged(self, i):
            # i will be an integer.
            pass

    If you wanted to handle both variants of the signal, but with different Python methods, then your slot definitions might look like the following:

    ::

        @QtCore.Slot(int, name='on_spinbox_valueChanged')
        def spinbox_int_value(self, i):
            # i will be an integer.
            pass

        @QtCore.Slot(unicode, name='on_spinbox_valueChanged')
        def spinbox_qstring_value(self, s):
            # s will be a Python unicode object.
            pass

    The following shows an example using a button when you are not interested in the optional argument:

    ::

        @QtCore.Slot()
        def on_button_clicked(self):
            pass