我想为我的qt gui应用程序设置一个图标,并按照下面列出的步骤进行操作:
1. create an ICO file bitmap That contains the icon image.
2. Store the ICO file in app's source code directory.
3. create a text file and added these lines "IDI_ICON1 ICON DISCARDABLE
4. myicon.ico" and saved it as "myicon.rc".
5. and added these lines in my .pro file "RC_FILE = MYICON.RC"
但它给出了这个错误:
mingw32-make [1]: *没有规则来制作目标' ../ Test / myicon.rc', 需要' debug / myicon_res.o'。停止。 mingw32-make:* [debug]错误 2 02:15:41:进程" C:\ TDM-GCC-32 \ bin \ mingw32-make.exe"退出 代码2.构建/部署项目测试时出错(套件: 桌面)执行步骤'制作'
答案 0 :(得分:3)
您的问题可能是您将myicon.rc
作为常规文件包含在内,并且它被列为源文件。它不应该列在那里,也不应该在标题下,因为它不会通过普通的编译器。您需要将其列为RC_FILE = myapp.rc
。
http://doc.qt.io/qt-5/qmake-variable-reference.html#rc-file
请注意.pro中的ICON
仅用于mac。
http://doc.qt.io/qt-5/qmake-variable-reference.html#icon
我已经提供了示例代码,说明我通常如何处理rc
文件,版本文件以及如何在main.cpp
和.pro
文件中使用它。< / p>
这应该适用于Qt Creator和Visual Studio。
以下是我在Windows中进行版本控制和图标时使用的文件:
myapp.rc
// http://stackoverflow.com/questions/2784697/setting-application-info-in-qt
#include <windows.h>
#include "version.h"
// if you needed to maintain two different icons for your app, you could
// switch here using a #ifdef and #else
#define MYICON "my_icon.ico"
IDI_ICON1 ICON DISCARDABLE MYICON
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", VER_COMPANYNAME_STR
VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", VER_INTERNALNAME_STR
VALUE "LegalCopyright", VER_LEGALCOPYRIGHT_STR
VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
VALUE "ProductName", VER_PRODUCTNAME_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1252
END
END
version.h中
#ifndef VERSION_H
#define VERSION_H
#define VER_FILEVERSION 0,1,0,0
#define VER_FILEVERSION_STR "0.1.0.0\0"
#define VER_PRODUCTVERSION 15,07,01,50
#define VER_PRODUCTVERSION_STR "15.07.01.50"
#define VER_COMPANYNAME_STR "MySoft"
#define VER_FILEDESCRIPTION_STR "Star Runner"
#define VER_INTERNALNAME_STR "Star Runner"
#define VER_LEGALCOPYRIGHT_STR "Copyright © MySoft"
#define VER_LEGALTRADEMARKS1_STR "All Rights Reserved"
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
#define VER_ORIGINALFILENAME_STR "star_runner.exe"
#define VER_PRODUCTNAME_STR "Star Runner"
#define VER_COMPANYDOMAIN_STR "mysoft.com"
#endif // VERSION_H
的main.cpp
#include <QApplication>
#include "version.h"
#include <QSettings>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setApplicationName(VER_PRODUCTNAME_STR);
a.setOrganizationName(VER_COMPANYNAME_STR);
a.setOrganizationDomain(VER_COMPANYDOMAIN_STR);
a.setApplicationDisplayName(VER_PRODUCTNAME_STR);
QSettings::setDefaultFormat(QSettings::IniFormat);
// Create the widget or main window here
return a.exec();
}
star_runner.pro
# all sorts of other things like SOURCES and HEADERS and FORMS, etc.
# ...
win32 {
# DEFINES -= UNICODE
RC_FILE += myapp.rc
}
macx {
ICON = my_icon.icns
}
OTHER_FILES += \
my_icon.ico \
my_icon.icns \
myapp.rc
最后,在创建图标时,我通常使用Gimp,使它们至少为256x256,然后使用Phoca Save Icons以不同的大小导出它们。其他时候,我只是制作一个png,然后使用here中的内容。
希望有所帮助。
答案 1 :(得分:0)
Mingw不知道如何处理.rc文件。