如何使用样式表设置Qt按钮的图标?

时间:2011-12-05 07:58:57

标签: c++ qt4 stylesheet

我想使用样式表设置按钮的图标,如下所示:

#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,则图标会正确显示。

那么,我做错了什么?如何使用样式表设置按钮的图标?

我使用的图像是:
button_normal.png button_pressed.png button_disabled.png

1 个答案:

答案 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;
}