How do you set application icon for application made using Qt? Is there some easy way? It\'s a qmake-based project.
To extend Rob's answer, you can set an application icon for macOS by adding and modifying the following line onto your .pro
file.
macx: ICON = <app_icon>.icns
Note that the ICON qmake variable is only meant to target macOS.
For Windows, use
RC_ICONS = <app_icon>.ico
if you're attaching a .ico
file RC_FILE = <app_icon>.rc
if you want to attach your icon through a .rc
file. (Be sure to add IDI_ICON1 ICON DISCARDABLE "myappico.ico"
into the rc file. Indentation not mine.)For further reading, see Setting the Application Icon.
Now that Qt has upgraded to 5.0.1, there is new method to add an application icon. First, you need prepare a resource file, named as .qrc
1) Without Qt Designer
, I assume there is a QMainWindow
instance whose name is MainWin
. You can use:
QIcon icon(":icon/app.icon");
MainWin.setWindowIcon(icon);
2) With Qt Designer
, you can modify the property of QMainWindow
. Choose icon resource from .qrc
and insert it into the row of windowIcon
.
The above method can be used in Qt4.7, Qt4.8.x.
For Qt 5, this process is automated by qmake. Just add the following to the project file:
win32:RC_ICONS += your_icon.ico
The automated resource file generation also uses the values of the following qmake variables: VERSION, QMAKE_TARGET_COMPANY, QMAKE_TARGET_DESCRIPTION, QMAKE_TARGET_COPYRIGHT, QMAKE_TARGET_PRODUCT, RC_LANG, RC_CODEPAGE
.
For Qt 4, you need to do it manually. On Windows, you need to create a .rc file and add it to your project (.pro). The RC file should look like this:
IDI_ICON1 ICON DISCARDABLE "path_to_you_icon.ico"
The .pro entry should also be win32 specific, e.g.:
win32:RC_FILE += MyApplication.rc
Verified in Linux (Qt 4.8.6) and Windows (Qt 5.6):
1) Add the icon file to your project folder;
2) In the main function call setWindowIcon() method. For example:
QApplication a(argc, argv);
a.setWindowIcon(QIcon("./images/icon.png"));