#signals-and-slots

[ follow ]
#pyqt6
fromPython GUIs
6 hours ago
JavaScript

PyQt6 Thread Communication Between Windows - Signals and Slots

Use Qt's signal and slot system for safe communication between secondary windows and background threads.
fromPython GUIs
3 months ago
Python

What does @pyqtSlot() do?

Use @pyqtSlot to create native Qt slots for threaded contexts and to reduce memory usage and slightly improve performance; otherwise plain Python callables work.
JavaScript
fromPython GUIs
6 hours ago

PyQt6 Thread Communication Between Windows - Signals and Slots

Use Qt's signal and slot system for safe communication between secondary windows and background threads.
fromPython GUIs
11 months ago

What does @Slot() do?

Omitting the @Slot decorator means that the function can still act as a slot, but it won't provide the advantages of reduced memory usage and increased speed.
Python
[ Load more ]