Browse Source

KonvergoWindow: debug info improvements

In particular, showing some of that on the debug overlay is very useful.
Vincent Lang 8 years ago
parent
commit
98a791244e
1 changed files with 12 additions and 1 deletions
  1. 12 1
      src/ui/KonvergoWindow.cpp

+ 12 - 1
src/ui/KonvergoWindow.cpp

@@ -415,7 +415,7 @@ public:
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 void KonvergoWindow::onVisibilityChanged(QWindow::Visibility visibility)
 {
-  QLOG_DEBUG() << (visibility == QWindow::FullScreen ? "FullScreen" : "Windowed") << "visibility set to " << visibility;
+  QLOG_DEBUG() << "QWindow visibility set to" << visibility;
 
   if (visibility == QWindow::FullScreen || visibility == QWindow::Windowed)
   {
@@ -486,6 +486,17 @@ void KonvergoWindow::updateDebugInfo()
   PlayerQuickItem* video = findChild<PlayerQuickItem*>("video");
   if (video)
     m_debugInfo += video->debugInfo();
+  QString infoString;
+  QDebug info(&infoString);
+  info << "Qt windowing info:\n";
+  info << "  FS: " << visibility() << "\n";
+  info << "  Geo: " << geometry() << "\n";
+  for (QScreen* scr : QGuiApplication::screens())
+  {
+    info << "  Screen" << scr->name() << scr->geometry() << "\n";
+  }
+  info << "\n";
+  m_debugInfo += infoString;
   m_videoInfo = PlayerComponent::Get().videoInformation();
   emit debugInfoChanged();
 }