Referencing an earlier question: GTK implementation of MessageBox
I have a question very much like that one, except substituting Qt for GTK.
As in that question, what is the least I would need to do to show a message dialog using Qt, from an application that is not already a Qt application?
I presume something like the following would need to occur:
- Initialize Qt and its event loop
- Install idle callback to invoke dialog
- Quit event loop and finalize Qt when dialog is dismissed.