要获取桌面上某个应用的应用图标,可以使用QIcon::fromTheme()函数。以下是一个示例代码:
#include <QApplication>
#include <QDesktopServices>
#include <QDebug>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// 应用程序的文件路径
QString filePath = "/path/to/your/application.desktop";
// 获取应用程序的应用图标
QIcon icon = QIcon::fromTheme(filePath);
if (icon.isNull()) {
qDebug() << "无法获取应用图标:" << filePath;
return -1;
}
// 显示图标
QPixmap pixmap = icon.pixmap(64, 64); // 设置所需尺寸
QLabel label;
label.setPixmap(pixmap);
label.show();
return app.exec();
}
将"/path/to/your/application.desktop"替换为你想要获取图标的应用程序的 .desktop 文件路径。然后通过调整 pixmap() 方法中的尺寸参数来指定显示图标的大小。
运行该应用程序后,将会显示所请求应用程序的应用图标。请确保 .desktop 文件存在且可访问,并且系统中已经安装了与该文件关联的桌面环境主题。
内容由零声教学AI助手提供,问题来源于学员提问




