aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/doc/extras/QtCore.Signal.rst
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside2/doc/extras/QtCore.Signal.rst')
-rw-r--r--sources/pyside2/doc/extras/QtCore.Signal.rst39
1 files changed, 0 insertions, 39 deletions
diff --git a/sources/pyside2/doc/extras/QtCore.Signal.rst b/sources/pyside2/doc/extras/QtCore.Signal.rst
deleted file mode 100644
index a0660f88f..000000000
--- a/sources/pyside2/doc/extras/QtCore.Signal.rst
+++ /dev/null
@@ -1,39 +0,0 @@
-.. currentmodule:: PySide2.QtCore
-.. _Signal:
-
-Signal
-******
-
-Synopsis
---------
-
-Functions
-^^^^^^^^^
-
-+---------------------------------------------------------------------------------------------+
-|def :meth:`connect<Signal.connect>` (receiver) |
-+---------------------------------------------------------------------------------------------+
-|def :meth:`disconnect<Signal.disconnect>` (receiver) |
-+---------------------------------------------------------------------------------------------+
-|def :meth:`emit<Signal.disconnect>` (\*args) |
-+---------------------------------------------------------------------------------------------+
-
-Detailed Description
---------------------
-
- The :class:`~.Signal` class provides a way to declare and connect Qt signals in a pythonic way.
-
- 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.
-
-.. method:: Signal.connect(receiver[, type=Qt.AutoConnection])
-
- Create a connection between this signal and a `receiver`, the `receiver` can be a Python callable, a :class:`Slot` or a :class:`Signal`.
-
-.. method:: Signal.disconnect(receiver)
-
- Disconnect this signal from a `receiver`, the `receiver` can be a Python callable, a :class:`Slot` or a :class:`Signal`.
-
-.. method:: Signal.emit(*args)
-
- `args` is the arguments to pass to any connected slots, if any.
-