I know that Qt maintains its gui messages in the main-thread called gui-thread. However if I post too many messages to the main gui thread, the main thread won't respond to the messages quickly and react to the user input. In windows, OS provides a solution that to create a user-interface thread with a standalone message queue itself. So I can post my message to this thread while the main thread will not die.
So my question is how to create a gui thread but not the main thread in Qt?