KonvergoWindow.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #ifndef KONVERGOWINDOW_H
  2. #define KONVERGOWINDOW_H
  3. #include <QQuickWindow>
  4. #include <QEvent>
  5. ///////////////////////////////////////////////////////////////////////////////////////////////////
  6. class MouseEventFilter : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. MouseEventFilter(QObject* parent = 0) : QObject(parent) {}
  11. protected:
  12. bool eventFilter(QObject* watched, QEvent* event);
  13. };
  14. ///////////////////////////////////////////////////////////////////////////////////////////////////
  15. class KonvergoWindow : public QQuickWindow
  16. {
  17. Q_OBJECT
  18. Q_PROPERTY(bool fullScreen READ isFullScreen WRITE setFullScreen NOTIFY fullScreenSwitched)
  19. Q_PROPERTY(bool showDebugLayer MEMBER m_debugLayer NOTIFY debugLayerChanged)
  20. Q_PROPERTY(QString debugInfo MEMBER m_debugInfo NOTIFY debugInfoChanged)
  21. Q_PROPERTY(QString videoInfo MEMBER m_videoInfo NOTIFY debugInfoChanged)
  22. public:
  23. static void RegisterClass();
  24. KonvergoWindow(QWindow* parent = 0);
  25. ~KonvergoWindow();
  26. bool isFullScreen()
  27. {
  28. return ((flags() & Qt::FramelessWindowHint) || (visibility() == QWindow::FullScreen));
  29. }
  30. void setFullScreen(bool enable);
  31. Q_SLOT void otherAppFocus()
  32. {
  33. setWindowState((Qt::WindowState)((windowState() & ~Qt::WindowMinimized) | Qt::WindowActive));
  34. raise();
  35. }
  36. Q_SLOT void toggleDebug();
  37. void reloadWeb()
  38. {
  39. emit reloadWebClient();
  40. }
  41. Q_SIGNALS:
  42. void fullScreenSwitched();
  43. void enableVideoWindowSignal();
  44. void debugLayerChanged();
  45. void debugInfoChanged();
  46. void reloadWebClient();
  47. protected:
  48. virtual void focusOutEvent(QFocusEvent * ev);
  49. private slots:
  50. void closingWindow();
  51. void enableVideoWindow();
  52. void onVisibilityChanged(QWindow::Visibility visibility);
  53. void updateMainSectionSettings(const QVariantMap& values);
  54. void updateFullscreenState();
  55. void onScreenCountChanged(int newCount);
  56. void updateDebugInfo();
  57. void playerWindowVisible(bool visible);
  58. void playerPlaybackStarting();
  59. private:
  60. void saveGeometry();
  61. void loadGeometry();
  62. QRect loadGeometryRect();
  63. private:
  64. bool m_debugLayer;
  65. MouseEventFilter* m_eventFilter;
  66. QTimer* m_infoTimer;
  67. QString m_debugInfo, m_systemDebugInfo, m_videoInfo;
  68. };
  69. #endif // KONVERGOWINDOW_H