How to change Qt applications's dock icon at run-time in MacOS? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:49:55Zhttp://stackoverflow.com/feeds/question/981147http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/981147/how-to-change-qt-applicationss-dock-icon-at-run-time-in-macos1How to change Qt applications's dock icon at run-time in MacOS?Michael2009-06-11T13:41:04Z2009-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#9815484Answer by Elrohir for How to change Qt applications's dock icon at run-time in MacOS?Elrohir2009-06-11T14:47:44Z2009-06-11T14:58:44Z<p>In Qt 4.5 the methods you are searching for are called </p>
<pre><code>QApplication::setWindowIcon(const QIcon &)
</code></pre>
<p>or</p>
<pre><code>QWidget::setWindowIcon(const QIcon &).
</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#10761520Answer by kyue for How to change Qt applications's dock icon at run-time in MacOS?kyue2009-07-02T19:09:06Z2009-07-02T19:09:06Z<p>I noticed in my application (using Qt 4.3) that </p>
<pre><code>QApplication::setWindowIcon(const QIcon &)
</code></pre>
<p>worked and </p>
<pre><code>QWidget::setWindowIcon(const QIcon &)
</code></pre>
<p>didn't work for me.</p>