Qt's signal-driven design is simulation of signal of UNIX?
-
wrote on 3 Jan 2017, 04:58 last edited by
Hi guys.
I am using PyQt5 in the my develop project. I have a question on that project design. I need event-driven in my project for the multi window system. But, Qt is a signal-driven. So, I fixed event-driven to signal-driven on my project for the simple design.
Qt's signal-driven is a real signal? That is a simulation of signal of UNIX for the software design? That is able of communication of process to process?
Do not I have to worry too much to the multi driven on design?Thanks.
-
wrote on 3 Jan 2017, 05:34 last edited by
Qt is event-driven? "signal" and "slot" is a I/F of event-driven?
-
Lifetime Qt Championwrote on 3 Jan 2017, 06:46 last edited by mrjj 1 Mar 2017, 06:47
Hi
Signals are still just messages put on an event queue and executed.
When you use connect, you can ask it to use Queued connect and then
it works between threads.http://doc.qt.io/qt-5/signalsandslots.html
yes Qt is event driven.
-
wrote on 3 Jan 2017, 06:50 last edited by
Hi mrjj. Thanks to response.
I understood it by your answer. Thank you.
2/4