How to change Qt applications's dock icon at run-time in MacOS? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:49:55Z http://stackoverflow.com/feeds/question/981147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/981147/how-to-change-qt-applicationss-dock-icon-at-run-time-in-macos 1 How to change Qt applications's dock icon at run-time in MacOS? Michael 2009-06-11T13:41:04Z 2009-07-02T19:09:06Z <p>I need to change my Qt application's dock icon (in MacOS X) in run-time according to some conditions.</p> <p>I've found several recipes on <a href="http://trolltech.com" rel="nofollow">trolltech.com</a>:</p> <ol> <li><code>QApplication::setIcon()</code></li> <li><code>setApplicationIcon()</code></li> <li><code>qt_mac_set_app_icon()</code></li> </ol> <p>but none of it works: there is no such methods/functions in Qt 4.5.</p> <p>How can I change my application's dock icon and what icon formats can I use?</p> <p>Thank you.</p> http://stackoverflow.com/questions/981147/how-to-change-qt-applicationss-dock-icon-at-run-time-in-macos/981548#981548 4 Answer by Elrohir for How to change Qt applications's dock icon at run-time in MacOS? Elrohir 2009-06-11T14:47:44Z 2009-06-11T14:58:44Z <p>In Qt 4.5 the methods you are searching for are called </p> <pre><code>QApplication::setWindowIcon(const QIcon &amp;) </code></pre> <p>or</p> <pre><code>QWidget::setWindowIcon(const QIcon &amp;). </code></pre> <p>You can use every image format for icons that Qt supports (e.g. BMP, GIF, JPG, PNG, TIFF, XPM, ...).</p> <p>Maybe you want to have a look at Qt's documentation at <a href="http://doc.qtsoftware.com/4.5/index.html" rel="nofollow">http://doc.qtsoftware.com/4.5/index.html</a> or use the Qt Assistant.</p> <p>Hope that helps you.</p> http://stackoverflow.com/questions/981147/how-to-change-qt-applicationss-dock-icon-at-run-time-in-macos/1076152#1076152 0 Answer by kyue for How to change Qt applications's dock icon at run-time in MacOS? kyue 2009-07-02T19:09:06Z 2009-07-02T19:09:06Z <p>I noticed in my application (using Qt 4.3) that </p> <pre><code>QApplication::setWindowIcon(const QIcon &amp;) </code></pre> <p>worked and </p> <pre><code>QWidget::setWindowIcon(const QIcon &amp;) </code></pre> <p>didn't work for me.</p>