blob: 6edaf0597e7448429930b5e5239252ab8fd6fff7 (
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
 | from PyQt4 import QtCore
_oldConnect = QtCore.QObject.connect
_oldDisconnect = QtCore.QObject.disconnect
_oldEmit = QtCore.QObject.emit
def _wrapConnect(callableObject):
    """
    Returns a wrapped call to the old version of QtCore.QObject.connect
    """
    @staticmethod
    def call(*args):
        callableObject(*args)
        _oldConnect(*args)
    return call
def _wrapDisconnect(callableObject):
    """
    Returns a wrapped call to the old version of QtCore.QObject.disconnect
    """
    @staticmethod
    def call(*args):
        callableObject(*args)
        _oldDisconnect(*args)
    return call
def enableSignalDebugging(**kwargs):
    """
    Call this to enable Qt Signal debugging. This will trap all
    connect, and disconnect calls.
    """
    f = lambda *args: None
    connectCall = kwargs.get('connectCall', f)
    disconnectCall = kwargs.get('disconnectCall', f)
    emitCall = kwargs.get('emitCall', f)
    def printIt(msg):
        def call(*args):
            print msg, args
        return call
    QtCore.QObject.connect = _wrapConnect(connectCall)
    QtCore.QObject.disconnect = _wrapDisconnect(disconnectCall)
    def new_emit(self, *args):
        emitCall(self, *args)
        _oldEmit(self, *args)
    QtCore.QObject.emit = new_emit
 |