12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef KONVERGOWINDOW_H
- #define KONVERGOWINDOW_H
- #include <QQuickWindow>
- #include <QEvent>
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- class MouseEventFilter : public QObject
- {
- Q_OBJECT
- public:
- MouseEventFilter(QObject* parent = 0) : QObject(parent) {}
- protected:
- bool eventFilter(QObject* watched, QEvent* event);
- };
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- class KonvergoWindow : public QQuickWindow
- {
- Q_OBJECT
- Q_PROPERTY(bool fullScreen READ isFullScreen WRITE setFullScreen NOTIFY fullScreenSwitched)
- Q_PROPERTY(bool showDebugLayer MEMBER m_debugLayer NOTIFY debugLayerChanged)
- Q_PROPERTY(QString debugInfo MEMBER m_debugInfo NOTIFY debugInfoChanged)
- Q_PROPERTY(QString videoInfo MEMBER m_videoInfo NOTIFY debugInfoChanged)
- public:
- static void RegisterClass();
- KonvergoWindow(QWindow* parent = 0);
- ~KonvergoWindow();
- bool isFullScreen()
- {
- return ((flags() & Qt::FramelessWindowHint) || (visibility() == QWindow::FullScreen));
- }
- void setFullScreen(bool enable);
- Q_SLOT void otherAppFocus()
- {
- setWindowState((Qt::WindowState)((windowState() & ~Qt::WindowMinimized) | Qt::WindowActive));
- raise();
- }
- Q_SLOT void toggleDebug();
- void reloadWeb()
- {
- emit reloadWebClient();
- }
- Q_SIGNALS:
- void fullScreenSwitched();
- void enableVideoWindowSignal();
- void debugLayerChanged();
- void debugInfoChanged();
- void reloadWebClient();
- protected:
- virtual void focusOutEvent(QFocusEvent * ev);
- private slots:
- void closingWindow();
- void enableVideoWindow();
- void onVisibilityChanged(QWindow::Visibility visibility);
- void updateMainSectionSettings(const QVariantMap& values);
- void updateFullscreenState();
- void onScreenCountChanged(int newCount);
- void updateDebugInfo();
- void playerWindowVisible(bool visible);
- void playerPlaybackStarting();
- private:
- void saveGeometry();
- void loadGeometry();
- QRect loadGeometryRect();
- private:
- bool m_debugLayer;
- MouseEventFilter* m_eventFilter;
- QTimer* m_infoTimer;
- QString m_debugInfo, m_systemDebugInfo, m_videoInfo;
- };
- #endif // KONVERGOWINDOW_H
|