How to bring another program to front?
Unsolved
General and Desktop
-
this can only be achieved using platform dependent code.
Use QProcess::pid() to get the process id and use it to search for the corresponding window.For example in Linux.
Not every application also has a visual window at all and some applications have multiple windows. So this may be a bit tricky. Unless you anyway always call the same applications.