pyqtgraph/pyqtgraph/SignalProxy.py

111 lines
3.6 KiB
Python
Raw Normal View History

2010-07-27 04:13:23 +00:00
# -*- coding: utf-8 -*-
2012-05-11 22:05:41 +00:00
from .Qt import QtCore
from .ptime import time
from . import ThreadsafeTimer
2014-04-14 02:59:57 +00:00
import weakref
from .functions import SignalBlock
2010-07-27 04:13:23 +00:00
__all__ = ['SignalProxy']
2010-07-27 04:13:23 +00:00
class SignalProxy(QtCore.QObject):
"""Object which collects rapid-fire signals and condenses them
into a single signal or a rate-limited stream of signals.
Used, for example, to prevent a SpinBox from generating multiple
signals when the mouse wheel is rolled over it.
Emits sigDelayed after input signals have stopped for a certain period of time.
"""
sigDelayed = QtCore.Signal(object)
2010-07-27 04:13:23 +00:00
def __init__(self, signal, delay=0.3, rateLimit=0, slot=None):
"""Initialization arguments:
signal - a bound Signal or pyqtSignal instance
delay - Time (in seconds) to wait for signals to stop before emitting (default 0.3s)
slot - Optional function to connect sigDelayed to.
rateLimit - (signals/sec) if greater than 0, this allows signals to stream out at a
steady rate while they are being received.
"""
2010-07-27 04:13:23 +00:00
QtCore.QObject.__init__(self)
signal.connect(self.signalReceived)
self.signal = signal
2010-07-27 04:13:23 +00:00
self.delay = delay
self.rateLimit = rateLimit
2010-07-27 04:13:23 +00:00
self.args = None
self.timer = ThreadsafeTimer.ThreadsafeTimer()
self.timer.timeout.connect(self.flush)
self.blockSignal = False
2014-04-14 02:59:57 +00:00
self.slot = weakref.ref(slot)
self.lastFlushTime = None
if slot is not None:
self.sigDelayed.connect(slot)
2010-07-27 04:13:23 +00:00
def setDelay(self, delay):
self.delay = delay
def signalReceived(self, *args):
"""Received signal. Cancel previous timer and store args to be forwarded later."""
if self.blockSignal:
2010-11-22 03:50:04 +00:00
return
2010-07-27 04:13:23 +00:00
self.args = args
if self.rateLimit == 0:
self.timer.stop()
self.timer.start((self.delay*1000)+1)
else:
now = time()
if self.lastFlushTime is None:
leakTime = 0
else:
lastFlush = self.lastFlushTime
leakTime = max(0, (lastFlush + (1.0 / self.rateLimit)) - now)
self.timer.stop()
self.timer.start((min(leakTime, self.delay)*1000)+1)
2010-07-27 04:13:23 +00:00
def flush(self):
"""If there is a signal queued up, send it now."""
if self.args is None or self.blockSignal:
2010-07-27 04:13:23 +00:00
return False
args, self.args = self.args, None
self.timer.stop()
self.lastFlushTime = time()
#self.emit(self.signal, *self.args)
self.sigDelayed.emit(args)
2010-07-27 04:13:23 +00:00
return True
2010-11-22 03:50:04 +00:00
def disconnect(self):
self.blockSignal = True
try:
self.signal.disconnect(self.signalReceived)
except:
pass
try:
self.sigDelayed.disconnect(self.slot)
except:
pass
def block(self):
"""Return a SignalBlocker that temporarily blocks input signals to this proxy.
"""
return SignalBlock(self.signal, self.signalReceived)
if __name__ == '__main__':
2012-05-11 22:05:41 +00:00
from .Qt import QtGui
app = QtGui.QApplication([])
win = QtGui.QMainWindow()
spin = QtGui.QSpinBox()
win.setCentralWidget(spin)
win.show()
def fn(*args):
2012-05-11 22:05:41 +00:00
print("Raw signal:", args)
def fn2(*args):
2012-05-11 22:05:41 +00:00
print("Delayed signal:", args)
spin.valueChanged.connect(fn)
#proxy = proxyConnect(spin, QtCore.SIGNAL('valueChanged(int)'), fn)
proxy = SignalProxy(spin.valueChanged, delay=0.5, slot=fn2)