/* KWin - the KDE window manager This file is part of the KDE project. SPDX-FileCopyrightText: 2015 Martin Gräßlin SPDX-FileCopyrightText: 2019 Vlad Zahorodnii SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include #include #include #include namespace KWin { class Output; namespace QPA { class Clipboard; class Screen; class Integration : public QObject, public QPlatformIntegration { Q_OBJECT public: explicit Integration(); ~Integration() override; bool hasCapability(Capability cap) const override; QPlatformWindow *createPlatformWindow(QWindow *window) const override; QPlatformOffscreenSurface *createPlatformOffscreenSurface(QOffscreenSurface *surface) const override; QPlatformBackingStore *createPlatformBackingStore(QWindow *window) const override; QAbstractEventDispatcher *createEventDispatcher() const override; QPlatformFontDatabase *fontDatabase() const override; QStringList themeNames() const override; QPlatformTheme *createPlatformTheme(const QString &name) const override; QPlatformOpenGLContext *createPlatformOpenGLContext(QOpenGLContext *context) const override; QPlatformAccessibility *accessibility() const override; QPlatformNativeInterface *nativeInterface() const override; QPlatformServices *services() const override; QPlatformClipboard *clipboard() const override; void initialize() override; QHash screens() const; private Q_SLOTS: void handleOutputEnabled(Output *output); void handleOutputDisabled(Output *output); void handleWorkspaceCreated(); private: std::unique_ptr m_fontDb; mutable std::unique_ptr m_accessibility; std::unique_ptr m_nativeInterface; QPlatformPlaceholderScreen *m_dummyScreen = nullptr; QHash m_screens; std::unique_ptr m_services; std::unique_ptr m_clipboard; }; } }