Qt 4.5 Focus doesn't work on QLineEdit - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T09:26:06Zhttp://stackoverflow.com/feeds/question/967328http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/967328/qt-4-5-focus-doesnt-work-on-qlineedit1Qt 4.5 Focus doesn't work on QLineEditBoris Gougeon2009-06-08T22:24:41Z2009-06-17T21:29:05Z
<p>Hi, </p>
<p>I got an issue with a QLineEdit. Even if I set the tab order to start at this line edit, once the screen is loaded the LIne Edit won't get the focus automatically.</p>
<p>I've also tried with this two lines :</p>
<pre><code>this->activateWindow();
this->lineEdit_password->setFocus();
</code></pre>
<p>But this has still no effect.
So maybe someone experienced the same issue...</p>
<p>Thanks in advance for your help,
Boris</p>
http://stackoverflow.com/questions/967328/qt-4-5-focus-doesnt-work-on-qlineedit/1008518#10085181Answer by Boris Gougeon for Qt 4.5 Focus doesn't work on QLineEditBoris Gougeon2009-06-17T17:37:01Z2009-06-17T17:37:01Z<p>Thank you very much Krsna, overriding the showEvent() of the qwidget will work :</p>
<pre><code>void OScreenLogin::showEvent(QShowEvent* e){
this->activateWindow();
this->lineEdit_password->setFocus();
QWidget::showEvent(e);
}
</code></pre>
<p>The lineEdit gets the focus, I guess that an other widget had the focus set after these two lines.
Thanks again,
Boris </p>
http://stackoverflow.com/questions/967328/qt-4-5-focus-doesnt-work-on-qlineedit/1009605#10096050Answer by Boris Gougeon for Qt 4.5 Focus doesn't work on QLineEditBoris Gougeon2009-06-17T21:29:05Z2009-06-17T21:29:05Z<p>An other solution is to use a singleShot timer :</p>
<pre><code>QTimer::singleShot(0,lineEdit,SLOT(setFocus()));
</code></pre>
<p>The focus will then be set once the application is free.
Boris.</p>