我有一个QToolButton。我使用它而不是QPushButton因为我需要一个类似标签的按钮。即使在将样式表的边框和填充设置为None-0px
.
我希望这个QToolButton包含一个文本(无图标)右对齐。
但是,text-align: right;
不工作。.setAlignment(Qt.AlignRight)
也不工作。
如何将文本右对齐?
谢谢你。
您可以尝试继承 QStyle 并重新实现 QStyle::drawControl() 以将文本向右对齐。检查文件 qt/src/gui/styles/qcommonstyle.cpp 看看它是如何完成的。(对不起,我使用的是 C++ 而不是 Python)
case CE_ToolButtonLabel:
if (const QStyleOptionToolButton *toolbutton
= qstyleoption_cast<const QStyleOptionToolButton *>(opt)) {
QRect rect = toolbutton->rect;
int shiftX = 0;
int shiftY = 0;
if (toolbutton->state & (State_Sunken | State_On)) {
shiftX = proxy()->pixelMetric(PM_ButtonShiftHorizontal, toolbutton, widget);
shiftY = proxy()->pixelMetric(PM_ButtonShiftVertical, toolbutton, widget);
}
// Arrow type always overrules and is always shown
bool hasArrow = toolbutton->features & QStyleOptionToolButton::Arrow;
if (((!hasArrow && toolbutton->icon.isNull()) && !toolbutton->text.isEmpty())
|| toolbutton->toolButtonStyle == Qt::ToolButtonTextOnly) {
int alignment = Qt::AlignCenter | Qt::TextShowMnemonic;
此示例将按钮内容(图标和文本)居中对齐,但您可以根据您的要求采用此示例(右对齐)。覆盖 QToolButoon::paintEvent 如下:
void CMyToolButton::paintEvent( QPaintEvent* )
{
QStylePainter sp( this );
QStyleOptionToolButton opt;
initStyleOption( &opt );
const QString strText = opt.text;
const QIcon icn = opt.icon;
//draw background
opt.text.clear();
opt.icon = QIcon();
sp.drawComplexControl( QStyle::CC_ToolButton, opt );
//draw content
const int nSizeHintWidth = minimumSizeHint().width();
const int nDiff = qMax( 0, ( opt.rect.width() - nSizeHintWidth ) / 2 );
opt.text = strText;
opt.icon = icn;
opt.rect.setWidth( nSizeHintWidth );//reduce paint area to minimum
opt.rect.translate( nDiff, 0 );//offset paint area to center
sp.drawComplexControl( QStyle::CC_ToolButton, opt );
}