When a Qt widget gets focus - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T22:21:29Zhttp://stackoverflow.com/feeds/question/321656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus1When a Qt widget gets focusLuis Navarro2008-11-26T18:16:52Z2008-12-02T14:43:54Z
<p>I'm a new in Qt Designer 4.4.1 Open Source Edition.
I used to program in Windows Borland C++ Builder and I've switched to Linux.</p>
<p>I do not know how to gain the control when a widget (a LineEdit in the specific case) gains the focus, no mater if by tab or by clicking or by any other medium. My Focus Policy to the widget is "strongFocus", so it is enabled to receive.</p>
<p>In Borland Builder, each object has a table with all possible events.
For Edit field there is among the events one called "OnEnter" who signalizes the focus entering that object (similarly there is "OnExit")</p>
<p>Qt has something similar?<br />
Can someone help me. I'll be gratefull.
Luis</p>
http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/321677#3216770Answer by mgb for When a Qt widget gets focusmgb2008-11-26T18:25:05Z2008-11-26T18:25:05Z<p>There is a "focusChanged" signal sent when the focus changes.<br />
It has two arguments, he widget losing focus and the one gaining focus.</p>
http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/321691#3216912Answer by Bob for When a Qt widget gets focusBob2008-11-26T18:30:06Z2008-11-26T18:30:06Z<p>I'd have to play with it, but just looking at the QT Documentation, there is a "focusInEvent". This is an event handler.</p>
<p>Here's how you find information about.... Open up "QT Assistant". Go to the Index. Put in a "QLineEdit". There is a really useful link called "List of all members, including inherited members" on all the Widget pages. This list is great, because it even has the inherited stuff.</p>
<p>I did a quick search for "Focus" and found all the stuff related to focus for this Widget.</p>
http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/322656#3226560Answer by Luis Navarro for When a Qt widget gets focusLuis Navarro2008-11-27T00:53:47Z2008-11-27T00:53:47Z<p>Dear Bob</p>
<p>Many thanks for your attention to my problem.
Before putting the question I've done the reading yet, but I'tried to code, in the Form120's constructor like that:</p>
<p>" connect(lineEdit12,SIGNAL(focusInEvent(lineEdit12)), this, SLOT(myroutine(void)));"</p>
<p>g++ compiled well but during processing
I received such messages:</p>
<p>Object::connect: No such signal QLineEdit::focusInEvent(lineEdit12)</p>
<p>Object::connect: (sender name: 'lineEdit12')</p>
<p>Object::connect: (receiver name: 'Form120')</p>
<p>please I ask your help. thanks
Luis</p>
http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/322693#3226930Answer by minimoog for When a Qt widget gets focusminimoog2008-11-27T01:19:10Z2008-11-27T01:19:10Z<p>QWidget::setFocus() is slot, not signal. You can check if QLineEdit is in focus with <a href="http://doc.trolltech.com/4.4/qwidget.html#focus-prop" rel="nofollow">focus property</a>. QLineEdit emits signals when text is changed or edited, see documentation.</p>
http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/324453#3244531Answer by Max Howell for When a Qt widget gets focusMax Howell2008-11-27T18:36:13Z2008-11-27T18:36:13Z<p>Qt Designer isn't designed for this level of WYSIWYG programming.</p>
<p>Do it in C++:</p>
<pre><code>class LineEdit : public QLineEdit
{
virtual void focusInEvent( QFocusEvent* )
{}
};
</code></pre>
http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/326688#3266881Answer by Harald Scheirich for When a Qt widget gets focusHarald Scheirich2008-11-28T21:10:51Z2008-11-28T21:10:51Z<p>You have hit on of the weird splits in QT, if you look at the documentation <code>focusInEvent</code> is not a slot it is a protected function, you can override it if you are implementing a subclass of your widget. If you you just want to catch the event coming into your widget you can use <a href="http://doc.trolltech.com/4.2/qobject.html#installEventFilter" rel="nofollow"><code>QObject::installEventFilter</code></a> it let's you catch any kind of events. </p>
<p>For some odd reason the developers of Trolltech decided to propagate UI events via two avenues, signals/slots and <code>QEvent</code></p>
http://stackoverflow.com/questions/321656/when-a-qt-widget-gets-focus/334150#3341500Answer by Roberto Alsina for When a Qt widget gets focusRoberto Alsina2008-12-02T14:43:54Z2008-12-02T14:43:54Z<p>The simplest way is to connect a slot to the QApplication::focusChanged signal.</p>