| | |
| | | #ifndef QUICKWINDOWAGENTPRIVATE_H |
| | | #define QUICKWINDOWAGENTPRIVATE_H |
| | | |
| | | #include <QWKCore/private/corewindowagent_p.h> |
| | | #include <QWKCore/private/windowagentbase_p.h> |
| | | #include <QWKQuick/quickwindowagent.h> |
| | | |
| | | namespace QWK { |
| | | |
| | | class QuickWindowAgentPrivate : public CoreWindowAgentPrivate { |
| | | class QuickWindowAgentPrivate : public WindowAgentBasePrivate { |
| | | Q_DECLARE_PUBLIC(QuickWindowAgent) |
| | | public: |
| | | QuickWindowAgentPrivate(); |
| | |
| | | |
| | | void init(); |
| | | |
| | | AbstractWindowContext * createContext() const override; |
| | | |
| | | // Host |
| | | QQuickWindow *hostWindow{}; |
| | | |
| | | #ifdef Q_OS_WINDOWS |
| | | void setupWindows10BorderWorkaround(); |
| | | #endif |
| | | }; |
| | | |
| | | } |