The Win32 API has a PostMessage function that posts a message to the end of the GUI message queue to be processed later from the GUI thread, as opposed to SendMessage which sends and processes the message synchronous with the calling thread.
Is there a Qt solution for PostMessage functionality? A coworker suggested that Qt’s server/socket implementation could provide it; is that a reasonable approach?
Check QCoreApplication::postEvent().