In Qt Documents about Signal/Slot, It says that "The signal/slot mechanism is totally independent of any GUI event loop" . How to comprehend this words? On my opinion, for example, if a user clicked a PushButton, the event loop will catch this event and a Clicked() signal will be sent ? If the connected slot will not return, the GUI will be blocked. So I am mazed about this words.