Qt - top level widget with keyboard and mouse event transparency? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T12:19:07Zhttp://stackoverflow.com/feeds/question/987019http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987019/qt-top-level-widget-with-keyboard-and-mouse-event-transparency11Qt - top level widget with keyboard and mouse event transparency?dblack2009-06-12T14:45:43Z2009-09-29T16:07:47Z
<p>I want an app's <strong>main window</strong> to ignore mouse and keyboard events, passing them to applications underneath it in the window manager Z-order. </p>
<p>I see how to make <em>child</em> widgets ignore keyboard or mouse events, but how about the main window?</p>
<p>I'm trying to make a desktop widget that always sits just over the background and is totally invisible to keyboard and mouse events. (Pass through)</p>
<p><em>Qt::X11BypassWindowManagerHint</em> gets me keyboard pass through (although sadly X11 specific, but fine for now), so how about mouse events?</p>
<p>Is there a OS-agnostic way to be transparent to keyboard events?</p>
<p><strong>EDIT:</strong></p>
<p>The key word here is transparency.</p>
<p>I don't want to <em>EAT</em> mouse and keyboard events, I want the window manager to know I don't want them at all. Those events should be directed to whatever application is under me in the zorder.</p>
<p>For example, I want to be able to click on desktop icons that are covered by my widget and interact with them as if the widget was not there.</p>
http://stackoverflow.com/questions/987019/qt-top-level-widget-with-keyboard-and-mouse-event-transparency/1003311#10033110Answer by Maleev for Qt - top level widget with keyboard and mouse event transparency?Maleev2009-06-16T18:52:25Z2009-06-16T18:52:25Z<p>I think that overriding is supposed to work:</p>
<pre><code>bool YourMainWindow::event( QEvent *event )
{
event ->accept();
return true;
}
</code></pre>
<p>that's some of what the QWidget class documentation says about event() member function:</p>
<blockquote>
<p><em>This function returns true if the
event was recognized, otherwise it
returns false. If the recognized event
was accepted (see QEvent::accepted),
any further processing such as event
propagation to the parent widget
stops.</em></p>
</blockquote>
http://stackoverflow.com/questions/987019/qt-top-level-widget-with-keyboard-and-mouse-event-transparency/1012834#10128341Answer by Krsna for Qt - top level widget with keyboard and mouse event transparency?Krsna2009-06-18T14:08:42Z2009-06-18T14:08:42Z<p>Use Qt's <a href="http://doc.trolltech.com/4.5/eventsandfilters.html" rel="nofollow">event filters</a>: they will allow your application to eat whichever events you specify (i.e. keyboard and mouse events) but still process other events such as paint events.</p>
<pre><code>bool FilterObject::eventFilter(QObject* object, QEvent* event)
{
QKeyEvent* pKeyEvent = qobject_cast<QKeyEvent*>(event);
QMouseEvent* pMouseEvent = qobject_cast<QMouseEvent*>(event);
if (pKeyEvent || pMouseEvent)
{
// eat all keyboard and mouse events
return true;
}
return FilterObjectParent::eventFilter(object, event);
}
</code></pre>
http://stackoverflow.com/questions/987019/qt-top-level-widget-with-keyboard-and-mouse-event-transparency/1019082#10190820Answer by Joe Corkery for Qt - top level widget with keyboard and mouse event transparency?Joe Corkery2009-06-19T17:20:50Z2009-06-19T17:20:50Z<p>Maybe I'm missing something here, but have you tried subclassing the QMainWindow class and overriding the <a href="http://doc.trolltech.com/4.5/qwidget.html#event" rel="nofollow">QWidget::event()</a> method to always return false? If you need to handle some events, you could add that intelligence here as well.</p>
<p>This technique should allow you to inspect the events coming in to the application and ignore them if desired without having to eat them using an event filter.</p>
<p>If this doesn't work you could attempt to redirect the events to the desktop by calling <a href="http://doc.trolltech.com/4.5/qcoreapplication.html#notify" rel="nofollow">QCoreApplication::notify()</a> and passing the event to the desktop widget obtained by calling <a href="http://doc.trolltech.com/4.5/qapplication.html#desktop" rel="nofollow">QApplication::desktop()</a>. I have no idea if this would work, but it seemed like it might be worth giving a try.</p>
http://stackoverflow.com/questions/987019/qt-top-level-widget-with-keyboard-and-mouse-event-transparency/1109023#11090232Answer by mmutz for Qt - top level widget with keyboard and mouse event transparency?mmutz2009-07-10T11:27:22Z2009-07-10T11:27:22Z<p>Maybe what you want is</p>
<pre><code>widget->setAttribute(Qt::WA_TransparentForMouseEvents)
</code></pre>
<p>? That's what QRubberBand uses to let it's parent handle the mouse events. As for keyboard events, a QWidget doesn't get any keyboard events unless it has set itself a focusPolicy().</p>
<pre><code>setFocusPolicy( Qt::NoFocus );
</code></pre>
<p>should therefore take care of the keyboard events.</p>
http://stackoverflow.com/questions/987019/qt-top-level-widget-with-keyboard-and-mouse-event-transparency/1493525#14935250Answer by ashwin for Qt - top level widget with keyboard and mouse event transparency?ashwin2009-09-29T16:07:47Z2009-09-29T16:07:47Z<p>I am working on a similar issue where we have to embed a Java swing component into a QT widget. </p>
<p>One of the solutions is to have a transparent QT widget and display Java swing component beneath it and somehow have all the mouse-clicks and keyboard events pass to the Swing component. </p>
<p>Like dblack mentioned, if there is a way to let the Qtwidget not accept any events and pass them "as is" to the underlying object/component, that would be useful. </p>
<p>@dblack: Any success with it so far?</p>