LinuxQT 如何设置Qt应用程序图标

LinuxQT 如何设置Qt应用程序图标,第1张

Icon”就可以看到在各种平台设置Qt程序图标的方法。Setting the Application Icon on WindowsFirst, create an ICO format bitmap file that contains the iconimage. This can be done with e.g. Microsoft Visual C++: SelectFile|New, then select the File tab in the dialog that appears, andchoose Icon. (Note that you do not need to load your applicationinto Visual C++here we are only using the icon editor.)Store the ICO file in your application’s source code directory,for example, with the name myappico.ico. Then, create a text filecalled, say, myapp.rc in which you put a single line of text:IDI_ICON1ICONDISCARDABLE"myappico.ico"Finally, assuming you are using qmake to generateyour makefiles, add this line to your myapp.pro file:RC_FILE = myapp.rcRegenerate your makefile and your application.The .exe file will now be represented with your icon inExplorer.If you do not use qmake, the necessary steps are: first, run therc program on the .rc file, then link your application with theresulting .res file. *** 作如下:首先准备个ICO图标。例如:myappico.ico用记事本新建个文件,里面就写一行:IDI_ICON1 ICON DISCARDABLE “myappico.ico”保存改名为 myapp.rc并把它和你的图标myappico.ico一起复制到你的QT工程项目的目录。用记事本打开你的QT工程文件(如 “myapp.pro” ),在里面最后新添一行保存,编译你的工程,成功了吧。

首先在QtCreator中新建一个基于QWidget的工程,我建立的项目名称是ICONproj。然后我们点击左边的帮助按钮,先来看看Qt 的Assistant是怎么说的。

在Assistant的索引中输入setting就可以看到下面的列表中有Setting

the Application Icon,双击它就可以看到右侧窗口中的帮助文档。文档内容很全面,包括如何设置windows、OS

X和linux的程序图标。这里我们介绍如何设置windows下应用程序的图标。

第一步,找到一个你心仪的图标,拷贝到工程的源代码目录中。这里我找了一个图标。

第二步,双击打开ICONproj.pro文件,并在文件中添加一行:

RC_ICONS =app.ico

然后点击左下角的锤子按钮,等待编译完成,就可以看到生成的应用程序了。

需要注意的是,我生成的应用程序所在的目录和你的可能不一样。你可能需要到项目的同级目录中寻找。

我们再来点击绿色运行按钮看看情况。

可以看到,窗口的左上角的图标也变成了我们设置的图标。

qt默认被安装在/opt目录下。你进去了找到qtcreator运行就行了。

如何添加快捷图标:

命令行下:

ln

-s

qtcreator所在路径

创建快捷方式的路径

把qtcreator添加到环境变量的方法:

命令行下:

修改环境变量:export

PATH=你qtcreator所在的目录名:$PATH

这样你在任何地方只要输入qtcreator就能启动了。

把qtcreator添加到制定的菜单分类中的方法:

我不知道小红帽是不是还在好用gnome的桌面。

假如是的话,你可以在/usr/share/desktops/下参考一个.desktop文件添加一个自定的文件。

把qtcreator的启动路径和图标路径填进去,保存就能在对应的菜单分类中找到了。


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/7835459.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-10
下一篇 2023-04-10

发表评论

登录后才能评论

评论列表(0条)

保存