PDA

View Full Version : Intercept fullscreen state on other application



hades76
26th March 2008, 08:52
Hi,


Is there a way to intercept fullscreen state on all application already launch ?

Does the function installEventFilter only work in the qt application ?


Thx

wysota
26th March 2008, 09:00
Is there a way to intercept fullscreen state on all application already launch ?
Not with Qt code. You could try doing it with native API though.


Does the function installEventFilter only work in the qt application ?
Yes and only within a single application.

If you are using Windows, you can install a hook on other windows. Other platforms could have similar mechanisms too.

hades76
26th March 2008, 09:13
I'm working on KDE.

I can't find hook event on window change state on linux.
I'll continue to search.

Thx for the answer.