gpt4 book ai didi

qt4 - 如何在 QLineEdit 中制作一个额外的图标?

转载 作者:行者123 更新时间:2023-12-02 17:48:40 24 4
gpt4 key购买 nike

我想在 Qt Creator 中实现一个“干净”按钮,如下面的屏幕截图,该按钮驻留在 QLineEdit 中,而不是单个小部件

enter image description here

我应该从哪里开始?

最佳答案

有关建议的解决方案,请参阅此博客条目: Lineedit with a clear button .


主要思路是在QLineEdit中添加一个QToolButton,并适当定位。

LineEdit::LineEdit(QWidget *parent)
: QLineEdit(parent)
{
int height = sizeHint().height();
int btnSize = sizeHint().height() - 5;

clearButton = new QToolButton(this);
QPixmap pixmap(":clear.png");
clearButton->setIcon(QIcon(pixmap));
clearButton->setCursor(Qt::ArrowCursor);
clearButton->setStyleSheet("QToolButton { border: none; padding: 2px}");
clearButton->setFixedSize(btnSize, btnSize);
clearButton->hide();

int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
setStyleSheet(QString("QLineEdit { padding-right: %1px }")
.arg(btnSize - frameWidth));
setMinimumHeight(height);

connect(clearButton, SIGNAL(clicked()), this, SLOT(clear()));
connect(this, SIGNAL(textChanged(const QString&)),
this, SLOT(updateCloseButton(const QString&)));
}

void LineEdit::resizeEvent(QResizeEvent *)
{
int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth);
clearButton->move(width() - clearButton->width() - frameWidth, 0);
}

void LineEdit::updateCloseButton(const QString& text)
{
clearButton->setVisible(!text.isEmpty());
}

此外,从 Qt 5.2 开始,可以使用 QLineEdit 内置方法 setClearButtonEnabled .

关于qt4 - 如何在 QLineEdit 中制作一个额外的图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11381865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com