Qt 4.5 Focus doesn't work on QLineEdit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:26:06Z http://stackoverflow.com/feeds/question/967328 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/967328/qt-4-5-focus-doesnt-work-on-qlineedit 1 Qt 4.5 Focus doesn't work on QLineEdit Boris Gougeon 2009-06-08T22:24:41Z 2009-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-&gt;activateWindow(); this-&gt;lineEdit_password-&gt;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#1008518 1 Answer by Boris Gougeon for Qt 4.5 Focus doesn't work on QLineEdit Boris Gougeon 2009-06-17T17:37:01Z 2009-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-&gt;activateWindow(); this-&gt;lineEdit_password-&gt;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#1009605 0 Answer by Boris Gougeon for Qt 4.5 Focus doesn't work on QLineEdit Boris Gougeon 2009-06-17T21:29:05Z 2009-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>