Browse Source

Experimental better alt+-tab handling on Windows

Unconfirmed if/how well this works.
Vincent Lang 9 years ago
parent
commit
b09f3222ef
2 changed files with 14 additions and 0 deletions
  1. 11 0
      src/ui/KonvergoWindow.cpp
  2. 3 0
      src/ui/KonvergoWindow.h

+ 11 - 0
src/ui/KonvergoWindow.cpp

@@ -255,6 +255,17 @@ void KonvergoWindow::onVisibilityChanged(QWindow::Visibility visibility)
     PowerComponent::Get().setFullscreenState(false);
 }
 
+/////////////////////////////////////////////////////////////////////////////////////////
+void KonvergoWindow::focusOutEvent(QFocusEvent * ev)
+{
+#ifdef Q_OS_WIN32
+  // Do this to workaround DWM compositor bugs with fullscreened OpenGL applications.
+  // The compositor will not properly redraw anything when focusing other windows.
+  if (visibility() == QWindow::FullScreen)
+    showMinimized();
+#endif
+}
+
 /////////////////////////////////////////////////////////////////////////////////////////
 void KonvergoWindow::playerPlaybackStarting()
 {

+ 3 - 0
src/ui/KonvergoWindow.h

@@ -49,6 +49,9 @@ Q_SIGNALS:
   void debugInfoChanged();
   void reloadWebClient();
 
+protected:
+  virtual void focusOutEvent(QFocusEvent * ev);
+
 private slots:
   void closingWindow();
   void enableVideoWindow();