pymmcore-plus 0.13.2__py3-none-any.whl → 0.13.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pymmcore_plus/core/_mmcore_plus.py +6 -1
- pymmcore_plus/core/events/_protocol.py +14 -2
- pymmcore_plus/core/events/_psygnal.py +2 -0
- pymmcore_plus/core/events/_qsignals.py +2 -0
- {pymmcore_plus-0.13.2.dist-info → pymmcore_plus-0.13.3.dist-info}/METADATA +1 -1
- {pymmcore_plus-0.13.2.dist-info → pymmcore_plus-0.13.3.dist-info}/RECORD +9 -9
- {pymmcore_plus-0.13.2.dist-info → pymmcore_plus-0.13.3.dist-info}/WHEEL +0 -0
- {pymmcore_plus-0.13.2.dist-info → pymmcore_plus-0.13.3.dist-info}/entry_points.txt +0 -0
- {pymmcore_plus-0.13.2.dist-info → pymmcore_plus-0.13.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1675,6 +1675,7 @@ class CMMCorePlus(pymmcore.CMMCore):
|
|
|
1675
1675
|
|
|
1676
1676
|
**Why Override?** To emit a `startContinuousSequenceAcquisition` event.
|
|
1677
1677
|
"""
|
|
1678
|
+
self.events.continuousSequenceAcquisitionStarting.emit()
|
|
1678
1679
|
super().startContinuousSequenceAcquisition(intervalMs)
|
|
1679
1680
|
self.events.continuousSequenceAcquisitionStarted.emit()
|
|
1680
1681
|
|
|
@@ -1703,12 +1704,16 @@ class CMMCorePlus(pymmcore.CMMCore):
|
|
|
1703
1704
|
|
|
1704
1705
|
**Why Override?** To emit a `startSequenceAcquisition` event.
|
|
1705
1706
|
"""
|
|
1706
|
-
super().startSequenceAcquisition(*args, **kwargs)
|
|
1707
1707
|
if len(args) == 3:
|
|
1708
1708
|
numImages, intervalMs, stopOnOverflow = args
|
|
1709
1709
|
cameraLabel = super().getCameraDevice()
|
|
1710
1710
|
else:
|
|
1711
1711
|
cameraLabel, numImages, intervalMs, stopOnOverflow = args
|
|
1712
|
+
|
|
1713
|
+
self.events.sequenceAcquisitionStarting.emit(
|
|
1714
|
+
cameraLabel, numImages, intervalMs, stopOnOverflow
|
|
1715
|
+
)
|
|
1716
|
+
super().startSequenceAcquisition(*args, **kwargs)
|
|
1712
1717
|
self.events.sequenceAcquisitionStarted.emit(
|
|
1713
1718
|
cameraLabel, numImages, intervalMs, stopOnOverflow
|
|
1714
1719
|
)
|
|
@@ -133,14 +133,26 @@ class PCoreSignaler(Protocol):
|
|
|
133
133
|
> :sparkles: This signal is unique to `pymmcore-plus`.
|
|
134
134
|
"""
|
|
135
135
|
|
|
136
|
+
continuousSequenceAcquisitionStarting: PSignal
|
|
137
|
+
"""Emits with no arguments *before* continuous sequence acquisition is started.
|
|
138
|
+
|
|
139
|
+
> :sparkles: This signal is unique to `pymmcore-plus`.
|
|
140
|
+
"""
|
|
136
141
|
continuousSequenceAcquisitionStarted: PSignal
|
|
137
|
-
"""Emits with no arguments
|
|
142
|
+
"""Emits with no arguments *after* continuous sequence acquisition has started.
|
|
143
|
+
|
|
144
|
+
> :sparkles: This signal is unique to `pymmcore-plus`.
|
|
145
|
+
"""
|
|
146
|
+
sequenceAcquisitionStarting: PSignal
|
|
147
|
+
"""Emits `(str, int, float, bool)` *before* sequence acquisition is started.
|
|
138
148
|
|
|
149
|
+
(cameraLabel, numImages, intervalMs, stopOnOverflow)
|
|
139
150
|
> :sparkles: This signal is unique to `pymmcore-plus`.
|
|
140
151
|
"""
|
|
141
152
|
sequenceAcquisitionStarted: PSignal
|
|
142
|
-
"""Emits `(str, int, float, bool)`
|
|
153
|
+
"""Emits `(str, int, float, bool)` *after* sequence acquisition has started.
|
|
143
154
|
|
|
155
|
+
(cameraLabel, numImages, intervalMs, stopOnOverflow)
|
|
144
156
|
> :sparkles: This signal is unique to `pymmcore-plus`.
|
|
145
157
|
"""
|
|
146
158
|
sequenceAcquisitionStopped: PSignal
|
|
@@ -25,7 +25,9 @@ class CMMCoreSignaler(SignalGroup, _DevicePropertyEventMixin):
|
|
|
25
25
|
# added for CMMCorePlus
|
|
26
26
|
imageSnapped = Signal() # whenever snapImage is called
|
|
27
27
|
mdaEngineRegistered = Signal(MDAEngine, MDAEngine)
|
|
28
|
+
continuousSequenceAcquisitionStarting = Signal()
|
|
28
29
|
continuousSequenceAcquisitionStarted = Signal()
|
|
30
|
+
sequenceAcquisitionStarting = Signal(str, int, float, bool)
|
|
29
31
|
sequenceAcquisitionStarted = Signal(str, int, float, bool)
|
|
30
32
|
sequenceAcquisitionStopped = Signal(str)
|
|
31
33
|
autoShutterSet = Signal(bool)
|
|
@@ -29,8 +29,10 @@ class QCoreSignaler(QObject):
|
|
|
29
29
|
imageSnapped = Signal() # on snapImage()
|
|
30
30
|
mdaEngineRegistered = Signal(object, object) # new engine, old engine
|
|
31
31
|
# when continuousSequenceAcquisition is started
|
|
32
|
+
continuousSequenceAcquisitionStarting = Signal()
|
|
32
33
|
continuousSequenceAcquisitionStarted = Signal()
|
|
33
34
|
# when SequenceAcquisition is started
|
|
35
|
+
sequenceAcquisitionStarting = Signal(str, int, float, bool)
|
|
34
36
|
sequenceAcquisitionStarted = Signal(str, int, float, bool)
|
|
35
37
|
# when (Continuous)SequenceAcquisition is stopped
|
|
36
38
|
sequenceAcquisitionStopped = Signal(str)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pymmcore-plus
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.3
|
|
4
4
|
Summary: pymmcore superset providing improved APIs, event handling, and a pure python acquisition engine
|
|
5
5
|
Project-URL: Source, https://github.com/pymmcore-plus/pymmcore-plus
|
|
6
6
|
Project-URL: Tracker, https://github.com/pymmcore-plus/pymmcore-plus/issues
|
|
@@ -16,16 +16,16 @@ pymmcore_plus/core/_config_group.py,sha256=R-o4xuPDBPQAC3s-mFsiKwHVKWR38L9qq_aoW
|
|
|
16
16
|
pymmcore_plus/core/_constants.py,sha256=6foxGbek3tgnUHYUtQ7NCqwIIqqGYW1W56HjrhZqsA0,12829
|
|
17
17
|
pymmcore_plus/core/_device.py,sha256=Pz9Ekhss2c9IBA3B7WyMU2cCwc19Dp_dGVhMkzqUaIE,7762
|
|
18
18
|
pymmcore_plus/core/_metadata.py,sha256=3vb3d36XgNnUY44dpZ4Ccw0tvn4KCinZ8zrnDllmABI,2645
|
|
19
|
-
pymmcore_plus/core/_mmcore_plus.py,sha256=
|
|
19
|
+
pymmcore_plus/core/_mmcore_plus.py,sha256=I5IqUmR-IgdftHO5dkvzA99kAxRZoj-8_tkTaJcfLNQ,91819
|
|
20
20
|
pymmcore_plus/core/_property.py,sha256=QsQEzqOAedR24zEJ1Ge4kwScfT_7NOApVcgz6QxBJrI,8265
|
|
21
21
|
pymmcore_plus/core/_sequencing.py,sha256=Vb6hbRsb8RxSPUAlNSVWTM4Yvg7YYf9ZbewK7u_b-QM,16692
|
|
22
22
|
pymmcore_plus/core/events/__init__.py,sha256=Bb1Ga97GzY2z3fAeJkPs1wxbTXa1o_p6nIKof_UCvZs,1093
|
|
23
23
|
pymmcore_plus/core/events/_device_signal_view.py,sha256=t-NfBdg3E4rms4vDFxkkR5XtrpLxaBT7mfPwkpIsbVk,1079
|
|
24
24
|
pymmcore_plus/core/events/_norm_slot.py,sha256=8DCBoLHGh7cbB1OB19IJYwL6sFBFmkD8IakfBOvFbw8,2907
|
|
25
25
|
pymmcore_plus/core/events/_prop_event_mixin.py,sha256=FvJJnpEKrOR-_Sp3-NNCwFoUUHwmNKiHruo0Y1vybsY,4042
|
|
26
|
-
pymmcore_plus/core/events/_protocol.py,sha256=
|
|
27
|
-
pymmcore_plus/core/events/_psygnal.py,sha256=
|
|
28
|
-
pymmcore_plus/core/events/_qsignals.py,sha256=
|
|
26
|
+
pymmcore_plus/core/events/_protocol.py,sha256=Zp_8rldyNca3RUOsgnxYj8Bxmo9rLsruTX-ORHBNw9E,8043
|
|
27
|
+
pymmcore_plus/core/events/_psygnal.py,sha256=9xsTY9wysrUlis5_29CesgyEXGDv8kwgZOZjaN_V7bc,1763
|
|
28
|
+
pymmcore_plus/core/events/_qsignals.py,sha256=pN87k6XEIrgtbJTJWjwKWRR3j-RIGGwnaX-9iHPB-q0,3135
|
|
29
29
|
pymmcore_plus/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
pymmcore_plus/experimental/unicore/__init__.py,sha256=OcjUZ4tq-NtWDR5R3JFivsRePliQSIQ7Z92k_8Gfz2Q,361
|
|
31
31
|
pymmcore_plus/experimental/unicore/_device_manager.py,sha256=c5DAMsnK06xOy6G7YjHdUughc7xdFtzeo10woO5G_KE,6418
|
|
@@ -64,8 +64,8 @@ pymmcore_plus/model/_device.py,sha256=-0s3NkonDoaMrNy_hn5EDz-c4o33ZiJSQkV_kdBteo
|
|
|
64
64
|
pymmcore_plus/model/_microscope.py,sha256=69VV6cuevinOK_LhYEkQygHGesvCZefdn9YNt3mV618,11353
|
|
65
65
|
pymmcore_plus/model/_pixel_size_config.py,sha256=smoOmT54nSkg52RaSQzTFG0YwyMR_SEq_lkS-JyJW9U,3514
|
|
66
66
|
pymmcore_plus/model/_property.py,sha256=NQzNtnEzSCR9ogwx1cfi8X-qbJ_cBSJKdSBAaoKoPQ0,3720
|
|
67
|
-
pymmcore_plus-0.13.
|
|
68
|
-
pymmcore_plus-0.13.
|
|
69
|
-
pymmcore_plus-0.13.
|
|
70
|
-
pymmcore_plus-0.13.
|
|
71
|
-
pymmcore_plus-0.13.
|
|
67
|
+
pymmcore_plus-0.13.3.dist-info/METADATA,sha256=FDpdlPwFY-9RgCfDJQW-AQDTdT1btpKe7_HPiadsUMM,9594
|
|
68
|
+
pymmcore_plus-0.13.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
69
|
+
pymmcore_plus-0.13.3.dist-info/entry_points.txt,sha256=NtFyndrQzBpUNJyil-8e5hMGke2utAf7mkGavTLcLOY,51
|
|
70
|
+
pymmcore_plus-0.13.3.dist-info/licenses/LICENSE,sha256=OHJjRpOPKKRc7FEnpehNWdR5LRBdBhUtIFG-ZI0dCEA,1522
|
|
71
|
+
pymmcore_plus-0.13.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|