Qt内置了一批图标,一共有70个(Qt 5.9.5),不同的平台图标有差异。由于官方文档中只有描述没有图示,所以写个Demo把这些图标全部显示出来。下面展示了windows、Linux、android和mac这几个平台的图标实例。(文章最后附本文内容的Demo)。
内置图标的枚举变量大家可在Qt助手索引中输入QStyle::StandardPixmap即可查看详细描述。
看图之前先来一段关键代码。
QGridLayout *layout = qobject_cast<QGridLayout *>(mpUi->centralWidget->layout()); int IconIndex = 0; for (int row = 0; row < 7; row++){ for (int col = 0; col < 10; col++){ enum QStyle::StandardPixmap Icon = (enum QStyle::StandardPixmap)IconIndex; layout->addWidget(new QPushButton(QApplication::style()->standardIcon(Icon), QString::number(IconIndex)), row, col); IconIndex++; } }
(发帖不贴图是流氓行为,下面附图)----------------------------------------------------------------------
windows平台(win10)
android平台(MuMu模拟器运行结果)
Linux平台(deepin 15.5)
mac平台(mac 11)
从上面可以看出,不同平台这些图标还是有差异的。
最后附上工程链接: