[Interest] Screen capture in fullscreen under Windows

2015-07-08 Thread Jérôme Godbout
Hi, I'm trying to capture some video for demo and training purpose, but I cannot get the screen capture for any third party apps to work while my application is in fullscreen (under Windows 7). We use a QMainWindow with QQuickView inside it. I end up with the first frame captured and if like

Re: [Interest] Screen capture in fullscreen under Windows

2015-07-08 Thread Jérôme Godbout
Another interesting fact, printscreen too doesn't work while application is in fullscreen. On Wed, Jul 8, 2015 at 11:07 AM, Jérôme Godbout jer...@bodycad.com wrote: Hi, I'm trying to capture some video for demo and training purpose, but I cannot get the screen capture for any third party apps

Re: [Interest] Screen capture in fullscreen under Windows

2015-07-08 Thread Jérôme Godbout
I managed to find a solution for the focus and taskbar problems, you need to give the following flags to make it work properly (which avoid keyboard focus problems and keep the window into the taskbar): | Qt::FramelessWindowHint | Qt::WindowSystemMenuHint | Qt::WindowMinMaxButtonsHint The