gpt4 book ai didi

c++ - 光标仍然出现在 LineEdit 中,尽管它不再聚焦

转载 作者:行者123 更新时间:2023-11-28 04:35:15 26 4
gpt4 key购买 nike

我需要将一个 LineEdit 和一个 Button 组合成这样一个元素,我希望 lineEdit 像往常一样工作。但是当我点击 lineEdit 时,光标没有出现,只有当我点击 3 次时,光标出现但不闪烁。 enter image description here

之后我点击另一个地方失去了 lineEdit 的焦点,我希望光标不再在那里,但光标仍然在那里。

enter image description here

我知道问题出在我的样式表中,但我找不到出处。你们能帮帮我吗?

这是我的代码:

MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->lineEdit1->setPlaceholderText("another LineEdit to lose focus for the LineEdit below");
QHBoxLayout *lineEditWithButtonForm = new QHBoxLayout( this );
lineEditWithButtonForm->setSpacing(0);
lineEditWithButtonForm->setContentsMargins(0,0,0,0);
ui->m_lineEdit->setContentsMargins(10,0,10,0);
ui->m_lineEdit->setFixedHeight( 25 );
ui->m_lineEdit->setStyleSheet("QLineEdit{ padding-left: 10px; padding-right: 10px; border-width: 1px 0px 1px 1px; border-style: solid; border-color: rgb(204,204,204); }");
lineEditWithButtonForm->addWidget(ui->m_lineEdit);
ui->m_button->setFixedHeight( 25 );
ui->m_button->setCursor( QCursor( Qt::PointingHandCursor ) );
ui->m_button->setFocusPolicy(Qt::ClickFocus);
ui->m_button->setStyleSheet( "QAbstractButton{ border-width: 1px 1px 1px 0px; border-style: solid; border-color: rgb(204,204,204); }");
lineEditWithButtonForm->addWidget(ui->m_lineEdit);

ui->m_lineEdit->installEventFilter( this );
}

bool MainWindow::eventFilter( QObject *obj, QEvent *event )
{
if ( obj == ui->m_lineEdit )
{
if ( event->type() == QEvent::FocusIn )
{
ui->m_lineEdit->setStyleSheet( "QLineEdit{padding-left: 10px; padding-right: 10px; border-width: 1px 0px 1px 1px; border-style: solid; border-color:rgb(249,125,25)}" );
ui->m_button->setStyleSheet( "QAbstractButton{ border-width: 1px 1px 1px 0px; border-style: solid; border-color: rgb(249,125,25)}" );
return true;
}
else if ( event->type() == QEvent::FocusOut)
{
ui->m_lineEdit->setStyleSheet( "QLineEdit{ padding-left: 10px; padding-right: 10px; border-width: 1px 0px 1px 1px; border-style: solid; border-color: rgb(204,204,204)}" );
ui->m_button->setStyleSheet( "QAbstractButton{ border-width: 1px 1px 1px 0px; border-style: solid; border-color: rgb(204,204,204) } ");
return true;
}
else
{
return false;
}
}
else
{
return MainWindow::eventFilter( obj, event );
}
}

最佳答案

当您在 eventFilter() 中返回 True 时,您将阻止要发送事件的小部件不接收它,在这种情况下,FocusInFocusOut 事件由 QLineEdit 接收。考虑到这一点,可以提出以下解决方案:

bool MainWindow::eventFilter( QObject *obj, QEvent *event )
{
if ( obj == ui->m_lineEdit )
{
if ( event->type() == QEvent::FocusIn )
{
ui->m_lineEdit->setStyleSheet( "QLineEdit{padding-left: 10px; padding-right: 10px; border-width: 1px 0px 1px 1px; border-style: solid; border-color:rgb(249,125,25)}" );
ui->m_button->setStyleSheet( "QAbstractButton{ border-width: 1px 1px 1px 0px; border-style: solid; border-color: rgb(249,125,25)}" );
}
else if ( event->type() == QEvent::FocusOut)
{
ui->m_lineEdit->setStyleSheet( "QLineEdit{ padding-left: 10px; padding-right: 10px; border-width: 1px 0px 1px 1px; border-style: solid; border-color: rgb(204,204,204)}" );
ui->m_button->setStyleSheet( "QAbstractButton{ border-width: 1px 1px 1px 0px; border-style: solid; border-color: rgb(204,204,204) } ");
}
}
return QMainWindow::eventFilter( obj, event );
}

关于c++ - 光标仍然出现在 LineEdit 中,尽管它不再聚焦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51640031/

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