vote up 3 vote down star
1

I'm using the Qt library to show a slideshow on the second monitor when the user isn't using the second monitor. An example is the user playing a game in the first monitor and showing the slideshow in the second monitor.

The problem is that when I open a new window in Qt, it automatically steals the focus from the previous application. Is there any way to prevent this from happening?

flag

I've tried a couple of things, setting no focus, and setting disabled, but the focus was always stolen. Workaround: Open all your windows at startup and just update them during runtime. – Mark Beckwith Jun 9 at 2:03
Which platform and window system? – Ariya Hidayat Jun 9 at 13:49
I'm using Windows XP – Robbie Groenewoudt Jun 9 at 18:06
You may have better luck asking this question on <lists.trolltech.com> – nsanders Jun 14 at 5:07

2 Answers

vote up 4 vote down check

It took me a while to find it but I found it: setAttribute(Qt::WA_ShowWithoutActivating);

This forces the window not to activate. Even with the Qt::WindowStaysOnTopHint flag

link|flag
vote up 1 vote down

Widgets don't accept focus by default but presumably you haven't created a plain widget? Which subclass was it? QMainWindow or something else?

It's possible the window subclasses default to accepting focus so try explicitly calling QWidget::setFocusPolicy with Qt::NoFocus before calling QWidget::show().

Also, make sure you're not calling QWidget::activateWindow() on the window or any of its widgets at any point.

link|flag
- I'm creating a plain QWidget-derived class without any flags - setFocusPolicy() doesn't seem to have any effect. - Qt::WindowStaysOnBottomHint works but the window won't be visible on open (under other applictions) Interestingly the first time the window is opened, it doesn't take the focus. Only when the window is reopened it takes the focus from other Windows-applocations. – Robbie Groenewoudt Jun 20 at 17:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.