我想使用样式表设置按钮的图标,如下所示:
#include <QToolButton>
#include <QApplication>
QString FormStyleSheetString( const QString & name )
{
const QString thisItemStyle( "QToolButton:enabled { image: url(" + name + "_normal.png); } "
"QToolButton:pressed { image: url(" + name + "_pressed.png); } "
"QToolButton:disabled { image: url(" + name + "_disabled.png); } "
);
return thisItemStyle;
}
int main(int argc, char * argv[])
{
QApplication qapp(argc,argv);
QToolButton button;
button.setStyleSheet( FormStyleSheetString( "button" ) );
button.setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
button.setIconSize(QSize(200,200));
button.show();
return qapp.exec();
}
我这样编译:
g++ -O3 -std=c++0x -Wall -Wextra -pedantic test.cpp -lQtCore -lQtGui -I/usr/include/Qt/ -I/usr/include/QtCore/ -I/usr/include/QtGui/
不幸的是,上述情况不起作用(图标未显示)。
如果我使用setIcon,则图标会正确显示。
那么,我做错了什么?如何使用样式表设置按钮的图标?
我使用的图像是:
答案 0 :(得分:3)
之前有类似的未回答的问题,右here。您似乎应该尝试设置border-image
属性而不是icon
一个。
要解决此问题,请将FormStyleSheetString
功能更改为:
QString FormStyleSheetString( const QString & name )
{
const QString thisItemStyle( "QToolButton:enabled { border-image: url(" + name + "_normal.png); } "
"QToolButton:pressed { border-image: url(" + name + "_pressed.png); } "
"QToolButton:disabled { border-image: url(" + name + "_disabled.png); } "
);
return thisItemStyle;
}