PDA

View Full Version : How to hide application button on the task bar?



QCasper
16th January 2008, 22:16
Just subj. How to do it, but application window must remains vsible? Qt 4.3.3.

giotto
16th January 2008, 23:10
under windows use Qt::SubWindow (Qt::WindowFlags)


Qt::WindowFlags flags;
flags |= Qt::SubWindow;
setWindowFlags(flags);

under linux, I didn't tested.
under mac, I don't think there is a solution :(