使用Qt C ++,我有一些带图标和文字的按钮。由于所有按钮的文本长度不同,因此图标不对齐:
我尝试使用QToolButton:
button->setToolButtonStyle( Qt::ToolButtonTextBesideIcon );
button->setSizePolicy( QSizePolicy( QSizePolicy::Policy::Expanding, button->sizePolicy().verticalPolicy() ) );
但没有成功,无法使文本居中,最终得到了:
有没有办法让图标垂直对齐,文字也保持居中,如下所示:
答案 0 :(得分:4)
您可以通过对QPushButton
进行细分来实现。这是一个具有最小功能的示例:
class MyButton : public QPushButton {
public:
explicit MyButton(QWidget* parent = nullptr) : QPushButton(parent) {}
virtual ~MyButton() {}
void setPixmap(const QPixmap& pixmap) { m_pixmap = pixmap; }
virtual QSize sizeHint() const override {
const auto parentHint = QPushButton::sizeHint();
// add margins here if needed
return QSize(parentHint.width() + m_pixmap.width(), std::max(parentHint.height(), m_pixmap.height()));
}
protected:
virtual void paintEvent(QPaintEvent* e) override {
QPushButton::paintEvent(e);
if (!m_pixmap.isNull()) {
const int y = (height() - m_pixmap.height()) / 2; // add margin if needed
QPainter painter(this);
painter.drawPixmap(5, y, m_pixmap); // hardcoded horizontal margin
}
}
private:
QPixmap m_pixmap;
};
如果您想在Qt Designer中使用它,只需使用promote feature。
答案 1 :(得分:1)
在这里,您可以看到IGHOR的简单答案:QPushButton icon aligned left with text centered
减少代码方式而不破坏UI风格
pushButton->setIcon(QApplication::style()->standardIcon(QStyle::SP_MessageBoxQuestion));
pushButton->setStyleSheet("text-align:left;");
pushButton->setLayout(new QGridLayout);
QLabel* textLabel = new QLabel("Hello world!");
textLabel->setAlignment(Qt::AlignRight | Qt::AlignVCenter); // or center
textLabel->setAttribute(Qt::WA_TransparentForMouseEvents, true);
pushButton->layout()->addWidget(textLabel);
请记住将setText信号发送到textLabel而不是pushButton